﻿/**
 * Ve-CMS form stilleri
 */

/*
 * İletişim modalı <main> içindeyken stacking context yüzünden backdrop üstte kalıyordu;
 * JS ile body’ye taşınıyor. Yine de z-index + opak .modal-content garanti.
 */
#veUrunIletisimModal.modal {
	z-index: 1060 !important;
}

/*
 * Tasarım popup (#banner-modal): iletişim vb. form sayfalarında forms.css yüklendiğinde
 * backdrop 1055 olur; varsayılan modal 1050 kalınca içerik arkada ve tıklanamaz.
 */
#banner-modal.modal {
	z-index: 1060 !important;
}
#banner-modal .modal-dialog {
	position: relative;
	z-index: 1;
}
#veUrunIletisimModal .modal-content {
	background: #fff;
	color: #212529;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.08);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.28);
}
#veUrunIletisimModal .modal-header {
	background: #fff;
	border-bottom: 1px solid #e9ecef;
}
#veUrunIletisimModal .modal-footer {
	background: #fff;
}

/* Form gönderim onay modali — ürün talep vb. açık modalların üstünde (1060) görünmeli */
#veFormOnayModal.modal {
	z-index: 1080 !important;
}
body.modal-open .modal-backdrop.show {
	z-index: 1055 !important;
}
body.ve-form-onay-over-modal .modal-backdrop.show {
	z-index: 1075 !important;
}
#veFormOnayModal .modal-dialog {
	position: relative;
	z-index: 1081;
	max-width: 480px;
}
#veFormOnayModal .modal-content {
	background: #fff !important;
	background-color: #fff !important;
	color: #212529 !important;
	opacity: 1 !important;
	border-radius: 8px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}
#veFormOnayModal .modal-header,
#veFormOnayModal .modal-body,
#veFormOnayModal .modal-footer {
	background: #fff !important;
	background-color: #fff !important;
	color: #212529 !important;
}
#veFormOnayModal .modal-title {
	color: #212529 !important;
	font-weight: 600;
}
#veFormOnayModal .ve-form-onay-modal__body {
	color: #495057 !important;
}
#veFormOnayModal .modal-header .close {
	color: #212529 !important;
	opacity: 0.65;
	text-shadow: none;
}

#veFormSuccessModal.modal {
	z-index: 1090 !important;
}
#veFormSuccessModal .modal-content {
	background: #fff !important;
	color: #212529 !important;
	border: 1px solid rgba(40, 167, 69, 0.35);
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.35);
}
#veFormSuccessModal .modal-title {
	color: #1e7e34 !important;
}

#veUrunIletisimModal .modal-header .close {
	float: none !important;
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding: 0 !important;
	margin: 0 0 0 auto;
	border: 0;
	border-radius: 50% !important;
	background: rgba(0, 0, 0, 0.06);
	color: #212529;
	opacity: 0.85;
	text-shadow: none;
	line-height: 1;
	font-size: 0;
	box-sizing: border-box;
}
#veUrunIletisimModal .modal-header .close span {
	font-size: 1.65rem;
	line-height: 1;
	font-weight: 300;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}
#veUrunIletisimModal .modal-header .close:hover {
	opacity: 1;
	background: rgba(0, 0, 0, 0.1);
}

#veUrunIletisimModal .ve-urun-iletisim-urun-baslik {
	margin: 0 0 1rem;
	padding: 0;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.35;
	color: var(--theme-header) !important;
	border: 0;
	background: none;
}

/* Tema main.css input’ları köşesiz bırakıyor; textarea/bootstrap .form-control ile aynı yuvarlaklık */
#veUrunIletisimModal .form-control {
	border-radius: 0.25rem !important;
}

/* Vazgeç: Gönder ile aynı ttm-btn-size-md padding; btn-light ile çakışmayı düzelt */
#veUrunIletisimModal .modal-footer .ve-urun-iletisim-vazgec.ttm-btn {
	padding: 13px 30px;
	font-size: 14px;
	line-height: 1.25;
	min-height: 0;
	border-width: 1px;
}

/* Alt butonlar: .form-control ile aynı border-radius (tema genelde köşesiz buton) */
#veUrunIletisimModal .modal-footer .btn {
	border-radius: 0.25rem !important;
}

/* Form doğrulama: zorunlu alan hatası — Tasarım Ayarları > Anasayfa vitrin kart köşesi (--ve-vitrin-item-radius) */
form.ve-public-form-validate input.ve-field-invalid,
form.ve-public-form-validate textarea.ve-field-invalid,
form.ve-public-form-validate select.ve-field-invalid,
form.form-validate input.ve-field-invalid,
form.form-validate textarea.ve-field-invalid,
form.form-validate select.ve-field-invalid,
form.ve-dynamic-form input.ve-field-invalid,
form.ve-dynamic-form textarea.ve-field-invalid,
form.ve-public-form-validate input.error,
form.ve-public-form-validate textarea.error,
form.form-validate input.error,
form.form-validate textarea.error,
form.ve-dynamic-form input.error,
form.ve-dynamic-form textarea.error {
	outline: none !important;
	border: 1px solid #c0392b !important;
	border-radius: var(--ve-vitrin-item-radius, 10px) !important;
	box-shadow: none;
	padding: 11px 14px !important;
}
form.ve-public-form-validate textarea.ve-field-invalid,
form.ve-public-form-validate textarea.error,
form.form-validate textarea.ve-field-invalid,
form.form-validate textarea.error,
form.ve-dynamic-form textarea.ve-field-invalid,
form.ve-dynamic-form textarea.error {
	min-height: 7rem;
	padding: 12px 14px !important;
}
form.ve-public-form-validate .ve-form-guvenlik-row .ve-form-math-field.ve-field-invalid,
form.ve-public-form-validate .ve-form-guvenlik-row .ve-form-math-field.error,
form.form-validate .ve-form-guvenlik-row .ve-form-math-field.ve-field-invalid,
form.form-validate .ve-form-guvenlik-row .ve-form-math-field.error,
form.ve-dynamic-form .ve-form-guvenlik-row .ve-form-math-field.ve-field-invalid,
form.ve-dynamic-form .ve-form-guvenlik-row .ve-form-math-field.error,
form.ve-public-form-validate .ve-form-guvenlik-row .ve-form-math-input input.ve-field-invalid,
form.ve-public-form-validate .ve-form-guvenlik-row .ve-form-math-input input.error,
form.form-validate .ve-form-guvenlik-row .ve-form-math-input input.ve-field-invalid,
form.form-validate .ve-form-guvenlik-row .ve-form-math-input input.error,
form.ve-dynamic-form .ve-form-guvenlik-row .ve-form-math-input input.ve-field-invalid,
form.ve-dynamic-form .ve-form-guvenlik-row .ve-form-math-input input.error {
	border: 1px solid #c0392b !important;
	border-radius: var(--ve-vitrin-item-radius, 10px) !important;
	padding: 8px 12px !important;
	height: auto !important;
	min-height: 2.5rem !important;
}
#veUrunIletisimModal form.ve-public-form-validate input.ve-field-invalid,
#veUrunIletisimModal form.ve-public-form-validate textarea.ve-field-invalid,
#veUrunIletisimModal form.ve-public-form-validate input.error,
#veUrunIletisimModal form.ve-public-form-validate textarea.error {
	outline: none !important;
	border: 1px solid #c0392b !important;
	border-radius: var(--ve-vitrin-item-radius, 10px) !important;
	padding: 11px 14px !important;
}
#veUrunIletisimModal form.ve-public-form-validate textarea.ve-field-invalid,
#veUrunIletisimModal form.ve-public-form-validate textarea.error {
	min-height: 7rem;
	padding: 12px 14px !important;
}

/* Ürün iletişim modalı: iki sütun, üst/alt alanlarla aynı genişlik (form-row negatif margin yok) */
#veUrunIletisimModal .ve-form-guvenlik-row.ve-form-group {
	margin-bottom: 0;
}
#veUrunIletisimModal .ve-form-guvenlik-row .ve-form-label {
	display: block;
	margin-bottom: 0.5rem;
	font-size: 1rem;
	font-weight: 400;
	color: #212529;
	line-height: 1.5;
}
#veUrunIletisimModal .ve-form-guvenlik-row .ve-form-math-box {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	gap: 10px 12px;
}
#veUrunIletisimModal .ve-form-guvenlik-row .ve-form-math-eq {
	flex: 0 0 auto;
	white-space: nowrap;
	font-size: 1.125rem;
	font-weight: 600;
	line-height: 1.2;
}
#veUrunIletisimModal .ve-form-guvenlik-row .ve-form-math-field.ve-form-control {
	flex: 0 0 auto;
	width: 4.5rem !important;
	max-width: 5rem !important;
	display: inline-block !important;
}
#veUrunIletisimModal .ve-urun-iletisim-ikili {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem 1rem;
	align-items: start;
	width: 100%;
	margin-left: 0;
	margin-right: 0;
}
@media (max-width: 575.98px) {
	#veUrunIletisimModal .ve-urun-iletisim-ikili {
		grid-template-columns: 1fr;
	}
}
/* —— Dinamik formlar (Formlar modülü) — örnek kart tasarımı —— */
.ve-form-page-section {
	padding: 48px 0 72px;
	background: #f4f5f7;
}
.ve-form-page--yerlesik .ve-form-page-section {
	margin-top: 0;
}
.ve-form-page__layout--solo .ve-form-page__form-col {
	margin-left: auto;
	margin-right: auto;
}
.ve-form-page__intro-inner {
	font-size: inherit;
	line-height: inherit;
	color: var(--ve-site-text-color, inherit);
}
.ve-form-page__intro-inner p,
.ve-form-page__intro-inner li,
.ve-form-page__intro-inner td,
.ve-form-page__intro-inner th,
.ve-form-page__intro-inner span,
.ve-form-page__intro-inner div {
	font-size: inherit;
	line-height: inherit;
	color: inherit;
}
.ve-form-page__intro-inner [style*="font-size"] {
	font-size: inherit !important;
}
.ve-form-page__intro-inner [style*="line-height"] {
	line-height: inherit !important;
}
.ve-form-page__intro-inner p {
	margin-bottom: 1rem;
}
.ve-form-page__intro-inner ol,
.ve-form-page__intro-inner ul {
	padding-left: 1.25rem;
	margin-bottom: 1rem;
}
.ve-form-page__intro-inner li {
	margin-bottom: 0.35rem;
}
.ve-form-shell--modern .ve-form-card {
	background: #fbfbfb;
	border: 1px solid #e2e6ea;
	border-radius: 12px;
	padding: 28px 32px 32px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.ve-form-shell--modern .ve-form-card__title {
	font-size: 1.35rem;
	font-weight: 700;
	color: var(--theme-color-1, #2f286e);
	margin: 0 0 1.5rem;
	line-height: 1.3;
}
.ve-form-modern-form {
	--ve-form-field-height: 2.75rem;
}
.ve-form-modern-form .ve-form-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	margin-left: -10px;
	margin-right: -10px;
}
.ve-form-modern-form .ve-form-col {
	padding-left: 10px;
	padding-right: 10px;
	margin-bottom: 0;
	box-sizing: border-box;
}
.ve-form-modern-form .ve-form-col--half {
	display: flex;
	flex-direction: column;
}
.ve-form-modern-form .ve-form-col--half > .ve-form-group {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
}
.ve-form-modern-form .ve-form-col--half .ve-form-control-wrap {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
}
.ve-form-modern-form .ve-form-col--half {
	flex: 0 0 50%;
	max-width: 50%;
}
.ve-form-modern-form .ve-form-col--full {
	flex: 0 0 100%;
	max-width: 100%;
}
.ve-form-modern-form .ve-form-group {
	margin-bottom: 1.15rem;
}
.ve-form-modern-form .ve-form-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #8a939c;
	margin-bottom: 0.4rem;
	line-height: 1.35;
}
.ve-form-modern-form .ve-form-required {
	color: #c0392b;
	font-weight: 600;
}
.ve-form-modern-form .ve-form-control-wrap {
	display: block;
}
.ve-form-modern-form .ve-form-control {
	display: block;
	width: 100%;
	box-sizing: border-box;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: #333;
	background: #fff;
	border: 1px solid #d5dbe1;
	border-radius: 6px;
	padding: 11px 14px;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
	-webkit-appearance: none;
	appearance: none;
}
.ve-form-modern-form input.ve-form-control,
.ve-form-modern-form .ve-form-select__trigger,
.ve-form-modern-form .ve-form-file {
	height: var(--ve-form-field-height);
	min-height: var(--ve-form-field-height);
	max-height: var(--ve-form-field-height);
}
.ve-form-modern-form input.ve-form-control {
	padding: 0 14px;
	line-height: calc(var(--ve-form-field-height) - 2px);
}
.ve-form-modern-form .ve-form-control:focus {
	outline: none;
	border-color: var(--theme-color-1, #2f286e);
	box-shadow: 0 0 0 3px rgba(47, 40, 110, 0.12);
}
.ve-form-modern-form textarea.ve-form-control {
	min-height: 7rem;
	resize: vertical;
}
.ve-form-modern-form .ve-form-group--select .ve-form-control-wrap {
	overflow: visible;
}
.ve-form-modern-form .ve-form-select {
	position: relative;
	width: 100%;
}
.ve-form-modern-form .ve-form-select__native {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
.ve-form-modern-form .ve-form-select__trigger {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	width: 100%;
	padding: 0 14px;
	box-sizing: border-box;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.45;
	text-align: left;
	text-transform: none;
	letter-spacing: normal;
	color: #333;
	background: #fff;
	border: 1px solid #d5dbe1;
	border-radius: 6px;
	cursor: pointer;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ve-form-modern-form .ve-form-select__trigger:hover {
	border-color: #aeb8c2;
}
.ve-form-modern-form .ve-form-select.is-open .ve-form-select__trigger,
.ve-form-modern-form .ve-form-select__trigger:focus {
	outline: none;
	border-color: var(--theme-color-1, #2f286e);
	box-shadow: 0 0 0 3px rgba(47, 40, 110, 0.12);
}
.ve-form-modern-form .ve-form-select__value {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ve-form-modern-form .ve-form-select__value.is-placeholder {
	color: #8a939c;
}
.ve-form-modern-form .ve-form-select__chevron {
	flex-shrink: 0;
	width: 12px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	transition: transform 0.2s ease;
}
.ve-form-modern-form .ve-form-select.is-open .ve-form-select__chevron {
	transform: rotate(180deg);
}
.ve-form-modern-form .ve-form-select__panel {
	position: absolute;
	z-index: 120;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	margin: 0;
	padding: 6px 0;
	list-style: none;
	background: #fff;
	border: 1px solid #d5dbe1;
	border-radius: 8px;
	box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
	max-height: 240px;
	overflow-x: hidden;
	overflow-y: auto;
}
.ve-form-modern-form .ve-form-select__list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.ve-form-modern-form .ve-form-select__option {
	padding: 10px 14px;
	font-size: 0.9375rem;
	line-height: 1.35;
	color: #333;
	cursor: pointer;
	transition: background 0.12s ease, color 0.12s ease;
}
.ve-form-modern-form .ve-form-select__option:hover {
	background: #f0f2f5;
}
.ve-form-modern-form .ve-form-select__option.is-selected {
	background: rgba(47, 40, 110, 0.1);
	color: var(--theme-color-1, #2f286e);
	font-weight: 600;
}
.ve-form-modern-form .ve-form-select.ve-field-invalid .ve-form-select__trigger,
.ve-form-modern-form .ve-form-select:has(.ve-form-select__native.ve-field-invalid) .ve-form-select__trigger,
.ve-form-modern-form .ve-form-select:has(.ve-form-select__native.error) .ve-form-select__trigger {
	border-color: #c0392b !important;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15) !important;
}
.ve-form-modern-form .ve-form-file-wrap {
	width: 100%;
}
.ve-form-modern-form .ve-form-file-wrap .ve-form-file__hint {
	margin: 0.4rem 0 0;
	font-size: 0.7125rem;
	line-height: 1.45;
	color: #e20000 !important;
}
.ve-form-modern-form .ve-form-file {
	display: flex;
	align-items: center;
	gap: 12px;
	width: 100%;
	padding: 0 12px;
	box-sizing: border-box;
	border: 1px solid #d5dbe1;
	border-radius: 6px;
	background: #fff;
	transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.ve-form-modern-form .ve-form-file:focus-within {
	border-color: var(--theme-color-1, #2f286e);
	box-shadow: 0 0 0 3px rgba(47, 40, 110, 0.12);
}
.ve-form-modern-form .ve-form-file__trigger {
	position: relative;
	flex-shrink: 0;
	margin: 0;
	cursor: pointer;
}
.ve-form-modern-form .ve-form-file__input {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
	z-index: 2;
}
.ve-form-modern-form .ve-form-file__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: calc(var(--ve-form-field-height) - 14px);
	padding: 0 14px;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1;
	color: #333;
	background: #f0f2f5;
	border: 1px solid #c8d0d8;
	border-radius: 4px;
	white-space: nowrap;
	box-sizing: border-box;
	transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.ve-form-modern-form .ve-form-file__trigger:hover .ve-form-file__btn {
	background: #e8eaee;
	border-color: #aeb8c2;
}
.ve-form-modern-form .ve-form-file__name {
	flex: 1;
	min-width: 0;
	font-size: 0.875rem;
	line-height: 1.4;
	color: #6b7280;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ve-form-modern-form .ve-form-file__name.ve-form-file__name--selected {
	color: #333;
	font-weight: 500;
}
.ve-form-modern-form .ve-form-file.ve-field-invalid,
.ve-form-modern-form .ve-form-file:has(.ve-form-file__input.error),
.ve-form-modern-form .ve-form-file-wrap:has(.ve-form-file__input.error) .ve-form-file,
.ve-form-modern-form .ve-form-file-wrap:has(.ve-form-file.ve-field-invalid) .ve-form-file {
	border-color: #c0392b !important;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15) !important;
}
.ve-form-modern-form .ve-form-radio-group {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	padding-top: 2px;
}
.ve-form-modern-form .ve-form-col--half .ve-form-radio-group {
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	align-content: center;
	gap: 0.5rem 1.15rem;
	min-height: var(--ve-form-field-height);
	padding-top: 0;
}
.ve-form-modern-form .ve-form-radio-item {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: 400;
	font-size: 0.9375rem;
	color: #333;
	margin: 0;
	cursor: pointer;
}
.ve-form-modern-form .ve-form-radio-item input {
	margin-top: 0.2rem;
	flex-shrink: 0;
}
.ve-form-modern-form .ve-form-label--spacer {
	visibility: hidden;
	user-select: none;
	pointer-events: none;
}
.ve-form-modern-form .ve-form-col--full .ve-form-label--spacer {
	display: none;
}
.ve-form-modern-form .ve-form-col--half .ve-form-group--checkbox .ve-form-control-wrap {
	justify-content: center;
}
.ve-form-modern-form .ve-form-checkbox-item {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	font-size: 0.9375rem;
	line-height: 1.45;
	color: #333;
	cursor: pointer;
	margin: 0;
	min-height: var(--ve-form-field-height);
}
.ve-form-modern-form .ve-form-col--half .ve-form-checkbox-item {
	min-height: 0;
}
.ve-form-modern-form .ve-form-checkbox-item .ve-form-checkbox-input {
	display: inline-block;
	width: 1.125rem;
	height: 1.125rem;
	min-height: 0;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
	border: 1px solid #c5ccd3;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	-webkit-appearance: checkbox;
	appearance: auto;
	accent-color: var(--theme-color-1, #2f286e);
}
.ve-form-modern-form .ve-form-checkbox-item .ve-form-checkbox-input:focus {
	outline: none;
	border-color: var(--theme-color-1, #2f286e);
	box-shadow: 0 0 0 3px rgba(47, 40, 110, 0.12);
}
.ve-form-modern-form .ve-form-checkbox-item .ve-form-checkbox-text {
	flex: 1;
	min-width: 0;
}
.ve-form-modern-form .ve-form-footer,
.ve-form-footer {
	display: flex;
	flex-wrap: nowrap;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px 24px;
	margin-top: 0.5rem;
	padding-top: 1rem;
	border-top: 1px solid #eef1f4;
}
.ve-form--dark .ve-form-footer,
.map-col-bg.ttm-bgcolor-skincolor .ve-form-footer {
	border-top-color: rgba(255, 255, 255, 0.2);
}
.ve-form-footer .ve-form-guvenlik-row,
.ve-form-footer > label.ve-form-guvenlik-row {
	flex: 1 1 auto;
	margin-bottom: 0 !important;
	min-width: 0;
}
.ve-form-footer .ve-form-actions {
	flex: 0 0 auto;
	flex-shrink: 0;
	margin-left: auto;
	margin-top: 0;
	text-align: right;
}
.ve-form-footer .ve-form-actions input[type="submit"].submit,
.ve-form-footer .ve-form-actions button[type="submit"].ve-form-submit {
	float: none;
	width: auto !important;
	margin-top: 0 !important;
}
.ve-form-modern-form .ve-form-math-box {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}
.ve-form-modern-form .ve-form-math-eq {
	font-size: 1.125rem;
	font-weight: 600;
	color: #333;
	white-space: nowrap;
}
.ve-form-modern-form .ve-form-math-field {
	max-width: 5rem;
	height: var(--ve-form-field-height) !important;
	min-height: var(--ve-form-field-height) !important;
	max-height: var(--ve-form-field-height) !important;
	padding: 0 14px !important;
	line-height: calc(var(--ve-form-field-height) - 2px) !important;
	text-align: center;
}
.ve-form-modern-form .ve-form-actions {
	margin-top: 0;
}
.ve-form-modern-form .ve-form-submit {
	display: inline-block;
	min-width: 200px;
	padding: 12px 48px;
	font-size: 0.9375rem;
	font-weight: 600;
	color: #333;
	background: transparent;
	border: 1px solid #333;
	border-radius: var(--ve-vitrin-item-radius, 10px);
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}
/* Dinamik formlar + iletişim (eski wrap-form): Gönder — sistem köşe yarıçapı */
.ve-form-shell.ve-dynamic-form input[type="submit"].submit,
.ve-form-shell.ve-dynamic-form button[type="submit"].ve-form-submit,
.ve-form-shell--modern .ve-form-submit,
.contact-form-section .map-col-bg.ttm-bgcolor-skincolor form input[type="submit"].submit,
.contact-form-section .map-col-bg.ttm-bgcolor-skincolor form button[type="submit"].ve-form-submit {
	border-radius: var(--ve-vitrin-item-radius, 10px) !important;
}
.ve-form-modern-form .ve-form-submit:hover {
	background: #333;
	color: #fff;
}
.ve-form-modern-form input.ve-field-invalid,
.ve-form-modern-form textarea.ve-field-invalid,
.ve-form-modern-form select.ve-field-invalid,
.ve-form-modern-form input.error,
.ve-form-modern-form textarea.error,
.ve-form-modern-form select.error {
	border-color: #c0392b !important;
	box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15) !important;
}
.ve-form-page .ve-form-hata-alert {
	margin-bottom: 1.25rem;
	border-radius: 8px;
}
@media (max-width: 991.98px) {
	.ve-form-page__intro {
		margin-bottom: 1.5rem;
	}
}
@media (max-width: 575.98px) {
	.ve-form-footer {
		flex-direction: column;
		flex-wrap: wrap;
		align-items: stretch;
	}
	.ve-form-footer .ve-form-actions {
		margin-left: 0;
		text-align: right;
	}
	.ve-form-modern-form .ve-form-col--half {
		flex: 0 0 100%;
		max-width: 100%;
	}
	.ve-form-modern-form .ve-form-col--half .ve-form-radio-group {
		flex-direction: column;
		align-items: flex-start;
		align-content: flex-start;
		min-height: 0;
	}
	.ve-form-modern-form .ve-form-col--half .ve-form-group--checkbox .ve-form-control-wrap {
		justify-content: flex-start;
	}
	.ve-form-shell--modern .ve-form-card {
		padding: 20px 18px 24px;
	}
}

/* Eski wrap-form (iletisim vb.) */
body .site-main .ttm-bgcolor-skincolor .ve-form-baslik,
body .site-main .map-col-bg.ttm-bgcolor-skincolor .ve-form-baslik,
.ve-form-shell.ve-form--dark .ve-form-baslik,
.ve-form-shell.ve-form--dark .section-title .title {
	color: var(--ve-pagination-contrast-color, #ffffff) !important;
}
.ve-form-shell:not(.ve-form-shell--modern) .ve-form-radio-group {
	display: block;
	margin-top: 6px;
}
.ve-form-shell:not(.ve-form-shell--modern) .ve-form-radio-item {
	display: block;
	margin-bottom: 6px;
	font-weight: normal;
}
.ve-form-shell:not(.ve-form-shell--modern) .ve-form-field-label {
	display: block;
	margin-bottom: 4px;
	font-weight: 600;
}

/* jQuery Validate — hata metni */
form.ve-public-form-validate label.error,
form.form-validate label.error,
form.ve-dynamic-form label.error {
	display: block;
	color: #c0392b;
	font-size: 0.875rem;
	margin-top: 0.35rem;
	font-weight: 500;
}
#veFormOnayModal .ve-form-onay-modal__body {
	color: #495057 !important;
	font-size: 1rem;
	line-height: 1.5;
}
#veFormOnayModal .modal-footer .btn + .btn {
	margin-left: 0.5rem;
}
#veFormSuccessModal .modal-dialog {
	position: relative;
	z-index: 1066;
	max-width: 480px;
}
#veFormSuccessModal .ve-form-success-modal__body {
	color: #495057 !important;
	font-size: 1rem;
	line-height: 1.55;
}
#veFormSuccessModal .ve-form-success-modal__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background: #d4edda;
	color: #1e7e34;
	font-size: 1.25rem;
	margin-bottom: 0.75rem;
}
