/* ============================================================
   Pavli Core — Tasarım Sistemi
   Palet: yeşil + krem/beyaz + doğal altın (KIRMIZI YOK)
   Renkler :root değişkenlerinden gelir (PHP'de enjekte edilir)
   ============================================================ */

.pv, .pv * { box-sizing: border-box; }
.pv {
	--_r: 14px;
	--_shadow: 0 6px 24px rgba(36,48,36,.08);
	--_shadow-h: 0 12px 32px rgba(36,48,36,.14);
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
	color: var(--pv-ink, #243024);
	-webkit-font-smoothing: antialiased;
}
.pv a { text-decoration: none; color: inherit; }
.pv img { max-width: 100%; height: auto; display: block; }

/* ---- Bölüm başlığı ---- */
.pv-sec-head { display: flex; align-items: center; gap: 10px; margin: 0 0 18px; }
.pv-sec-head__leaf { display: inline-flex; width: 30px; height: 30px; color: var(--pv-green, #2E7D32); }
.pv-sec-head__leaf svg { width: 100%; height: 100%; }
.pv-sec-head__title { font-size: clamp(20px, 2.4vw, 28px); font-weight: 800; letter-spacing: -.01em; margin: 0; }

/* ---- Grid yardımcıları ---- */
.pv-grid, .pv-cats { display: grid; gap: 18px; }
.pv-cols-2 { grid-template-columns: repeat(2, 1fr); }
.pv-cols-3 { grid-template-columns: repeat(3, 1fr); }
.pv-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================================
   ÜRÜN KARTI
   ============================================================ */
.pv-card {
	background: var(--pv-white, #fff);
	border: 1px solid var(--pv-border, #E6E3DA);
	border-radius: var(--_r);
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pv-card:hover { transform: translateY(-3px); box-shadow: var(--_shadow-h); border-color: var(--pv-green-soft, #E8F3E9); }
.pv-card.is-oos { opacity: .72; }

.pv-card__media { position: relative; display: block; aspect-ratio: 1 / 1; background: var(--pv-cream, #F7F4ED); overflow: hidden; }
.pv-card__media img, .pv-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.pv-card:hover .pv-card__media img { transform: scale(1.05); }

.pv-card__badges {
	position: absolute;
	top: 10px;
	left: 10px;
	right: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	pointer-events: none;
}
.pv-badge {
	position: static;
	font-size: 11px; font-weight: 700; letter-spacing: .02em;
	padding: 4px 10px; border-radius: 999px; color: #fff;
}
.pv-badge--sale { background: var(--pv-gold, #C8A14A); color: #2a2208; }
.pv-badge--oos  { background: #8a8f8a; }
.pv-badge--popular { background: var(--pv-green-dark, #1B5E20); }
.pv-badge--new { background: #fff; color: var(--pv-green-dark, #1B5E20); box-shadow: 0 3px 12px rgba(20,45,24,.14); }
.pv-badge--low { background: #fff; color: #7b4d00; box-shadow: 0 3px 12px rgba(80,52,8,.14); }

.pv-card__body { padding: 14px; display: flex; min-width: 0; flex-direction: column; gap: 8px; flex: 1; }
.pv-card__feature {
	align-self: flex-start;
	max-width: 100%;
	overflow: hidden;
	color: var(--pv-green-dark, #1B5E20);
	font-size: 10px;
	font-weight: 800;
	line-height: 1.2;
	text-overflow: ellipsis;
	text-transform: uppercase;
	white-space: nowrap;
}
.pv-card__title {
	display: -webkit-box;
	min-height: 39px;
	margin: 0;
	overflow: hidden;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.pv-card__title a:hover { color: var(--pv-green, #2E7D32); }
.pv-card__desc { font-size: 13px; color: var(--pv-muted, #6B7280); line-height: 1.45; margin: 0; }
.pv-card__variations {
	min-height: 18px;
	margin: 0;
	overflow: hidden;
	color: var(--pv-muted, #6B7280);
	font-size: 12px;
	font-weight: 650;
	line-height: 1.45;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.pv-card__choices {
	display: flex;
	min-height: 34px;
	gap: 6px;
	overflow-x: auto;
	padding: 1px 1px 3px;
	scrollbar-width: none;
}
.pv-card__choices::-webkit-scrollbar { display: none; }
.pv-card__choice,
.pv-card__more {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: max-content;
	min-height: 30px;
	padding: 5px 9px;
	border: 1px solid var(--pv-border, #E6E3DA);
	border-radius: 6px;
	background: #fff;
	color: var(--pv-ink, #243024);
	font: inherit;
	font-size: 11px;
	font-weight: 750;
	line-height: 1;
	cursor: pointer;
}
.pv-card__choice:hover,
.pv-card__choice.is-active {
	border-color: var(--pv-green, #2E7D32);
	background: var(--pv-green-soft, #E8F3E9);
	color: var(--pv-green-dark, #1B5E20);
}
.pv-card__choice.is-active { box-shadow: inset 0 0 0 1px var(--pv-green, #2E7D32); }
.pv-card__choice:focus-visible,
.pv-card__more:focus-visible { outline: 2px solid var(--pv-green, #2E7D32); outline-offset: 1px; }
.pv-card__choice:disabled {
	opacity: .42;
	text-decoration: line-through;
	cursor: not-allowed;
}
.pv-card__more { border-color: transparent; color: var(--pv-green-dark, #1B5E20); }

.pv-card__rating { display: flex; align-items: center; gap: 6px; min-height: 17px; margin-top: -2px; }
.pv-card__rating > span:last-child { color: var(--pv-muted, #6B7280); font-size: 11px; font-weight: 650; }
.pv-stars { display: inline-flex; gap: 1px; color: #d9d4c4; }
.pv-star { width: 15px; height: 15px; }
.pv-star.is-on { color: var(--pv-gold, #C8A14A); }

.pv-card__foot {
	margin-top: auto;
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 10px;
	padding-top: 4px;
}
.pv-card__price-wrap {
	display: flex;
	min-width: 0;
	flex-direction: column;
	gap: 2px;
}
.pv-card__price { min-height: 21px; font-size: 16px; font-weight: 800; color: var(--pv-green-dark, #1B5E20); }
.pv-card__from { display: block; color: var(--pv-muted, #6B7280); font-size: 9px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.pv-card__unit { color: var(--pv-muted, #6B7280); font-size: 10px; font-weight: 600; white-space: nowrap; }
.pv-card__price del { color: var(--pv-muted); font-weight: 500; font-size: 13px; margin-right: 4px; }
.pv-card__price ins { text-decoration: none; }
.pv-card__cta { width: 100%; min-height: 42px; flex-shrink: 0; }

/* Kart içi hızlı varyasyonlar */
.pv-products .pv-card__choices {
	gap: 8px;
	padding-bottom: 6px;
}
.pv-products .pv-card__choice,
.pv-products .pv-card__more {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 8px 14px;
	border: 1px solid var(--pv-green);
	border-radius: 999px;
	background: var(--pv-green-soft);
	color: var(--pv-green-dark);
	font-size: 13px;
	font-weight: 800;
	line-height: 1;
	box-shadow: none;
}
.pv-products .pv-card__choice:hover,
.pv-products .pv-card__choice.is-active {
	border-color: var(--pv-green-dark);
	background: var(--pv-green);
	color: #fff;
}
.pv-products .pv-card__choice.is-active {
	box-shadow: 0 0 0 1px rgba(46,125,50,.08) inset;
}
.pv-products .pv-card__choice:disabled {
	border-color: color-mix(in srgb, var(--pv-border) 72%, transparent);
	background: #f3f1eb;
	color: #9a8d80;
}
.pv-products .pv-card__more {
	background: #fff;
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent);
	color: var(--pv-green-dark);
}
.pv-products .pv-card__cta.pv-btn--ghost {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	padding: 14px 18px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent);
	border-radius: 999px;
	background: var(--pv-cream);
	color: var(--pv-green-dark);
	text-decoration: none;
	box-shadow: none;
	opacity: 1;
}
.pv-products .pv-card__cta.pv-btn--ghost:hover {
	background: var(--pv-green-soft);
	border-color: var(--pv-green);
	color: var(--pv-green-dark);
	box-shadow: 0 8px 20px rgba(46,125,50,.12);
}
.pv-products .pv-card__cta.pv-btn--ghost svg,
.pv-products .pv-card__cta.pv-btn--ghost svg * {
	color: inherit;
	fill: currentColor;
	stroke: currentColor;
}
.pv-products .pv-card__cta.js-pv-add,
.pv-products .pv-card__cta.pv-btn--green,
.pv-products .pv-card__cta.js-pv-card-add.pv-btn--green {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 100%;
	min-height: 54px;
	padding: 14px 18px;
	border: 1px solid var(--pv-green);
	border-radius: 999px;
	background: var(--pv-green);
	color: #fff;
	text-decoration: none;
	box-shadow: none;
	opacity: 1;
}
.pv-products .pv-card__cta.js-pv-add:hover,
.pv-products .pv-card__cta.pv-btn--green:hover,
.pv-products .pv-card__cta.js-pv-card-add.pv-btn--green:hover {
	border-color: var(--pv-green-dark);
	background: var(--pv-green-dark);
	color: #fff;
	box-shadow: 0 8px 20px rgba(46,125,50,.18);
}
.pv-products .pv-card__cta.js-pv-add svg,
.pv-products .pv-card__cta.pv-btn--green svg,
.pv-products .pv-card__cta.js-pv-card-add.pv-btn--green svg,
.pv-products .pv-card__cta.js-pv-add svg *,
.pv-products .pv-card__cta.pv-btn--green svg *,
.pv-products .pv-card__cta.js-pv-card-add.pv-btn--green svg * {
	color: inherit;
	fill: currentColor;
	stroke: currentColor;
}
.pv-archive .pv-card__cta.pv-btn--green,
.pv-archive .pv-card__cta.js-pv-add {
	border-color: var(--pv-green) !important;
	background: var(--pv-green) !important;
	color: #fff !important;
	box-shadow: none !important;
}
.pv-archive .pv-card__cta.pv-btn--green:hover,
.pv-archive .pv-card__cta.js-pv-add:hover {
	border-color: var(--pv-green-dark) !important;
	background: var(--pv-green-dark) !important;
	color: #fff !important;
}
.pv-archive .pv-card__cta.js-pv-add svg,
.pv-archive .pv-card__cta.pv-btn--green svg {
	color: inherit;
}
.pv-archive .pv-card__choices {
	gap: 8px !important;
	padding-bottom: 6px !important;
}
.pv-archive .pv-card__cta.pv-btn--ghost,
.pv-archive .pv-card__cta.js-pv-card-add {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	width: 100% !important;
	min-height: 54px !important;
	padding: 14px 18px !important;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	border-radius: 999px !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
	text-decoration: none !important;
	box-shadow: none !important;
	opacity: 1 !important;
}
.pv-archive .pv-card__cta.pv-btn--ghost:hover,
.pv-archive .pv-card__cta.js-pv-card-add:hover {
	background: var(--pv-green-soft) !important;
	border-color: var(--pv-green) !important;
	color: var(--pv-green-dark) !important;
	box-shadow: 0 8px 20px rgba(46,125,50,.12) !important;
}
.pv-archive .pv-card__cta.js-pv-card-add.pv-btn--green {
	border-color: var(--pv-green) !important;
	background: var(--pv-green) !important;
	color: #fff !important;
}
.pv-archive .pv-card__cta.js-pv-card-add.pv-btn--green:hover {
	border-color: var(--pv-green-dark) !important;
	background: var(--pv-green-dark) !important;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(46,125,50,.18) !important;
}
.pv-archive .pv-card__cta.pv-btn--ghost svg,
.pv-archive .pv-card__cta.js-pv-card-add svg,
.pv-archive .pv-card__cta.js-pv-card-add svg *,
.pv-archive .pv-card__cta.pv-btn--ghost svg * {
	color: inherit !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}
.pv-archive .pv-card__choice,
.pv-archive .pv-card__more {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 40px !important;
	padding: 8px 14px !important;
	border: 1px solid var(--pv-green) !important;
	border-radius: 999px !important;
	background: var(--pv-green-soft) !important;
	color: var(--pv-green-dark) !important;
	font-size: 13px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	box-shadow: none !important;
}
.pv-archive .pv-card__choice:hover,
.pv-archive .pv-card__choice.is-active {
	border-color: var(--pv-green-dark) !important;
	background: var(--pv-green) !important;
	color: #fff !important;
}
.pv-archive .pv-card__choice.is-active {
	box-shadow: 0 0 0 1px rgba(46,125,50,.08) inset !important;
}
.pv-archive .pv-card__choice:disabled {
	border-color: color-mix(in srgb, var(--pv-border) 72%, transparent) !important;
	background: #f3f1eb !important;
	color: #9a8d80 !important;
}
.pv-archive .pv-card__more {
	background: #fff !important;
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	color: var(--pv-green-dark) !important;
}

@media (hover: none) and (pointer: coarse) {
	/* cursor:pointer şart: iOS Safari, tıklanabilir görünmeyen öğelerde ilk
	   dokunuşu hover sayar ve click'i ancak ikinci dokunuşta gönderir. */
	.pv-card { cursor: pointer; }
	.pv-card:hover {
		transform: none;
		box-shadow: none;
		border-color: var(--pv-border, #E6E3DA);
	}
	.pv-card:hover .pv-card__media img { transform: none; }
}

/* ============================================================
   ANA SAYFA ÜRÜN KEŞFİ
   ============================================================ */
.pv-products { --pv-product-cols: 4; --pv-product-mobile-cols: 2; padding: clamp(22px, 3vw, 38px) 0; }
.pv-products__head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 24px;
	margin-bottom: 20px;
}
.pv-products__head > div:first-child { max-width: 680px; }
.pv-products__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 7px;
	color: var(--pv-green, #2E7D32);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .05em;
	text-transform: uppercase;
}
.pv-products__eyebrow svg { width: 17px; height: 17px; }
.pv-products__head h2 { margin: 0; font-size: clamp(24px, 3vw, 36px); font-weight: 850; line-height: 1.1; }
.pv-products__head p { max-width: 580px; margin: 9px 0 0; color: var(--pv-muted, #6B7280); font-size: 14px; line-height: 1.55; }
.pv-products__actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.pv-products__all,
.pv-products__mobile-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pv-green-dark, #1B5E20);
	font-size: 13px;
	font-weight: 850;
}
.pv-products__all:hover,
.pv-products__mobile-all:hover { color: var(--pv-green, #2E7D32); }
.pv-products__all span,
.pv-products__mobile-all span { font-size: 18px; transition: transform .16s ease; }
.pv-products__all:hover span,
.pv-products__mobile-all:hover span { transform: translateX(3px); }
.pv-products__nav { display: flex; gap: 7px; }
.pv-products__nav button {
	display: inline-grid;
	place-items: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid var(--pv-border, #E6E3DA);
	border-radius: 50%;
	background: #fff;
	color: var(--pv-green-dark, #1B5E20);
	font-size: 23px;
	line-height: 1;
	cursor: pointer;
}
.pv-products__nav button:hover { border-color: var(--pv-green); background: var(--pv-green-soft); }
.pv-products__nav button:disabled { opacity: .35; cursor: default; }
.pv-products__tabs {
	display: flex;
	gap: 8px;
	margin: 0 0 18px;
	padding: 1px 0 5px;
	overflow-x: auto;
	scrollbar-width: none;
}
.pv-products__tabs::-webkit-scrollbar { display: none; }
.pv-products__tabs button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 38px;
	padding: 8px 13px;
	border: 1px solid var(--pv-border, #E6E3DA);
	border-radius: 999px;
	background: #fff;
	color: var(--pv-muted, #6B7280);
	font: inherit;
	font-size: 12px;
	font-weight: 750;
	white-space: nowrap;
	cursor: pointer;
}
.pv-products__tabs button small {
	display: inline-grid;
	place-items: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border-radius: 999px;
	background: var(--pv-cream, #F7F4ED);
	color: inherit;
	font-size: 10px;
}
.pv-products__tabs button:hover { border-color: var(--pv-green); color: var(--pv-green-dark); }
.pv-products__tabs button.is-active { border-color: var(--pv-green); background: var(--pv-green); color: #fff; }
.pv-products__tabs button.is-active small { background: rgba(255,255,255,.18); }
.pv-products__track { grid-template-columns: repeat(var(--pv-product-cols), minmax(0, 1fr)); }
.pv-products__track .pv-card[hidden] { display: none !important; }
.pv-products--carousel .pv-products__track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: calc((100% - (18px * (var(--pv-product-cols) - 1))) / var(--pv-product-cols));
	grid-template-columns: none;
	overflow-x: auto;
	padding: 2px 2px 14px;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
}
.pv-products--carousel .pv-products__track::-webkit-scrollbar { display: none; }
.pv-products--carousel .pv-card { scroll-snap-align: start; }
.pv-products__progress {
	position: relative;
	display: none;
	width: min(180px, 42%);
	height: 3px;
	margin: 8px auto 0;
	overflow: hidden;
	border-radius: 999px;
	background: var(--pv-border, #E6E3DA);
}
.pv-products__progress span {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	border-radius: inherit;
	background: var(--pv-green, #2E7D32);
	transition: left .12s linear, width .18s ease;
}
.pv-products__empty {
	padding: 36px 18px;
	border: 1px dashed var(--pv-border, #E6E3DA);
	border-radius: 14px;
	background: var(--pv-cream, #F7F4ED);
	color: var(--pv-muted, #6B7280);
	text-align: center;
}
.pv-products__mobile-all { display: none; justify-content: center; margin-top: 18px; }

@media (max-width: 900px) {
	.pv-products__head { align-items: flex-start; }
	.pv-products__all { display: none; }
	.pv-products__mobile-all { display: flex; }
	.pv-products__track { grid-template-columns: repeat(var(--pv-product-mobile-cols), minmax(0, 1fr)); gap: 12px; }
	.pv-products--carousel .pv-products__track {
		grid-auto-columns: calc((100% - (12px * (var(--pv-product-mobile-cols) - 1))) / var(--pv-product-mobile-cols));
	}
	.pv-products--carousel .pv-products__progress { display: block; }
}
@media (max-width: 560px) {
	.pv-products { padding: 24px 0; }
	.pv-products__head { margin-bottom: 15px; }
	.pv-products__head h2 { font-size: 26px; }
	.pv-products__head p { font-size: 13px; }
	.pv-products__actions { display: none; }
	.pv-products__tabs { margin-right: -16px; padding-right: 16px; }
	.pv-products__track .pv-card__body { padding: 11px; gap: 6px; }
	.pv-products__track .pv-card__title { min-height: 36px; font-size: 13px; line-height: 1.38; }
	.pv-products__track .pv-card__feature { font-size: 9px; }
	.pv-products__track .pv-card__variations { display: none; }
	.pv-products__track .pv-card__choices { min-height: 35px; margin-right: -11px; padding-right: 11px; }
	.pv-products__track .pv-card__choice,
	.pv-products__track .pv-card__more { min-height: 32px; padding: 6px 8px; font-size: 10px; }
	.pv-products__track .pv-card__rating > span:last-child { display: none; }
	.pv-products__track .pv-star { width: 13px; height: 13px; }
	.pv-products__track .pv-card__price { font-size: 14px; }
	.pv-products__track .pv-card__unit { font-size: 9px; }
	.pv-products__track .pv-card__foot { gap: 8px; }
	.pv-products__track .pv-card__cta { width: 100%; min-height: 40px; padding: 9px 10px; font-size: 12px; }
	.pv-products__track .pv-card__cta svg { width: 16px; height: 16px; }
	.pv-products__track .pv-card__badges { top: 7px; left: 7px; right: 7px; gap: 4px; }
	.pv-products__track .pv-badge { padding: 4px 7px; font-size: 9px; }
	.pv-products .pv-card__choice,
	.pv-products .pv-card__more { border-radius: 11px; }
}

/* ============================================================
   BUTONLAR
   ============================================================ */
.pv-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font-size: 14px; font-weight: 700; line-height: 1;
	padding: 11px 16px; border-radius: 10px; border: 1.5px solid transparent;
	cursor: pointer; text-align: center; white-space: nowrap;
	transition: transform .12s ease, background .18s ease, box-shadow .18s ease, color .18s;
	-webkit-tap-highlight-color: transparent;
}
.pv-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.pv-btn:active { transform: scale(.97); }
.pv-btn:focus-visible { outline: 3px solid var(--pv-green-soft, #E8F3E9); outline-offset: 1px; }

.pv-btn--green { background: var(--pv-green, #2E7D32); color: #fff; }
.pv-btn--green:hover { background: var(--pv-green-dark, #1B5E20); box-shadow: 0 6px 18px rgba(46,125,50,.28); }

.pv-btn--ghost { background: var(--pv-white, #fff); color: var(--pv-green-dark, #1B5E20); border-color: var(--pv-green, #2E7D32); }
.pv-btn--ghost:hover { background: var(--pv-green-soft, #E8F3E9); }

.pv-btn--muted { background: #eceae3; color: #8a8f8a; cursor: not-allowed; }
.pv-btn[disabled] { opacity: .55; cursor: not-allowed; pointer-events: none; }

.pv-btn--lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }
.pv-btn--block { width: 100%; }

/* ============================================================
   KATEGORİ VİTRİNİ
   ============================================================ */
.pv-cat {
	display: flex; flex-direction: column; align-items: center; text-align: center;
	background: var(--pv-white, #fff); border: 1px solid var(--pv-border, #E6E3DA);
	border-radius: var(--_r); padding: 16px; gap: 6px;
	transition: transform .18s, box-shadow .18s, border-color .18s;
}
.pv-cat:hover { transform: translateY(-3px); box-shadow: var(--_shadow-h); border-color: var(--pv-green-soft); }
.pv-cat__media { width: 96px; height: 96px; border-radius: 50%; overflow: hidden; background: var(--pv-cream); border: 2px solid var(--pv-green-soft, #E8F3E9); }
.pv-cat__media img { width: 100%; height: 100%; object-fit: cover; }
.pv-cat__name { font-size: 15px; font-weight: 700; margin-top: 4px; }
.pv-cat:hover .pv-cat__name { color: var(--pv-green, #2E7D32); }
.pv-cat__count { font-size: 12px; color: var(--pv-muted, #6B7280); }

/* ============================================================
   TEKİL ÜRÜN
   ============================================================ */
/* Dış kapsayıcı dikey akış; iki kolonlu grid yalnızca üst bölümde (galeri+bilgi).
   Sekme/benzer ürünler grid DIŞINDA kalır — böylece sticky bilgi paneli
   (Safari'nin grid içi sticky sınırlama hatası dahil) alt bölümlerin üzerine taşamaz. */
.pv-single {
	display: flex;
	flex-direction: column;
	gap: 32px;
}
.pv-single__top {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	gap: 32px;
}

/* Galeri */
.pv-gallery__main { position: relative; border-radius: var(--_r); overflow: hidden; background: var(--pv-cream); border: 1px solid var(--pv-border); aspect-ratio: 1 / 1; }
.pv-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pv-gallery__main > .pv-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.pv-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.pv-gallery__thumb {
	width: 70px; height: 70px; border-radius: 10px; overflow: hidden;
	border: 2px solid var(--pv-border); background: var(--pv-cream); cursor: pointer; padding: 0;
	transition: border-color .15s;
}
.pv-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pv-gallery__thumb.is-active, .pv-gallery__thumb:hover { border-color: var(--pv-green, #2E7D32); }

/* Bilgi */
.pv-single__title { font-size: clamp(22px, 3vw, 32px); font-weight: 800; line-height: 1.2; margin: 0 0 10px; }
.pv-single__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.pv-single__rcount { font-size: 13px; color: var(--pv-muted); }
.pv-single__price { font-size: 26px; font-weight: 800; color: var(--pv-green-dark, #1B5E20); margin-bottom: 14px; }
.pv-single__price del { color: var(--pv-muted); font-weight: 500; font-size: 18px; margin-right: 8px; }
.pv-single__price ins { text-decoration: none; }
.pv-single__excerpt { font-size: 15px; line-height: 1.6; color: #45504a; margin-bottom: 20px; }

/* Varyasyon swatch'ları */
.pv-variations { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
.pv-var {
	padding: 14px 15px 15px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 86%, transparent);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(247,244,237,.78), rgba(255,255,255,.92));
}
.pv-var__label {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	font-size: 12px;
	font-weight: 850;
	text-transform: uppercase;
	letter-spacing: .055em;
	color: var(--pv-muted);
	margin-bottom: 10px;
}
.pv-var__label strong {
	color: var(--pv-green-dark, #1B5E20);
	font-weight: 850;
	letter-spacing: 0;
	text-transform: none;
}
.pv-var__opts { display: grid; grid-template-columns: repeat(auto-fit, minmax(132px, 1fr)); gap: 10px; }
.pv-swatch {
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 14px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 88%, transparent);
	background: rgba(255,255,255,.92);
	color: var(--pv-ink);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
	cursor: pointer;
	transition: border-color .15s, background .15s, color .15s, box-shadow .15s, transform .15s;
	box-shadow: 0 1px 0 rgba(36,48,36,.03);
	text-align: center;
	white-space: normal;
}
.pv-swatch:hover {
	border-color: color-mix(in srgb, var(--pv-green) 62%, var(--pv-border));
	background: var(--pv-green-soft, #E8F3E9);
	color: var(--pv-green-dark, #1B5E20);
	transform: translateY(-1px);
}
.pv-swatch.is-active {
	border-color: var(--pv-green, #2E7D32);
	background: linear-gradient(135deg, var(--pv-green-dark, #1B5E20), var(--pv-green, #2E7D32));
	color: #fff;
	box-shadow: 0 10px 24px rgba(46,125,50,.18);
}
.pv-swatch.is-disabled { opacity: .4; text-decoration: line-through; cursor: not-allowed; }
.pv-var__hint {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 11px 14px;
	border-radius: 14px;
	background: var(--pv-cream, #F7F4ED);
	color: var(--pv-ink);
	font-size: 13px;
	font-weight: 700;
	margin: -2px 0 0;
}
.pv-var__hint::before {
	content: "i";
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(31,90,67,.12);
	color: var(--pv-green-dark, #1B5E20);
	font-size: 11px;
	font-weight: 900;
	flex-shrink: 0;
}
.pv-var__description {
	padding: 12px 14px;
	border-radius: 14px;
	background: #fff;
	border: 1px solid var(--pv-border, #E6E3DA);
	font-size: 14px;
	line-height: 1.65;
	color: #45504a;
}

/* Satın alma satırı */
.pv-buy {
	display: grid;
	grid-template-columns: minmax(128px, 168px) minmax(0, 1fr);
	gap: 12px;
	align-items: end;
	margin-bottom: 12px;
}
.pv-buy .pv-qty { width: 100%; }
.pv-buy .pv-btn--green { flex: 1; min-width: 0; }
.pv-buy-now { width: 100%; margin: 0 0 20px; padding: 0; text-align: left; }

/* Miktar stepper */
.pv-qty {
	display: inline-flex;
	align-items: center;
	border: 1px solid color-mix(in srgb, var(--pv-border) 88%, transparent);
	border-radius: 14px;
	overflow: hidden;
	background: var(--pv-white);
	flex-shrink: 0;
	min-width: 0;
}
.pv-qty__btn {
	width: 44px;
	height: 48px;
	min-height: 48px;
	border: none;
	background: var(--pv-cream, #F7F4ED);
	color: var(--pv-green-dark, #1B5E20);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s, color .15s;
}
.pv-qty__btn:hover { background: var(--pv-green-soft, #E8F3E9); }
.pv-qty__btn svg { width: 16px; height: 16px; }
.pv-qty__input {
	width: 64px;
	height: 48px;
	border: none;
	text-align: center;
	font-size: 15px;
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	color: var(--pv-ink);
	background: transparent;
	-moz-appearance: textfield;
}
.pv-qty__input::-webkit-outer-spin-button, .pv-qty__input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pv-buy .pv-btn--green {
	width: 100%;
	min-height: 48px;
	border-radius: 14px;
}
.pv-qty--sm .pv-qty__btn { min-height: 38px; width: 36px; }
.pv-qty--sm .pv-qty__input { width: 40px; height: 38px; font-size: 14px; }

/* Güven rozetleri */
.pv-trust { list-style: none; margin: 18px 0 0; padding: 16px 0 0; border-top: 1px solid var(--pv-border, #E6E3DA); display: flex; flex-wrap: wrap; gap: 16px; }
.pv-trust li { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #45504a; }
.pv-trust__ic { display: inline-flex; width: 30px; height: 30px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pv-green-soft, #E8F3E9); color: var(--pv-green, #2E7D32); }
.pv-trust__ic svg { width: 17px; height: 17px; }

/* Meta */
.pv-meta { margin: 16px 0 0; font-size: 13px; }
.pv-meta div { display: flex; gap: 8px; padding: 4px 0; }
.pv-meta dt { color: var(--pv-muted); min-width: 90px; }
.pv-meta dd { margin: 0; font-weight: 600; }
.pv-meta a:hover { color: var(--pv-green); }

/* Açıklama */
.pv-single__desc { margin-top: 8px; padding-top: 28px; border-top: 1px solid var(--pv-border); }
.pv-desc-title { font-size: 22px; font-weight: 800; margin: 0 0 14px; }
.pv-desc-body { font-size: 15px; line-height: 1.7; color: #45504a; }
.pv-desc-body :is(h2,h3) { color: var(--pv-ink); margin-top: 1.2em; }

/* ============================================================
   SEPET
   ============================================================ */
.pv-cart__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
	padding: 22px 24px;
	border: 1px solid var(--pv-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
	box-shadow: 0 12px 38px rgba(36,48,36,.07);
}
.pv-cart__head-copy,
.pv-checkout__head-copy {
	min-width: 0;
}
.pv-cart__eyebrow,
.pv-checkout__eyebrow {
	display: inline-flex;
	margin-bottom: 8px;
	color: var(--pv-green-dark);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.pv-cart__title,
.pv-checkout__title {
	margin: 0;
	color: var(--pv-ink);
	font-size: clamp(28px, 4vw, 42px);
	line-height: 1.04;
	font-weight: 900;
	letter-spacing: -.04em;
}
.pv-cart__sub,
.pv-checkout__sub {
	max-width: 56ch;
	margin: 10px 0 0;
	color: #576159;
	font-size: 14px;
	line-height: 1.6;
}
.pv-flowbar {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	padding: 12px 14px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 82%, transparent);
	border-radius: 16px;
	background: rgba(255,255,255,.88);
	box-shadow: 0 8px 20px rgba(36,48,36,.06);
}
.pv-flowbar__item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pv-muted);
	font-size: 13px;
	font-weight: 800;
	white-space: nowrap;
}
.pv-flowbar__item.is-active {
	color: var(--pv-green-dark);
}
.pv-flowbar__item.is-done {
	color: var(--pv-green);
}
.pv-flowbar__num {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border-radius: 999px;
	background: var(--pv-cream);
	border: 1px solid color-mix(in srgb, var(--pv-border) 76%, transparent);
	color: inherit;
	font-size: 12px;
	font-weight: 900;
}
.pv-flowbar__item.is-active .pv-flowbar__num {
	background: var(--pv-green);
	border-color: var(--pv-green);
	color: #fff;
}
.pv-flowbar__item.is-done .pv-flowbar__num {
	background: var(--pv-green-soft);
	border-color: var(--pv-green-soft);
	color: var(--pv-green-dark);
}
.pv-flowbar__line {
	width: 52px;
	height: 2px;
	border-radius: 999px;
	background: color-mix(in srgb, var(--pv-border) 78%, transparent);
}
.pv-flowbar__line.is-active {
	background: linear-gradient(90deg, var(--pv-green-soft), var(--pv-green));
}
.pv-cart__grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 24px; align-items: start; }

.pv-cart-row {
	display: grid; grid-template-columns: 84px 1fr auto auto auto; gap: 14px; align-items: center;
	padding: 14px; background: var(--pv-white); border: 1px solid var(--pv-border); border-radius: var(--_r); margin-bottom: 12px;
	transition: opacity .2s;
}
.pv-cart-row.is-removing { opacity: 0; }
.pv-cart-row__media { width: 84px; height: 84px; border-radius: 10px; overflow: hidden; background: var(--pv-cream); }
.pv-cart-row__media img { width: 100%; height: 100%; object-fit: cover; }
.pv-cart-row__info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.pv-cart-row__name { font-size: 15px; font-weight: 700; line-height: 1.3; }
.pv-cart-row__name:hover { color: var(--pv-green); }
.pv-cart-row__unit { font-size: 13px; color: var(--pv-muted); }
.pv-cart-row__variation { display: flex; flex-wrap: wrap; gap: 4px 10px; margin: 0; color: var(--pv-muted); font-size: 12px; }
.pv-cart-row__variation div { display: flex; gap: 3px; }
.pv-cart-row__variation dt { font-weight: 700; }
.pv-cart-row__variation dd { margin: 0; }
.pv-mini-row__variation { display: flex; flex-wrap: wrap; gap: 3px 8px; margin: -2px 0 6px; color: var(--pv-muted); font-size: 11px; }
.pv-mini__close:focus-visible {
	outline: 3px solid var(--pv-gold, #C8A14A) !important;
	outline-offset: 3px !important;
}
.pv-cart-row__line { font-size: 16px; font-weight: 800; color: var(--pv-green-dark, #1B5E20); white-space: nowrap; }
.pv-cart-row__rm { border: none; background: transparent; color: #b0a89a; cursor: pointer; width: 38px; height: 38px; border-radius: 8px; display: flex; align-items: center; justify-content: center; transition: background .15s, color .15s; }
.pv-cart-row__rm:hover { background: var(--pv-cream); color: var(--pv-green-dark); }
.pv-cart-row__rm svg { width: 18px; height: 18px; }

.pv-cart__summary { background: var(--pv-cream, #F7F4ED); border: 1px solid var(--pv-border); border-radius: var(--_r); padding: 20px; position: sticky; top: 20px; }
.pv-summary__title { font-size: 18px; font-weight: 800; margin: 0 0 16px; }
.pv-summary__row { display: flex; justify-content: space-between; align-items: center; font-size: 14px; padding: 8px 0; color: #45504a; }
.pv-summary__row--total { border-top: 1px solid var(--pv-border); margin-top: 6px; padding-top: 14px; font-size: 17px; }
.pv-summary__row--total strong { color: var(--pv-green-dark, #1B5E20); font-size: 20px; }
.pv-summary__note { font-size: 12px; color: var(--pv-muted); margin: 4px 0 16px; }
.pv-summary__cont { display: block; text-align: center; font-size: 13px; color: var(--pv-green-dark); font-weight: 600; margin-top: 12px; }
.pv-summary__cont:hover { text-decoration: underline; }

.pv-cart__empty { text-align: center; padding: 48px 20px; }
.pv-cart__empty-ic { display: inline-flex; width: 64px; height: 64px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pv-green-soft, #E8F3E9); color: var(--pv-green, #2E7D32); margin-bottom: 16px; }
.pv-cart__empty-ic svg { width: 30px; height: 30px; }
.pv-cart__empty p { font-size: 16px; color: var(--pv-muted); margin: 0 0 18px; }

/* ============================================================
   ÖDEME (WooCommerce native + skin)
   ============================================================ */
.pv-checkout__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 22px;
	padding: 22px 24px;
	border: 1px solid var(--pv-border);
	border-radius: 20px;
	background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
	box-shadow: 0 12px 38px rgba(36,48,36,.07);
}
.pv-checkout__title-row {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-top: 8px;
}
.pv-checkout__lock { display: inline-flex; width: 46px; height: 46px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pv-green, #2E7D32); color: #fff; flex-shrink: 0; }
.pv-checkout__lock svg { width: 24px; height: 24px; }
/* WooCommerce form alanlarını yeşil temaya uydur */
.pv-checkout .form-row input.input-text, .pv-checkout .form-row textarea, .pv-checkout select { border: 1.5px solid var(--pv-border) !important; border-radius: 10px !important; padding: 12px 14px !important; }
.pv-checkout .form-row input.input-text:focus, .pv-checkout .form-row textarea:focus { border-color: var(--pv-green, #2E7D32) !important; outline: none !important; box-shadow: 0 0 0 3px var(--pv-green-soft) !important; }
.pv-checkout .form-row-first,
.pv-checkout .form-row-last {
	width: calc(50% - 8px) !important;
	clear: none !important;
	float: left !important;
}
.pv-checkout .form-row-last {
	float: right !important;
}
.pv-checkout .form-row-wide {
	width: 100% !important;
	clear: both !important;
	float: none !important;
}
.pv-checkout #place_order, .pv-checkout button[type="submit"] { background: var(--pv-green, #2E7D32) !important; color: #fff !important; border-radius: 12px !important; padding: 14px 22px !important; font-weight: 700 !important; font-size: 15px !important; width: 100%; transition: background .18s; }
.pv-checkout #place_order:hover { background: var(--pv-green-dark, #1B5E20) !important; }
.pv-checkout .woocommerce-checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(350px, 420px);
	gap: 28px 34px;
	align-items: start;
}
.pv-checkout .woocommerce-checkout > #customer_details {
	grid-column: 1;
	grid-row: 1 / span 2;
	min-width: 0;
}
.pv-checkout .woocommerce-checkout > #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	margin: 0;
}
.pv-checkout .woocommerce-checkout > #order_review {
	grid-column: 2;
	grid-row: 2;
	position: sticky;
	top: 20px;
}
.pv-checkout #customer_details .col-1,
.pv-checkout #customer_details .col-2 {
	width: 100%;
	float: none;
}
.pv-checkout #customer_details {
	display: grid;
	gap: 20px;
}
.pv-checkout .pv-checkout__note {
	margin-top: 20px;
	padding: 18px 18px 8px;
	border: 1px solid var(--pv-border);
	border-radius: 18px;
	background: var(--pv-cream);
	box-shadow: 0 10px 26px rgba(36,48,36,.05);
}
.pv-checkout .pv-checkout__note-title {
	margin: 0 0 12px;
	font-size: 17px;
	font-weight: 850;
	letter-spacing: -.01em;
}
.pv-checkout .pv-checkout__note .form-row {
	margin-bottom: 10px;
}
.pv-checkout .pv-checkout__note textarea {
	min-height: 120px;
	resize: vertical;
}

/* ============================================================
   TOAST BİLDİRİM
   ============================================================ */
.pv-toast-wrap { position: fixed; z-index: 100000; bottom: 24px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; gap: 10px; pointer-events: none; width: min(360px, calc(100vw - 32px)); }
.pv-toast {
	display: flex; align-items: center; gap: 10px; padding: 13px 16px; border-radius: 12px;
	background: var(--pv-ink, #243024); color: #fff; font-size: 14px; font-weight: 600;
	box-shadow: 0 10px 30px rgba(0,0,0,.25); pointer-events: auto;
	animation: pvToastIn .26s cubic-bezier(.2,.8,.2,1);
}
.pv-toast.is-out { animation: pvToastOut .22s ease forwards; }
.pv-toast--ok { background: var(--pv-green, #2E7D32); }
.pv-toast--err { background: #5a5048; }
.pv-toast__ic { display: inline-flex; width: 22px; height: 22px; flex-shrink: 0; }
.pv-toast__ic svg { width: 100%; height: 100%; }
@keyframes pvToastIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pvToastOut { to { opacity: 0; transform: translateY(14px); } }

/* Buton içi yükleniyor durumu */
.pv-btn.is-loading { color: transparent !important; position: relative; pointer-events: none; }
.pv-btn.is-loading::after { content: ""; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.5); border-top-color: #fff; border-radius: 50%; animation: pvSpin .6s linear infinite; }
.pv-btn--ghost.is-loading::after { border-color: rgba(46,125,50,.4); border-top-color: var(--pv-green); }
@keyframes pvSpin { to { transform: rotate(360deg); } }

.pv-empty { text-align: center; padding: 40px 20px; color: var(--pv-muted); font-size: 15px; }
.pv-loading { text-align: center; padding: 30px 20px; color: var(--pv-muted); font-size: 14px; }

/* ============================================================
   SEPET İKONU (header) + badge
   ============================================================ */
.pavli-cart-header-icon {
	position: relative; display: inline-flex; align-items: center; justify-content: center;
	width: 46px; height: 46px; border-radius: 50%; border: none; background: transparent;
	color: inherit; cursor: pointer; transition: background .18s, color .18s;
}
.pavli-cart-header-icon svg { width: 24px; height: 24px; }
.pv-cart-ic__badge {
	position: absolute; top: 2px; right: 2px;
	min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
	background: var(--pv-gold, #C8A14A); color: #2a2208;
	font-size: 11px; font-weight: 800; line-height: 19px; text-align: center;
	border: 2px solid var(--pv-green-dark, #0E3B2E);
	animation: pvPop .25s cubic-bezier(.2,.9,.3,1.4);
}
@keyframes pvPop { from { transform: scale(.4); } to { transform: scale(1); } }

/* ============================================================
   MİNİ SEPET DRAWER (off-canvas, sağdan)
   ============================================================ */
.pv-mini { position: fixed; inset: 0; z-index: 100001; }
.pv-mini[hidden] { display: none; }
.pv-mini__overlay { position: absolute; inset: 0; background: rgba(8,41,31,.55); backdrop-filter: blur(3px); opacity: 0; transition: opacity .28s ease; }
.pv-mini.is-open .pv-mini__overlay { opacity: 1; }
.pv-mini__panel {
	position: absolute; top: 0; right: 0; height: 100%; width: min(400px, 92vw);
	background: var(--pv-cream, #F7F4ED); display: flex; flex-direction: column;
	box-shadow: -18px 0 60px rgba(14,59,46,.28);
	transform: translateX(100%); transition: transform .3s cubic-bezier(.3,.9,.3,1);
}
.pv-mini.is-open .pv-mini__panel { transform: translateX(0); }

.pv-mini__head {
	display: flex; align-items: center; justify-content: space-between;
	padding: 18px 20px; background: var(--pv-green-dark, #1B5E20); color: var(--pv-white, #fff);
}
.pv-mini__title { display: flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 800; }
.pv-mini__title svg { width: 20px; height: 20px; }
.pv-mini__title em { font-style: normal; font-size: 12px; font-weight: 700; background: var(--pv-gold, #C8A14A); color: #2a2208; padding: 2px 9px; border-radius: 999px; }
.pv-mini__close {
	display: inline-flex; align-items: center; justify-content: center;
	width: 36px; height: 36px; border-radius: 50%;
	border: 0 !important; outline: none !important; box-shadow: none !important;
	background: rgba(255,255,255,.14) !important; color: #fff !important;
	cursor: pointer; transition: background .15s, transform .15s; padding: 0;
}
.pv-mini__close svg { width: 18px; height: 18px; }
.pv-mini__close:hover { background: rgba(255,255,255,.26) !important; transform: rotate(90deg); }

.pv-mini__body { flex: 1; overflow-y: auto; padding: 14px 16px; scrollbar-width: thin; }

/* Mini sepet satırı */
.pv-mini-row { display: grid; grid-template-columns: 60px 1fr auto; gap: 12px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--pv-border, #E6E3DA); }
.pv-mini-row__img { width: 60px; height: 60px; border-radius: 10px; overflow: hidden; background: var(--pv-white); border: 1px solid var(--pv-border); }
.pv-mini-row__img img { width: 100%; height: 100%; object-fit: cover; }
.pv-mini-row__info { min-width: 0; }
.pv-mini-row__name { font-size: 14px; font-weight: 700; line-height: 1.3; display: block; margin-bottom: 6px; }
.pv-mini-row__name:hover { color: var(--pv-green); }
.pv-mini-row__ctrl { display: flex; align-items: center; gap: 8px; }
.pv-mini-qty { display: inline-flex; align-items: center; border: 1.5px solid var(--pv-border); border-radius: 8px; overflow: hidden; background: var(--pv-white); }
.pv-mini-qty button { width: 28px; height: 30px; border: none; background: var(--pv-white); color: var(--pv-green-dark); cursor: pointer; font-size: 16px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.pv-mini-qty button:hover { background: var(--pv-green-soft); }
.pv-mini-qty span { min-width: 28px; text-align: center; font-size: 13px; font-weight: 700; }
.pv-mini-row__rm,
.pv-cart-row__rm {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	min-height: 36px;
	padding: 8px 12px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent);
	border-radius: 12px;
	background: var(--pv-cream);
	color: var(--pv-green-dark);
	cursor: pointer;
	font-size: 12px;
	font-weight: 800;
	line-height: 1;
	text-decoration: none;
	transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.pv-mini-row__rm:hover,
.pv-cart-row__rm:hover {
	border-color: var(--pv-green);
	background: var(--pv-green-soft);
	color: var(--pv-green-dark);
	transform: translateY(-1px);
}
.pv-mini-row__rm svg,
.pv-cart-row__rm svg { width: 15px; height: 15px; }
.pv-mini-row__price { text-align: right; }
.pv-mini-row__line { font-size: 14px; font-weight: 800; color: var(--pv-green-dark, #1B5E20); white-space: nowrap; }

.pv-mini__foot { padding: 16px 18px; border-top: 1px solid var(--pv-border); background: var(--pv-white, #fff); display: flex; flex-direction: column; gap: 9px; }
.pv-mini__total { display: flex; justify-content: space-between; align-items: center; font-size: 15px; margin-bottom: 4px; }
.pv-mini__total strong { font-size: 20px; font-weight: 800; color: var(--pv-green-dark, #1B5E20); }

.pv-mini__empty { text-align: center; padding: 50px 24px; }
.pv-mini__empty-ic { display: inline-flex; width: 60px; height: 60px; align-items: center; justify-content: center; border-radius: 50%; background: var(--pv-green-soft, #E8F3E9); color: var(--pv-green, #2E7D32); margin-bottom: 14px; }
.pv-mini__empty-ic svg { width: 28px; height: 28px; }
.pv-mini__empty p { font-size: 15px; color: var(--pv-muted); margin: 0 0 16px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
	.pv-single { gap: 24px; }
	.pv-single__top { grid-template-columns: 1fr; gap: 24px; }
	.pv-cart__grid { grid-template-columns: 1fr; }
	.pv-cart__summary { position: static; }
	.pv-cols-4 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 680px) {
	.pv-cols-3, .pv-cols-4 { grid-template-columns: repeat(2, 1fr); }
	.pv-grid, .pv-cats { gap: 12px; }
	.pv-cart-row { grid-template-columns: 64px 1fr auto; grid-template-areas: "media info rm" "media qty line"; gap: 10px; }
	.pv-cart-row__media { width: 64px; height: 64px; grid-area: media; }
	.pv-cart-row__info { grid-area: info; }
	.pv-cart-row .pv-qty { grid-area: qty; }
	.pv-cart-row__line { grid-area: line; text-align: right; align-self: center; }
	.pv-cart-row__rm { grid-area: rm; justify-self: end; }
}

@media (max-width: 900px) {
	.pv-cart__head,
	.pv-checkout__head {
		flex-direction: column;
		align-items: stretch;
		padding: 18px 18px 16px;
		border-radius: 18px;
	}
	.pv-flowbar {
		width: 100%;
		justify-content: space-between;
		padding: 10px 12px;
	}
	.pv-flowbar__line {
		flex: 1 1 auto;
		width: auto;
	}
	.pv-checkout__title-row {
		margin-top: 10px;
	}
	.pv-checkout .woocommerce-checkout {
		grid-template-columns: 1fr;
	}
	.pv-checkout .woocommerce-checkout > #customer_details,
	.pv-checkout .woocommerce-checkout > #order_review_heading,
	.pv-checkout .woocommerce-checkout > #order_review {
		grid-column: 1;
		grid-row: auto;
	}
	.pv-checkout .woocommerce-checkout > #order_review {
		position: static;
	}
	.pv-checkout .form-row-first,
	.pv-checkout .form-row-last {
		width: 100% !important;
		float: none !important;
	}
}
@media (max-width: 420px) {
	.pv-cols-2, .pv-cols-3, .pv-cols-4 { grid-template-columns: 1fr 1fr; }
	.pv-card__body { padding: 10px; }
	.pv-buy { flex-direction: column; }
	.pv-qty { width: 100%; justify-content: space-between; }
	.pv-qty__input { flex: 1; }
}

/* ============================================================
   V1.1 - TEK ÜRÜN DENEYİMİ
   ============================================================ */
.pv-sr-only {
	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;
}
.pv-lock { overflow: hidden !important; }

.pv-single {
	max-width: 1240px;
	margin-inline: auto;
	gap: clamp(28px, 4vw, 58px);
}
.pv-single__top {
	grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
	gap: clamp(28px, 4vw, 58px);
	align-items: start;
}
.pv-single__gallery { min-width: 0; }
.pv-gallery__main {
	isolation: isolate;
	border-radius: 22px;
	border-color: color-mix(in srgb, var(--pv-border) 82%, transparent);
	box-shadow: 0 18px 55px rgba(36,48,36,.08);
	touch-action: pan-y;
}
.pv-gallery__img {
	transition: opacity .18s ease;
	user-select: none;
	-webkit-user-drag: none;
}
.pv-gallery__zoom,
.pv-gallery__nav {
	position: absolute;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(31,90,67,.16);
	background: rgba(255,255,255,.88);
	color: var(--pv-green-dark);
	box-shadow: 0 8px 24px rgba(36,48,36,.14);
	cursor: pointer;
	backdrop-filter: blur(8px);
}
.pv-gallery__zoom {
	top: 14px;
	right: 14px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 23px;
}
.pv-gallery__nav {
	top: 50%;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	transform: translateY(-50%);
	font-size: 32px;
	line-height: 1;
}
.pv-gallery__nav--prev { left: 14px; }
.pv-gallery__nav--next { right: 14px; }
.pv-gallery__zoom:hover,
.pv-gallery__nav:hover { background: var(--pv-green-soft, #E8F3E9); color: var(--pv-green-dark); border-color: var(--pv-green); }
.pv-gallery__zoom:focus-visible,
.pv-gallery__nav:focus-visible,
.pv-gallery__thumb:focus-visible,
.pv-swatch:focus-visible,
.pv-qty__btn:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--pv-green) 28%, transparent);
	outline-offset: 3px;
}
.pv-gallery__count {
	position: absolute;
	z-index: 3;
	right: 16px;
	bottom: 16px;
	padding: 6px 10px;
	border-radius: 999px;
	background: rgba(20,37,29,.78);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	backdrop-filter: blur(6px);
}
.pv-gallery__thumbs {
	flex-wrap: nowrap;
	overflow-x: auto;
	padding: 4px 3px 8px;
	scrollbar-width: thin;
	scroll-snap-type: x proximity;
}
.pv-gallery__thumb {
	width: 76px;
	height: 76px;
	flex: 0 0 76px;
	border-radius: 13px;
	scroll-snap-align: start;
}
.pv-gallery__thumb.is-active {
	border-color: var(--pv-green);
	box-shadow: 0 0 0 3px var(--pv-green-soft);
}

.pv-single__info {
	position: sticky;
	top: 24px;
	padding: clamp(22px, 3vw, 34px);
	border: 1px solid var(--pv-border);
	border-radius: 22px;
	background: var(--pv-white);
	box-shadow: 0 18px 55px rgba(36,48,36,.08);
}
.pv-single__category {
	margin-bottom: 9px;
	color: var(--pv-green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .07em;
	text-transform: uppercase;
}
.pv-single__category a:hover { text-decoration: underline; }
.pv-single__title {
	font-size: clamp(27px, 3vw, 40px);
	letter-spacing: -.025em;
}
.pv-single__rating { width: fit-content; color: var(--pv-muted); }
.pv-single__rating:hover span { color: var(--pv-green-dark); }
.pv-single__price { margin: 15px 0 5px; font-size: clamp(27px, 3vw, 36px); }
.pv-single__stock {
	display: flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 18px;
	font-size: 13px;
	font-weight: 800;
}
.pv-single__stock > span {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 13%, transparent);
}
.pv-single__stock.is-in-stock { color: var(--pv-green); }
.pv-single__stock.is-out-of-stock { color: #786e64; }
.pv-single__excerpt { padding-bottom: 18px; border-bottom: 1px solid var(--pv-border); }

.pv-var {
	min-width: 0;
	padding: 14px 15px 15px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 86%, transparent);
	border-radius: 18px;
	background: linear-gradient(180deg, rgba(247,244,237,.78), rgba(255,255,255,.92));
}
.pv-var__label {
	width: 100%;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	text-transform: uppercase;
	letter-spacing: .055em;
	color: var(--pv-muted);
	font-size: 12px;
	font-weight: 850;
	margin-bottom: 10px;
}
.pv-var__label strong {
	color: var(--pv-green-dark);
	font-size: 12px;
	font-weight: 850;
	text-transform: none;
	letter-spacing: 0;
}
.pv-swatch {
	min-height: 48px;
	padding: 10px 14px;
	border-radius: 14px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 88%, transparent);
	background: rgba(255,255,255,.92);
	color: var(--pv-ink);
	font-size: 14px;
	font-weight: 650;
	line-height: 1.35;
	box-shadow: 0 1px 0 rgba(36,48,36,.03);
	text-align: center;
	white-space: normal;
	transition: border-color .15s, background .15s, color .15s, box-shadow .15s, transform .15s;
}
.pv-swatch:hover {
	border-color: color-mix(in srgb, var(--pv-green) 62%, var(--pv-border));
	background: var(--pv-green-soft, #E8F3E9);
	color: var(--pv-green-dark, #1B5E20);
	transform: translateY(-1px);
}
.pv-swatch.is-active {
	border-color: var(--pv-green, #2E7D32);
	background: linear-gradient(135deg, var(--pv-green-dark, #1B5E20), var(--pv-green, #2E7D32));
	color: #fff;
	box-shadow: 0 10px 24px rgba(46,125,50,.18);
}
.pv-swatch.is-disabled,
.pv-swatch:disabled {
	opacity: .38;
	text-decoration: line-through;
	cursor: not-allowed;
	background: #f1efe9;
}
.pv-var__reset {
	align-self: flex-start;
	padding: 2px 0;
	border: 0;
	border-bottom: 1px solid currentColor;
	background: none;
	color: var(--pv-muted);
	font: inherit;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
}
.pv-var__reset:hover { color: var(--pv-green-dark); }
.pv-var__message {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin: -2px 0 14px;
	padding: 11px 14px;
	border-radius: 14px;
	background: var(--pv-cream);
	color: var(--pv-ink);
	font-size: 13px;
	font-weight: 700;
}
.pv-var__message::before {
	content: "i";
	display: inline-grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	background: rgba(31,90,67,.12);
	color: var(--pv-green-dark);
	font-size: 11px;
	font-weight: 900;
	flex-shrink: 0;
}
.pv-var__description {
	margin: -4px 0 16px;
	padding: 12px 14px;
	border: 1px solid var(--pv-border);
	border-radius: 14px;
	background: #fff;
	font-size: 13px;
	line-height: 1.55;
	color: #45504a;
}
.pv-var__description > :last-child { margin-bottom: 0; }
.pv-qty-label {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
}
.pv-buy { margin-top: 4px; }
.pv-buy .pv-btn--green { min-height: 50px; }
.pv-buy-now {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	min-height: 44px;
	margin: 0 0 20px;
	padding: 10px 16px;
	border: 1px solid var(--pv-border);
	border-radius: 14px;
	background: var(--pv-cream, #F7F4ED);
	color: var(--pv-green-dark);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.pv-buy-now:hover:not(:disabled) { background: var(--pv-green-soft, #E8F3E9); border-color: var(--pv-green); color: var(--pv-green-dark); transform: translateY(-1px); }

.pv-facts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 20px 0 0;
	padding: 18px 0 0;
	border-top: 1px solid var(--pv-border);
	list-style: none;
}
.pv-facts li { display: flex; align-items: center; gap: 10px; min-width: 0; }
.pv-facts__ic {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	flex: 0 0 34px;
	border-radius: 11px;
	background: var(--pv-green-soft);
	color: var(--pv-green);
}
.pv-facts__ic svg { width: 18px; height: 18px; }
.pv-facts small,
.pv-facts strong { display: block; line-height: 1.25; }
.pv-facts small { color: var(--pv-muted); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }
.pv-facts strong { margin-top: 2px; font-size: 12px; color: var(--pv-ink); }
.pv-single__sku { margin: 13px 0 0; color: var(--pv-muted); font-size: 12px; }

.pv-single__desc {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid var(--pv-border);
	border-radius: 22px;
	background: var(--pv-white);
}
.pv-desc-body { max-width: 820px; }

.pv-lightbox {
	position: fixed;
	inset: 0;
	z-index: 100010;
	display: grid;
	place-items: center;
	padding: 24px;
}
.pv-lightbox[hidden] { display: none; }
.pv-lightbox__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background: rgba(10,18,13,.88);
	backdrop-filter: blur(8px);
}
.pv-lightbox__content {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: min(1100px, 94vw);
	height: min(840px, 88vh);
}
.pv-lightbox__content img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 14px; }
.pv-lightbox__close {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 2;
	width: 48px;
	height: 48px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 50%;
	background: rgba(0,0,0,.45);
	color: #fff;
	font-size: 30px;
	cursor: pointer;
}

@media (max-width: 992px) {
	.pv-single { max-width: 760px; }
	.pv-single__top { grid-template-columns: minmax(0, 1fr); }
	.pv-single__info { position: static; }
}
@media (max-width: 600px) {
	.pv-single { gap: 18px; }
	.pv-single__top { gap: 18px; }
	.pv-gallery__main,
	.pv-single__info,
	.pv-single__desc { border-radius: 16px; }
	.pv-single__info { padding: 20px 16px; }
	.pv-gallery__nav { width: 40px; height: 40px; }
	.pv-gallery__nav--prev { left: 8px; }
	.pv-gallery__nav--next { right: 8px; }
	.pv-gallery__zoom { top: 10px; right: 10px; width: 40px; height: 40px; }
	.pv-gallery__thumb { width: 64px; height: 64px; flex-basis: 64px; }
	.pv-facts { grid-template-columns: 1fr; }
	.pv-var { padding: 12px; }
	.pv-var__opts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pv-swatch { min-height: 44px; padding: 9px 10px; font-size: 13px; }
	.pv-buy { grid-template-columns: 1fr; }
	.pv-buy .pv-qty { width: 100%; }
	.pv-buy .pv-qty__btn { width: 38px; }
	.pv-buy .pv-qty__input { min-width: 0; width: auto; flex: 1; }
	.pv-buy-now--quiet { width: 100%; }
}
@media (max-width: 390px) {
	.pv-var__opts { grid-template-columns: 1fr; }
	.pv-buybar__qty span { min-width: 30px; padding: 0 6px; font-size: 14px; }
	.pv-buybar .pv-btn--green { padding-inline: 14px; }
}
@media (prefers-reduced-motion: reduce) {
	.pv *, .pvh * {
		scroll-behavior: auto !important;
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
	}
}

/* ============================================================
   V1.2 - KATEGORİ KEŞİF ALANI
   ============================================================ */
.pv-cats-section {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding: clamp(22px, 4vw, 52px);
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent);
	border-radius: 28px;
	background:
		radial-gradient(circle at 90% 0%, rgba(200,161,74,.11), transparent 30%),
		linear-gradient(145deg, #fff 0%, var(--pv-cream) 100%);
	overflow: hidden;
}
.pv-cats-head {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: clamp(22px, 3vw, 34px);
}
.pv-cats-head__copy { min-width: 0; max-width: 720px; }
.pv-cats-head__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	color: var(--pv-green);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.pv-cats-head__eyebrow svg { width: 18px; height: 18px; }
.pv-cats-head__title {
	margin: 0;
	color: var(--pv-ink);
	font-size: clamp(28px, 4vw, 48px);
	font-weight: 850;
	line-height: 1.04;
	letter-spacing: -.035em;
}
.pv-cats-head__subtitle {
	max-width: 620px;
	margin: 12px 0 0;
	color: var(--pv-muted);
	font-size: clamp(14px, 1.5vw, 17px);
	line-height: 1.6;
}
.pv-cats-head__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	flex-shrink: 0;
}
.pv-cats-head__all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--pv-green-dark);
	font-size: 13px;
	font-weight: 800;
}
.pv-cats-head__all span { transition: transform .18s ease; }
.pv-cats-head__all:hover span { transform: translateX(4px); }
.pv-cats-nav { display: none; align-items: center; gap: 8px; }
.pv-cats-section--slider .pv-cats-nav { display: flex; }
.pv-cats-nav__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0 0 3px;
	border: 1px solid var(--pv-border) !important;
	border-radius: 50%;
	background: var(--pv-white) !important;
	color: var(--pv-green-dark) !important;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 7px 20px rgba(91,82,66,.08);
	transition: background .18s, color .18s, opacity .18s, transform .18s;
}
.pv-cats-nav__btn:hover:not(:disabled) {
	background: var(--pv-green-soft) !important;
	color: var(--pv-green-dark) !important;
	transform: translateY(-1px);
}
.pv-cats-nav__btn:disabled { opacity: .35; cursor: default; }
.pv-cats-nav__btn:focus-visible,
.pv-cat-card:focus-visible,
.pv-cats-showcase:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--pv-green) 30%, transparent);
	outline-offset: 4px;
}
.pv-cats-nav__btn,
.pv-cats-nav__btn:hover:not(:disabled),
.pv-cats-nav__btn:focus-visible {
	border-color: color-mix(in srgb, var(--pv-border) 74%, var(--pv-green) 26%) !important;
}

.pv-cats-showcase {
	display: grid;
	grid-template-columns: repeat(var(--pv-cat-cols), minmax(0, 1fr));
	gap: clamp(12px, 1.7vw, 20px);
	min-width: 0;
}
.pv-cat-card {
	position: relative;
	isolation: isolate;
	display: flex;
	min-width: 0;
	min-height: 250px;
	overflow: hidden;
	border: 1px solid rgba(255,255,255,.22);
	border-radius: 20px;
	background: var(--pv-green-dark);
	color: #fff !important;
	box-shadow: 0 15px 40px rgba(91,82,66,.11);
	transform: translateZ(0);
	transition: transform .25s ease, box-shadow .25s ease;
}
.pv-cat-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 56px rgba(91,82,66,.16);
}
.pv-cat-card__media,
.pv-cat-card__shade {
	position: absolute;
	inset: 0;
}
.pv-cat-card__media { z-index: -2; background: #dfe7dc; }
.pv-cat-card__img {
	width: 100%;
	height: 100% !important;
	object-fit: cover;
	transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .3s ease;
}
.pv-cat-card:hover .pv-cat-card__img { transform: scale(1.045); filter: saturate(1.05); }
.pv-cat-card__shade {
	z-index: 1;
	background:
		linear-gradient(180deg, rgba(255,255,248,.03) 18%, rgba(30,56,34,.52) 100%),
		linear-gradient(90deg, rgba(200,161,74,.18), transparent 72%);
}
.pv-cat-card__placeholder {
	display: grid;
	place-items: center;
	width: 100%;
	height: 100%;
	color: rgba(255,255,255,.65);
	background:
		radial-gradient(circle at 28% 22%, rgba(255,255,255,.16), transparent 24%),
		linear-gradient(145deg, var(--pv-green), var(--pv-green-dark));
}
.pv-cat-card__placeholder svg { width: 74px; height: 74px; }
.pv-cat-card__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-end;
	width: 100%;
	padding: clamp(18px, 2.2vw, 26px);
	z-index: 2;
}
.pv-cat-card__count {
	display: inline-flex;
	margin-bottom: 8px;
	padding: 5px 9px;
	border: 1px solid rgba(255,255,255,.25);
	border-radius: 999px;
	background: rgba(255,255,255,.13);
	font-size: 10px;
	font-weight: 850;
	letter-spacing: .04em;
	backdrop-filter: blur(7px);
}
.pv-cat-card__name {
	color: #fff;
	font-size: clamp(20px, 2vw, 28px);
	font-weight: 850;
	line-height: 1.08;
	letter-spacing: -.025em;
}
.pv-cat-card__desc {
	display: -webkit-box;
	max-width: 400px;
	margin-top: 8px;
	overflow: hidden;
	color: rgba(255,255,255,.78);
	font-size: 12px;
	line-height: 1.45;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.pv-cat-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-top: 14px;
	font-size: 12px;
	font-weight: 850;
}
.pv-cat-card__cta span { transition: transform .18s ease; }
.pv-cat-card:hover .pv-cat-card__cta span { transform: translateX(4px); }

.pv-cats-section--featured .pv-cats-showcase { grid-auto-rows: minmax(118px, 1fr); }
.pv-cats-section--featured .pv-cat-card { min-height: 210px; }
.pv-cats-section--featured .pv-cat-card--hero {
	grid-column: span 2;
	grid-row: span 2;
	min-height: 440px;
}
.pv-cats-section--featured .pv-cat-card--hero .pv-cat-card__content { padding: clamp(24px, 3.5vw, 42px); }
.pv-cats-section--featured .pv-cat-card--hero .pv-cat-card__name { font-size: clamp(32px, 4vw, 50px); }
.pv-cats-section--featured .pv-cat-card--hero .pv-cat-card__desc { font-size: 14px; }

.pv-cats-section--slider .pv-cats-showcase {
	display: flex;
	overflow-x: auto;
	padding: 5px 3px 18px;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}
.pv-cats-section--slider .pv-cats-showcase::-webkit-scrollbar { display: none; }
.pv-cats-section--slider .pv-cat-card {
	flex: 0 0 min(330px, 78vw);
	scroll-snap-align: start;
}

.pv-cats-section--compact .pv-cats-showcase {
	grid-template-columns: repeat(var(--pv-cat-cols), minmax(0, 1fr));
}
.pv-cats-section--compact .pv-cat-card {
	min-height: 118px;
	align-items: center;
	padding: 14px;
	background: #fff;
	color: var(--pv-ink) !important;
	border-color: var(--pv-border);
	box-shadow: 0 8px 26px rgba(36,48,36,.07);
}
.pv-cats-section--compact .pv-cat-card__media {
	position: relative;
	inset: auto;
	z-index: 0;
	width: 86px;
	height: 86px;
	flex: 0 0 86px;
	overflow: hidden;
	border-radius: 16px;
}
.pv-cats-section--compact .pv-cat-card__shade { display: none; }
.pv-cats-section--compact .pv-cat-card__content {
	justify-content: center;
	padding: 0 0 0 14px;
}
.pv-cats-section--compact .pv-cat-card__count { order: 2; margin: 5px 0 0; padding: 0; border: 0; background: none; color: var(--pv-muted); }
.pv-cats-section--compact .pv-cat-card__name { color: var(--pv-ink); font-size: 17px; }
.pv-cats-section--compact .pv-cat-card__desc,
.pv-cats-section--compact .pv-cat-card__cta { display: none; }

.pv-cat-card--all {
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	padding: clamp(22px, 3vw, 32px);
	background:
		radial-gradient(circle at 100% 0%, rgba(200,161,74,.35), transparent 35%),
		linear-gradient(145deg, var(--pv-green), var(--pv-green-dark));
}
.pv-cat-card--all__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	margin-bottom: 18px;
	border-radius: 15px;
	background: rgba(255,255,255,.14);
}
.pv-cat-card--all__icon svg { width: 25px; height: 25px; }
.pv-cat-card--all strong { font-size: 23px; }
.pv-cat-card--all > span:not(.pv-cat-card--all__icon) { max-width: 230px; margin-top: 7px; color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.45; }
.pv-cat-card--all em { margin-top: 18px; font-size: 28px; font-style: normal; }
.pv-cats-section--compact .pv-cat-card--all { min-height: 118px; padding: 20px; color: #fff !important; }
.pv-cats-section--compact .pv-cat-card--all__icon { display: none; }
.pv-cats-section--compact .pv-cat-card--all strong { font-size: 17px; }
.pv-cats-section--compact .pv-cat-card--all > span { display: none; }
.pv-cats-section--compact .pv-cat-card--all em { margin-top: 8px; font-size: 22px; }

.pv-cats-progress {
	display: none;
	height: 3px;
	margin-top: 13px;
	overflow: hidden;
	border-radius: 999px;
	background: rgba(46,125,50,.12);
}
.pv-cats-progress span {
	display: block;
	width: 25%;
	height: 100%;
	border-radius: inherit;
	background: var(--pv-green);
	transform-origin: left center;
	transition: transform .12s linear;
}
.pv-cats-section--slider .pv-cats-progress { display: block; }

@media (max-width: 1024px) {
	.pv-cats-section--featured .pv-cats-showcase { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.pv-cats-section--featured .pv-cat-card--hero { grid-column: span 2; }
}
@media (max-width: 760px) {
	.pv-cats-section { padding: 24px 16px; border-radius: 20px; }
	.pv-cats-head { flex-direction: column; align-items: stretch; gap: 12px; }
	.pv-cats-head__subtitle { font-size: 14px; }
	.pv-cats-head__all { display: none; }
	.pv-cats-head__actions { justify-content: flex-end; }
	.pv-cats-mobile--slider .pv-cats-nav { display: flex; }
	.pv-cats-mobile--slider .pv-cats-showcase,
	.pv-cats-mobile--slider.pv-cats-section--featured .pv-cats-showcase,
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cats-showcase {
		display: flex;
		grid-template-columns: none;
		grid-auto-rows: auto;
		gap: 13px;
		overflow-x: auto;
		margin-right: -16px;
		padding: 4px 16px 15px 2px;
		scroll-snap-type: x mandatory;
		scroll-padding-left: 2px;
		scroll-behavior: smooth;
		scrollbar-width: none;
	}
	.pv-cats-mobile--slider .pv-cats-showcase::-webkit-scrollbar { display: none; }
	.pv-cats-mobile--slider .pv-cat-card,
	.pv-cats-mobile--slider .pv-cat-card--hero,
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cat-card {
		grid-column: auto;
		grid-row: auto;
		flex: 0 0 min(78vw, 310px);
		min-height: 360px;
		padding: 0;
		scroll-snap-align: start;
		color: #fff !important;
		background: var(--pv-green-dark);
	}
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cat-card__media {
		position: absolute;
		inset: 0;
		width: auto;
		height: auto;
		border-radius: 0;
	}
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cat-card__shade { display: block; }
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cat-card__content {
		justify-content: flex-end;
		padding: 22px;
	}
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cat-card__name { color: #fff; font-size: 25px; }
	.pv-cats-mobile--slider.pv-cats-section--compact .pv-cat-card__count {
		order: 0;
		margin-bottom: 8px;
		padding: 5px 9px;
		border: 1px solid rgba(255,255,255,.25);
		background: rgba(255,255,255,.13);
		color: #fff;
	}
	.pv-cats-mobile--slider .pv-cat-card--all {
		padding: 24px;
		align-items: flex-start;
		justify-content: center;
	}
	.pv-cats-mobile--slider .pv-cats-nav__btn {
		background: var(--pv-cream) !important;
		color: var(--pv-green-dark) !important;
		border-color: color-mix(in srgb, var(--pv-border) 78%, var(--pv-green) 22%) !important;
		box-shadow: 0 6px 18px rgba(91,82,66,.08);
	}
	.pv-cats-mobile--slider .pv-cats-nav__btn:hover:not(:disabled) {
		background: var(--pv-green-soft) !important;
		color: var(--pv-green-dark) !important;
	}
	.pv-cats-mobile--slider .pv-cats-nav__btn:focus-visible {
		box-shadow: 0 0 0 3px color-mix(in srgb, var(--pv-green) 26%, transparent);
	}
	.pv-cats-mobile--slider .pv-cats-progress { display: block; }
	.pv-cats-mobile--grid .pv-cats-showcase { grid-template-columns: 1fr 1fr; }
	.pv-cats-mobile--grid .pv-cat-card,
	.pv-cats-mobile--grid .pv-cat-card--hero { grid-column: auto; grid-row: auto; min-height: 270px; }
}
@media (max-width: 480px) {
	.pv-cats-head__title { font-size: 31px; }
	.pv-cats-head__actions { gap: 6px; }
	.pv-cats-nav { gap: 6px; }
	.pv-cats-nav__btn { width: 40px; height: 40px; }
	.pv-cats-mobile--grid .pv-cats-showcase { grid-template-columns: 1fr; }
}

/* ============================================================
   ÜRÜN ARŞİVİ
   ============================================================ */
.pv-archive {
	max-width: 1280px;
	margin-inline: auto;
	color: var(--pv-ink);
}
.pv-archive__head {
	display: flex;
	justify-content: space-between;
	align-items: end;
	gap: 24px;
	margin-bottom: 28px;
	padding: clamp(24px, 4vw, 44px);
	overflow: hidden;
	border: 1px solid var(--pv-border);
	border-radius: 26px;
	background:
		radial-gradient(circle at 92% 10%, rgba(200,161,74,.18), transparent 30%),
		linear-gradient(135deg, #f7f4ed, #fff);
}
.pv-archive__eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--pv-green);
	font-size: 11px;
	font-weight: 850;
	letter-spacing: .13em;
	text-transform: uppercase;
}
.pv-archive__head h1 {
	margin: 0;
	color: var(--pv-green-dark);
	font-size: clamp(34px, 5vw, 58px);
	line-height: 1;
	letter-spacing: -.045em;
}
.pv-archive__head p {
	max-width: 660px;
	margin: 13px 0 0;
	color: var(--pv-muted);
	font-size: 15px;
	line-height: 1.6;
}
.pv-archive__layout {
	display: grid;
	grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
	align-items: start;
	gap: clamp(22px, 3vw, 38px);
}
.pv-archive__layout--full { grid-template-columns: 1fr; }
.pv-archive__sidebar {
	position: sticky;
	top: 24px;
	padding: 20px;
	border: 1px solid var(--pv-border);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 12px 38px rgba(36,48,36,.07);
}
.pv-archive__sidebar-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 6px;
	font-size: 18px;
}
.pv-archive__sidebar-head button {
	display: none;
	width: 40px;
	height: 40px;
	padding: 10px;
	border: 0;
	border-radius: 50%;
	background: var(--pv-cream);
	color: var(--pv-ink);
}
.pv-archive__sidebar-head svg { width: 100%; height: 100%; }
.pv-filter-block {
	padding: 18px 0;
	border-bottom: 1px solid var(--pv-border);
}
.pv-filter-title,
.pv-filter-search > label {
	display: block;
	margin-bottom: 11px;
	color: var(--pv-ink);
	font-size: 12px;
	font-weight: 850;
	letter-spacing: .025em;
}
.pv-filter-search > div { position: relative; }
.pv-filter-search input,
.pv-price-filter input {
	width: 100%;
	min-height: 45px;
	border: 1px solid var(--pv-border);
	border-radius: 14px;
	background: #fff;
	color: var(--pv-ink);
	font: inherit;
	outline: none;
	transition: border-color .18s ease, box-shadow .18s ease;
}
.pv-archive .pv-filter-search input.js-pv-archive-search {
	border-radius: 16px !important;
}
.pv-filter-search input { padding: 0 42px 0 13px; }
.pv-filter-search div > span {
	position: absolute;
	top: 50%;
	right: 14px;
	color: var(--pv-green);
	font-size: 22px;
	transform: translateY(-54%);
	pointer-events: none;
}
.pv-filter-search input:focus,
.pv-price-filter input:focus {
	border-color: var(--pv-green);
	box-shadow: 0 0 0 3px rgba(46,125,50,.1);
}
.pv-archive-cats,
.pv-archive-cats ul { margin: 0; padding: 0; list-style: none; }
.pv-archive-cats a,
.pv-archive-cats__all {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 38px;
	padding: 7px 9px;
	border-radius: 9px;
	color: var(--pv-muted);
	font-size: 13px;
	font-weight: 650;
	transition: color .16s ease, background .16s ease;
}
.pv-archive-cats a:hover,
.pv-archive-cats__all:hover,
.pv-archive-cats a.is-active,
.pv-archive-cats__all.is-active {
	background: var(--pv-green-soft);
	color: var(--pv-green-dark);
}
.pv-archive-cats a.is-active,
.pv-archive-cats__all.is-active { font-weight: 850; }
.pv-archive-cats small { color: #98a098; font-size: 10px; }
.pv-archive-cats--child { margin-left: 10px !important; padding-left: 9px !important; border-left: 1px solid var(--pv-border); }
.pv-price-filter { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 7px; }
.pv-price-filter label span { display: block; margin-bottom: 5px; color: var(--pv-muted); font-size: 10px; }
.pv-price-filter input { min-width: 0; padding: 0 9px; }
.pv-price-filter i { padding-bottom: 13px; color: var(--pv-muted); font-style: normal; }
.pv-filter-checks { display: grid; gap: 12px; border-bottom: 0; }
.pv-filter-checks label { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 13px; font-weight: 700; }
.pv-filter-checks input { width: 18px; height: 18px; margin: 0; accent-color: var(--pv-green); }
.pv-archive__sidebar-actions { display: flex; align-items: center; gap: 10px; padding-top: 12px; }
.pv-archive__sidebar-actions .pv-btn { display: none; flex: 1; }
.pv-filter-clear {
	appearance: none;
	-webkit-appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 10px 16px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent);
	border-radius: 12px;
	background: var(--pv-cream);
	color: var(--pv-green-dark);
	font-size: 13px;
	font-weight: 800;
	cursor: pointer;
	box-shadow: 0 1px 0 rgba(36,48,36,.03);
	transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.pv-archive .pv-filter-clear,
.pv-archive .pv-filter-clear:hover,
.pv-archive .pv-filter-clear:focus,
.pv-archive .pv-filter-clear:focus-visible,
.pv-archive .pv-filter-clear:active {
	border-color: color-mix(in srgb, var(--pv-border) 76%, var(--pv-green) 24%) !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
	box-shadow: none !important;
	outline: none !important;
}
.pv-filter-clear:hover {
	border-color: var(--pv-green);
	background: var(--pv-green-soft);
	color: var(--pv-green-dark);
	transform: translateY(-1px);
}
.pv-archive__main { min-width: 0; }
.pv-archive__toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	min-height: 50px;
	margin-bottom: 14px;
	padding-bottom: 12px;
	border-bottom: 1px solid var(--pv-border);
	color: var(--pv-muted);
	font-size: 13px;
}
.pv-archive__toolbar strong { color: var(--pv-ink); font-size: 16px; }
.pv-archive__toolbar label { display: flex; align-items: center; gap: 8px; font-weight: 700; }
.pv-archive__toolbar select,
.pv-archive__mobile-bar select {
	min-height: 42px;
	padding: 0 34px 0 12px;
	border: 1px solid var(--pv-border);
	border-radius: 11px;
	background-color: #fff;
	color: var(--pv-ink);
	font: inherit;
	font-weight: 700;
}
.pv-archive .pv-filter-block {
	padding: 18px 0;
	border-top: 1px solid color-mix(in srgb, var(--pv-border) 88%, transparent);
}
.pv-archive .pv-filter-block:first-child {
	padding-top: 0;
	border-top: 0;
}
.pv-archive .pv-filter-title {
	margin: 0 0 14px;
	color: var(--pv-ink);
	font-size: 18px;
	font-weight: 850;
	letter-spacing: -.01em;
}
.pv-archive .pv-filter-title small,
.pv-archive .pv-filter-title span {
	color: var(--pv-muted);
	font-weight: 700;
}
.pv-archive .pv-filter-block label {
	color: var(--pv-ink);
}
.pv-archive .pv-price-filter {
	gap: 10px;
}
.pv-archive .pv-price-filter label {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.pv-archive .pv-price-filter input {
	min-height: 48px;
	padding: 0 14px;
	border: 1px solid var(--pv-border);
	border-radius: 14px;
	background: #fff;
	color: var(--pv-ink);
	font: inherit;
	font-weight: 700;
	box-shadow: none;
	appearance: none;
	-webkit-appearance: none;
}
.pv-archive .pv-price-filter input:focus {
	border-color: var(--pv-green);
	outline: none;
	box-shadow: 0 0 0 3px var(--pv-green-soft);
}
.pv-archive .pv-price-filter i {
	padding-bottom: 14px;
	color: var(--pv-muted);
	font-style: normal;
}
.pv-archive .pv-filter-checks {
	gap: 10px;
}
.pv-archive .pv-filter-checks label {
	padding: 10px 12px;
	border: 1px solid color-mix(in srgb, var(--pv-border) 82%, transparent);
	border-radius: 14px;
	background: var(--pv-cream);
	transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.pv-archive .pv-filter-checks label:hover {
	border-color: var(--pv-green);
	background: var(--pv-green-soft);
	transform: translateY(-1px);
}
.pv-archive .pv-filter-checks input {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: var(--pv-green);
}
.pv-archive .pv-filter-checks span {
	line-height: 1.2;
}
.pv-archive__chips {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
	margin-bottom: 15px;
}
.pv-archive__chips button {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	min-height: 32px;
	padding: 5px 10px;
	border: 1px solid rgba(46,125,50,.18);
	border-radius: 999px;
	background: var(--pv-green-soft);
	color: var(--pv-green-dark);
	font-size: 11px;
	font-weight: 750;
	cursor: pointer;
}
.pv-archive .pv-grid { min-width: 0; transition: opacity .18s ease; }
.pv-archive .pv-card,
.pv-archive .pv-card__body,
.pv-archive .pv-card__foot { min-width: 0; }
.pv-archive .pv-grid.is-refreshing { opacity: .35; pointer-events: none; }
.pv-archive__empty {
	padding: 70px 20px;
	text-align: center;
	border: 1px dashed var(--pv-border);
	border-radius: 20px;
	background: var(--pv-cream);
}
.pv-archive__empty > span {
	display: inline-grid;
	place-items: center;
	width: 58px;
	height: 58px;
	border-radius: 18px;
	background: var(--pv-green-soft);
	color: var(--pv-green);
}
.pv-archive__empty svg { width: 30px; height: 30px; }
.pv-archive__empty h2 { margin: 15px 0 7px; font-size: 21px; }
.pv-archive__empty p { margin: 0 0 18px; color: var(--pv-muted); }
.pv-archive__more { display: flex; justify-content: center; padding-top: 28px; }
.pv-archive__more .pv-btn { min-width: 230px; }

/* Archive için buton dili */
.pv-archive .pv-btn--ghost {
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent);
	background: var(--pv-cream);
	color: var(--pv-green-dark);
}
.pv-archive .pv-btn--ghost:hover {
	border-color: var(--pv-green);
	background: var(--pv-green-soft);
	color: var(--pv-green-dark);
}
.pv-archive__mobile-bar { display: none; }
.pv-archive__shade { display: none; }

@media (max-width: 900px) {
	.pv-archive__head { margin-bottom: 16px; border-radius: 20px; }
	.pv-archive__layout { display: block; }
	.pv-archive__mobile-bar {
		position: sticky;
		top: 8px;
		z-index: 35;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 10px;
		margin-bottom: 18px;
		padding: 10px;
		border: 1px solid var(--pv-border);
		border-radius: 18px;
		background: rgba(255,255,255,.94);
		box-shadow: 0 10px 30px rgba(36,48,36,.1);
		backdrop-filter: blur(12px);
	}
	.pv-archive-filter-btn {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-height: 44px;
		padding: 0 14px;
		border: 1px solid var(--pv-green-dark) !important;
		border-radius: 14px;
		background: var(--pv-green) !important;
		color: #fff !important;
		font: inherit;
		font-weight: 800;
		box-shadow: none;
		outline: none;
		appearance: none;
		-webkit-appearance: none;
		background-clip: padding-box;
	}
	.pv-archive-filter-btn:hover,
	.pv-archive-filter-btn:focus-visible,
	.pv-archive-filter-btn:active {
		border-color: var(--pv-green-dark) !important;
		background: var(--pv-green) !important;
		color: #fff !important;
		box-shadow: none;
		outline: none;
	}
	.pv-archive-filter-btn:focus-visible {
		box-shadow: 0 0 0 3px color-mix(in srgb, var(--pv-green) 26%, transparent);
	}
	.pv-archive-filter-btn,
	.pv-archive-filter-btn * {
		text-shadow: none;
	}
	.pv-archive-filter-btn small {
		display: inline-grid;
		place-items: center;
		min-width: 20px;
		height: 20px;
		padding: 0 5px;
		border-radius: 999px;
		background: #fff;
		color: var(--pv-green-dark);
	}
	.pv-archive__mobile-bar label { margin-left: auto; }
	.pv-archive__toolbar label { display: none; }
	.pv-archive__sidebar {
		position: fixed;
		z-index: 9999;
		inset: 0 auto 0 0;
		width: min(390px, 90vw);
		max-height: 100dvh;
		overflow-y: auto;
		border: 0;
		border-radius: 0 22px 22px 0;
		transform: translateX(-105%);
		transition: transform .22s ease;
	}
	.pv-archive__sidebar.is-open { transform: translateX(0); }
	.pv-archive__sidebar-head {
		position: sticky;
		top: -20px;
		z-index: 2;
		margin: -20px -20px 6px;
		padding: 17px 20px 12px;
		background: #fff;
		border-bottom: 1px solid var(--pv-border);
	}
	.pv-archive__sidebar-head button { display: inline-flex; cursor: pointer; }
	.pv-archive__sidebar-actions {
		position: sticky;
		bottom: -20px;
		margin: 8px -20px -20px;
		padding: 13px 20px calc(13px + env(safe-area-inset-bottom));
		background: #fff;
		border-top: 1px solid var(--pv-border);
	}
	.pv-archive__sidebar-actions .pv-btn { display: inline-flex; }
	.pv-archive__sidebar-actions .pv-filter-clear,
	.pv-archive__sidebar-actions .pv-btn {
		flex: 1 1 0;
		min-height: 44px;
		border-radius: 14px;
	}
	.pv-archive__shade {
		position: fixed;
		z-index: 9998;
		inset: 0;
		display: block;
		background: rgba(12,25,17,.5);
		backdrop-filter: blur(2px);
	}
}
@media (max-width: 560px) {
	.pv-archive__head { padding: 24px 20px; }
	.pv-archive__head h1 { font-size: 36px; }
	.pv-archive__head p { font-size: 13px; }
	.pv-archive__mobile-bar select { max-width: 160px; }
	.pv-archive__toolbar { min-height: 40px; margin-bottom: 10px; }
	.pv-archive .pv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
	.pv-archive .pv-card__desc,
	.pv-archive .pv-card__rating { display: none; }
	.pv-archive .pv-card__title { font-size: 13px; }
	.pv-archive .pv-card__price { font-size: 14px; }
	.pv-archive .pv-card__foot { flex-wrap: wrap; }
	.pv-archive .pv-card__cta { max-width: 100%; }
}
@media (prefers-reduced-motion: reduce) {
	.pv-archive__sidebar,
	.pv-archive .pv-grid { transition: none; }
}

/* ============================================================
   V1.6 — TEKİL ÜRÜN UI/UX İYİLEŞTİRMELERİ
   ============================================================ */

/* Breadcrumb: Mağaza › kategori yolu */
.pv-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 10px; font-size: 12px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; color: var(--pv-muted); }
.pv-crumbs a { color: var(--pv-green); }
.pv-crumbs a:hover { text-decoration: underline; }

/* Fiyat hiyerarşisi: eski fiyat küçük ve silik, yeni fiyat odak */
.pv-single__price del { font-size: 16px; opacity: .55; font-weight: 500; }
.pv-single__price ins { color: var(--pv-green-dark); }
.pv-single__unit { margin: 0 0 6px; color: var(--pv-muted); font-size: 13px; font-weight: 600; }

/* Seçim durumu satırı: "250 g seçili" */
.pv-single__selected { display: inline-flex; align-items: center; gap: 6px; width: fit-content; margin: 0 0 10px; padding: 6px 12px; border-radius: 999px; background: var(--pv-green-soft); color: var(--pv-green-dark); font-size: 13px; font-weight: 800; }

/* Stok azaldı vurgusu + teslimat beklentisi satırı */
.pv-single__stock.is-low { color: #B45309; }
.pv-single__delivery { display: flex; align-items: center; gap: 8px; margin: -8px 0 16px; color: var(--pv-ink); font-size: 13px; font-weight: 600; }
.pv-single__delivery svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--pv-green); }

/* Tek ana CTA: ikinci aksiyon daha sakin ama görünür */
.pv-buy-now--quiet {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: fit-content;
	min-height: 44px;
	margin: 0 0 20px;
	padding: 10px 16px;
	border: 1px solid var(--pv-border);
	border-radius: 14px;
	background: var(--pv-cream, #F7F4ED);
	color: var(--pv-green-dark);
	font: inherit;
	font-size: 14px;
	font-weight: 800;
	cursor: pointer;
	transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.pv-buy-now--quiet:hover:not(:disabled) { background: var(--pv-green-soft, #E8F3E9); border-color: var(--pv-green); color: var(--pv-green-dark); transform: translateY(-1px); }
.pv-buy-now--quiet:disabled { opacity: .4; cursor: not-allowed; }
.pv-buy-now--quiet.is-loading { opacity: .6; pointer-events: none; }

/* Sepete eklendi mikro geri bildirimi */
.js-pv-add-single.is-added,
.js-pv-bar-add.is-added { background: var(--pv-green-dark); }

/* Görsel değişiminde yumuşak geçiş (opacity transition mevcut) */
.pv-gallery__img.is-swapping { opacity: 0; }

/* Sekmeli açıklama: Detay / Teslimat & Saklama / Yorumlar */
.pv-tabs__nav { display: flex; gap: 4px; margin-bottom: 20px; border-bottom: 2px solid var(--pv-border); overflow-x: auto; scrollbar-width: none; }
.pv-tabs__nav::-webkit-scrollbar { display: none; }
.pv-tabs__tab { flex-shrink: 0; padding: 12px 18px; margin-bottom: -2px; border: 0; border-bottom: 2.5px solid transparent; background: none; color: var(--pv-muted); font: inherit; font-size: 15px; font-weight: 700; cursor: pointer; transition: color .15s; }
.pv-tabs__tab:hover { color: var(--pv-ink); }
.pv-tabs__tab.is-active { color: var(--pv-green-dark); border-bottom-color: var(--pv-green); }
.pv-tabs__panel { display: none; }
.pv-tabs__panel.is-active { display: block; }

/* Teslimat & saklama listesi */
.pv-care-list { display: grid; gap: 12px; max-width: 720px; margin: 0; padding: 0; list-style: none; }
.pv-care-list li { padding: 12px 14px; border-radius: 12px; background: var(--pv-cream); font-size: 14px; line-height: 1.55; }
.pv-care-list strong { color: var(--pv-green-dark); }

/* Yorumlar */
.pv-reviews-summary { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--pv-border); }
.pv-reviews-summary__score { font-size: 42px; font-weight: 850; line-height: 1; color: var(--pv-green-dark); }
.pv-reviews-summary__meta { display: grid; gap: 4px; color: var(--pv-muted); font-size: 13px; font-weight: 600; }
.pv-reviews { display: grid; gap: 16px; max-width: 760px; margin: 0; padding: 0; list-style: none; }
.pv-review { padding: 16px; border: 1px solid var(--pv-border); border-radius: 14px; background: var(--pv-white); }
.pv-review__head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 8px; }
.pv-review__head strong { font-size: 14px; }
.pv-review__head time { margin-left: auto; color: var(--pv-muted); font-size: 12px; }
.pv-review p { margin: 0; color: #45504a; font-size: 14px; line-height: 1.6; }
.pv-reviews-empty { color: var(--pv-muted); font-size: 14px; }

/* Benzer ürünler */
.pv-related-title { margin: 0 0 18px; font-size: clamp(20px, 2.5vw, 28px); font-weight: 800; letter-spacing: -.02em; }
.pv-related-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
@media (max-width: 992px) { .pv-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

/* Mobil sabit satın alma çubuğu */
.pv-buybar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9990;
	display: none;
	align-items: center;
	gap: 10px;
	padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
	border-top: 1px solid var(--pv-border);
	background: rgba(255,255,255,.96);
	box-shadow: 0 -10px 30px rgba(36,48,36,.12);
	backdrop-filter: blur(10px);
	transform: translateY(105%);
	transition: transform .25s ease;
}
.pv-single.is-oos .pv-buybar { display: none !important; }
.pv-buybar__info { flex: 1; min-width: 0; }
.pv-buybar__price { overflow: hidden; color: var(--pv-green-dark); font-size: 17px; font-weight: 850; white-space: nowrap; text-overflow: ellipsis; }
.pv-buybar__price del { margin-right: 5px; font-size: 12px; font-weight: 500; opacity: .55; }
.pv-buybar__price ins { text-decoration: none; }
.pv-buybar__sel { overflow: hidden; color: var(--pv-muted); font-size: 11.5px; font-weight: 700; white-space: nowrap; text-overflow: ellipsis; }
.pv-buybar__qty {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
	border: 1px solid var(--pv-border);
	border-radius: 12px;
	background: var(--pv-white);
}
.pv-buybar__qty button {
	width: 40px;
	height: 42px;
	border: 0;
	background: none;
	color: var(--pv-green-dark);
	font-size: 19px;
	font-weight: 700;
	cursor: pointer;
}
.pv-buybar__qty span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 34px;
	padding: 0 8px;
	text-align: center;
	font-size: 15px;
	font-weight: 850;
	font-variant-numeric: tabular-nums;
	line-height: 1;
}
.pv-buybar .pv-btn--green { flex-shrink: 0; min-height: 46px; padding-inline: 18px; border-radius: 12px; }
@media (max-width: 992px) {
	.pv-buybar { display: flex; }
	.pv-buybar.is-visible { transform: translateY(0); }
}

/* Mobil ergonomi: daha büyük thumb, ferah dokunma alanları */
@media (max-width: 600px) {
	.pv-gallery__thumb { width: 72px; height: 72px; flex-basis: 72px; border-radius: 14px; }
	.pv-gallery__thumbs { gap: 12px; scroll-snap-type: x mandatory; }
	.pv-buy { gap: 14px; }
	.pv-swatch { min-height: 50px; }
	.pv-var__opts { gap: 10px; }
	.pv-tabs__tab { padding: 12px 14px; font-size: 14px; }
	.pv-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
	.pv-reviews-summary__score { font-size: 34px; }
}

/* ============================================================
   V1.7 — KARGO BÖLGESİ KISITI
   ============================================================ */

/* Tekil ürün: gönderim kapsamı bloğu */
.pv-ship { margin: 0 0 18px; padding: 14px; border: 1px solid var(--pv-border); border-radius: 14px; background: var(--pv-cream); }
.pv-ship__all { display: flex; align-items: center; gap: 8px; margin: 0; color: var(--pv-green-dark); font-size: 13px; font-weight: 700; }
.pv-ship__all svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--pv-green); }
.pv-ship__head { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.pv-ship__head svg { width: 18px; height: 18px; flex: 0 0 18px; color: var(--pv-green); }
.pv-ship__head strong { flex: 1; min-width: 0; font-size: 13px; color: var(--pv-ink); }
.pv-ship__toggle { padding: 2px 0; border: 0; border-bottom: 1px solid currentColor; background: none; color: var(--pv-green-dark); font: inherit; font-size: 12px; font-weight: 700; cursor: pointer; }
.pv-ship__list { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.pv-ship__list li { padding: 4px 10px; border-radius: 999px; background: var(--pv-white); border: 1px solid var(--pv-border); font-size: 12px; font-weight: 600; color: var(--pv-ink); }
.pv-ship__check { margin-top: 12px; padding-top: 12px; border-top: 1px dashed var(--pv-border); }
.pv-ship__check label { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 800; color: var(--pv-muted); text-transform: uppercase; letter-spacing: .04em; }
.js-pv-ship-select { width: 100%; min-height: 44px; padding: 8px 12px; border: 1.5px solid var(--pv-border); border-radius: 11px; background: var(--pv-white); color: var(--pv-ink); font: inherit; font-size: 14px; font-weight: 600; }
.js-pv-ship-select:focus-visible { outline: 3px solid color-mix(in srgb, var(--pv-green) 28%, transparent); outline-offset: 2px; }
.pv-ship__status { margin: 10px 0 0; padding: 8px 12px; border-radius: 10px; font-size: 13px; font-weight: 800; }
.pv-ship__status.is-ok { background: var(--pv-green-soft); color: var(--pv-green-dark); }
.pv-ship__status.is-no { background: #FDE8E8; color: #9B2C2C; }

/* Ödeme sayfası: gönderilemeyen ürün uyarısı (ödeme butonunun üstünde) */
.pv-ship-warning { margin: 0 0 18px; padding: 14px 16px; border: 1.5px solid #E5B4B4; border-radius: 14px; background: #FDF0F0; color: #7C2D2D; }
.pv-ship-warning strong { display: block; margin-bottom: 8px; font-size: 14px; }
.pv-ship-warning ul { margin: 0 0 8px; padding-left: 18px; font-size: 13px; font-weight: 700; }
.pv-ship-warning p { margin: 0; font-size: 13px; line-height: 1.5; }

/* ============================================================
   V1.8 — KARGO ÜCRETİ & ÜCRETSİZ KARGO İLERLEMESİ
   ============================================================ */
.pv-free-ship {
	padding: 12px 14px;
	border-radius: 12px;
	background: var(--pv-green-soft, #E8F3E9);
}
.pv-free-ship__msg {
	margin: 0 0 8px;
	color: var(--pv-green-dark, #1B5E20);
	font-size: 13px;
	font-weight: 700;
	line-height: 1.4;
}
.pv-free-ship__msg .woocommerce-Price-amount { font-weight: 850; }
.pv-free-ship__bar {
	height: 8px;
	border-radius: 999px;
	background: rgba(20, 50, 30, .12);
	overflow: hidden;
}
.pv-free-ship__fill {
	display: block;
	height: 100%;
	width: 0;
	border-radius: 999px;
	background: linear-gradient(90deg, var(--pv-green, #2E7D32), var(--pv-green-dark, #1B5E20));
	transition: width .35s ease;
}
.pv-free-ship.is-done { background: color-mix(in srgb, var(--pv-gold, #C8A14A) 16%, #fff); }
.pv-free-ship.is-done .pv-free-ship__msg { color: #8a6a1f; }
.pv-free-ship.is-done .pv-free-ship__fill { background: linear-gradient(90deg, var(--pv-gold, #C8A14A), #a8843a); }

/* Mini sepet içinde */
.pv-mini__ship { margin: 12px 18px 0; flex-shrink: 0; }

/* Sepet sayfası özetinde */
.pv-cart__summary .pv-free-ship { margin-bottom: 14px; }
.js-pv-cargo.is-free { color: var(--pv-green, #2E7D32); }

/* Ödeme sayfasında (ödeme yöntemlerinin üstünde) */
.pv-free-ship--checkout { margin-bottom: 16px; }

/* ============================================================
   V1.9 — SERTİFİKALAR
   ============================================================ */

/* Home vitrini: [pavli_certificates] */
.pv-certs {
	width: 100%;
	max-width: 1280px;
	margin-inline: auto;
	padding: clamp(22px, 4vw, 52px);
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent);
	border-radius: 28px;
	background:
		radial-gradient(circle at 90% 0%, rgba(200,161,74,.11), transparent 30%),
		linear-gradient(145deg, #fff 0%, var(--pv-cream) 100%);
}
.pv-certs__head { max-width: 720px; margin-bottom: clamp(20px, 3vw, 32px); }
.pv-certs__eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin-bottom: 10px;
	color: var(--pv-green);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .11em;
	text-transform: uppercase;
}
.pv-certs__eyebrow svg { width: 18px; height: 18px; }
.pv-certs__title {
	margin: 0;
	color: var(--pv-ink);
	font-size: clamp(26px, 3.5vw, 42px);
	font-weight: 850;
	line-height: 1.06;
	letter-spacing: -.03em;
}
.pv-certs__subtitle {
	max-width: 620px;
	margin: 10px 0 0;
	color: var(--pv-muted);
	font-size: clamp(14px, 1.5vw, 16px);
	line-height: 1.6;
}
.pv-certs__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 16px;
}
.pv-cert-card {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px;
	border: 1px solid var(--pv-border);
	border-radius: 18px;
	background: var(--pv-white);
	text-decoration: none;
	color: var(--pv-ink);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.pv-cert-card:hover {
	transform: translateY(-3px);
	border-color: var(--pv-gold, #C8A14A);
	box-shadow: 0 14px 38px rgba(36,48,36,.12);
}
a.pv-cert-card:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--pv-green) 28%, transparent);
	outline-offset: 2px;
}
.pv-cert-card__media {
	display: grid;
	place-items: center;
	aspect-ratio: 4 / 3;
	border-radius: 12px;
	background: var(--pv-cream);
	overflow: hidden;
}
.pv-cert-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.pv-cert-card__fallback { color: var(--pv-gold, #C8A14A); }
.pv-cert-card__fallback svg { width: 44px; height: 44px; }
.pv-cert-card__name { font-size: 15px; font-weight: 800; line-height: 1.3; }
.pv-cert-card__cta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-top: auto;
	color: var(--pv-green-dark);
	font-size: 12px;
	font-weight: 800;
}
.pv-cert-card__cta svg { width: 15px; height: 15px; }
a.pv-cert-card:hover .pv-cert-card__cta { color: var(--pv-green); text-decoration: underline; }

/* Tekil ürün: kompakt sertifika şeridi (facts altında) */
.pv-certs-strip { margin: 16px 0 0; padding: 14px 0 0; border-top: 1px solid var(--pv-border); }
.pv-certs-strip > small {
	display: block;
	margin-bottom: 9px;
	color: var(--pv-muted);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: .06em;
}
.pv-certs-strip__items { display: flex; flex-wrap: wrap; gap: 8px; }
.pv-certs-strip__item {
	display: grid;
	place-items: center;
	width: 56px;
	height: 56px;
	border: 1px solid var(--pv-border);
	border-radius: 12px;
	background: var(--pv-white);
	overflow: hidden;
	transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
a.pv-certs-strip__item:hover {
	transform: translateY(-2px);
	border-color: var(--pv-gold, #C8A14A);
	box-shadow: 0 8px 20px rgba(36,48,36,.12);
}
a.pv-certs-strip__item:focus-visible {
	outline: 3px solid color-mix(in srgb, var(--pv-green) 28%, transparent);
	outline-offset: 2px;
}
.pv-certs-strip__item img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
.pv-certs-strip__fallback { color: var(--pv-gold, #C8A14A); display: inline-flex; }
.pv-certs-strip__fallback svg { width: 22px; height: 22px; }

@media (max-width: 600px) {
	.pv-certs { border-radius: 18px; }
	.pv-certs__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
	.pv-cert-card { padding: 12px; border-radius: 14px; }
	.pv-cert-card__name { font-size: 13px; }
}

/* ============================================================
   V1.10 — FOOTER (koyu yeşil premium, site paletine uyarlı)
   ============================================================ */
.pv-ft, .pv-ft *, .pv-ft *::before, .pv-ft *::after { box-sizing: border-box; }
.pv-ft {
	--ft-cream: var(--pv-cream, #F7F4ED);
	--ft-muted: rgba(247,244,237,.55);
	--ft-gold: var(--pv-gold, #C8A14A);
	--ft-green: #173A26;
	--ft-border: rgba(200,161,74,.22);
	position: relative;
	overflow: hidden;
	margin: 0;
	background: #0B130E;
	color: var(--ft-cream);
	font-family: inherit;
}
.pv-ft::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		radial-gradient(circle at 12% 18%, rgba(27,94,32,.32), transparent 34%),
		radial-gradient(circle at 88% 65%, rgba(200,161,74,.13), transparent 30%),
		linear-gradient(180deg, #101B13 0%, #070D09 100%);
	pointer-events: none;
}
.pv-ft::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
	background-size: 56px 56px;
	opacity: .55;
	pointer-events: none;
}

/* Üst güven barı */
.pv-ft-trust {
	position: relative;
	z-index: 2;
	border-top: 1px solid var(--ft-border);
	border-bottom: 1px solid var(--ft-border);
	background: rgba(255,255,255,.025);
	backdrop-filter: blur(10px);
}
.pv-ft-trust-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 18px 28px;
	display: grid;
	grid-template-columns: repeat(var(--pv-ft-trust-cols, 4), 1fr);
	gap: 14px;
}
.pv-ft-trust-item {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 54px;
	padding: 12px 14px;
	border: 1px solid rgba(200,161,74,.16);
	border-radius: 16px;
	background: rgba(255,255,255,.035);
}
.pv-ft-trust-ico {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(27,94,32,.42);
	color: var(--ft-gold);
	font-size: 17px;
	flex-shrink: 0;
}
.pv-ft-trust-title { font-size: 13.5px; font-weight: 800; color: #fff; line-height: 1.2; }
.pv-ft-trust-desc { font-size: 11.5px; color: var(--ft-muted); margin-top: 3px; }

/* Ana grid */
.pv-ft-main {
	position: relative;
	z-index: 2;
	max-width: 1240px;
	margin: 0 auto;
	padding: 66px 28px 48px;
	display: grid;
	grid-template-columns: 1.55fr 1fr 1fr 1.35fr;
	gap: 44px;
}
.pv-ft-title {
	display: flex;
	align-items: center;
	gap: 10px;
	margin: 0 0 20px;
	color: var(--ft-gold);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .12em;
	text-transform: uppercase;
}
.pv-ft-title::after {
	content: "";
	flex: 1;
	height: 1px;
	background: linear-gradient(90deg, rgba(200,161,74,.35), transparent);
}

/* Marka */
.pv-ft-logo { display: flex; align-items: center; margin-bottom: 18px; }
.pv-ft-logo img { max-height: 72px; width: auto; display: block; object-fit: contain; }
.pv-ft-desc {
	max-width: 360px;
	margin: 0 0 22px;
	color: rgba(247,244,237,.66);
	font-size: 14px;
	line-height: 1.75;
}
.pv-ft-slogan {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 18px;
	padding: 9px 13px;
	border-radius: 999px;
	border: 1px solid rgba(200,161,74,.24);
	background: rgba(27,94,32,.36);
	color: var(--ft-gold);
	font-size: 12px;
	font-weight: 800;
}
.pv-ft-socials { display: flex; gap: 9px; margin-bottom: 24px; }
.pv-ft-social {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid rgba(200,161,74,.2);
	background: rgba(255,255,255,.04);
	display: flex;
	align-items: center;
	justify-content: center;
	color: rgba(247,244,237,.65);
	text-decoration: none;
	transition: .22s ease;
}
.pv-ft-social:hover {
	background: var(--pv-green, #2E7D32);
	border-color: var(--ft-gold);
	color: #fff;
	transform: translateY(-3px);
}
.pv-ft-social svg { width: 16px; height: 16px; }

/* Sertifika rozetleri */
.pv-ft-certs { display: flex; flex-wrap: wrap; gap: 8px; }
.pv-ft-cert {
	padding: 6px 11px;
	border-radius: 999px;
	border: 1px solid rgba(200,161,74,.24);
	background: rgba(255,255,255,.035);
	color: rgba(247,244,237,.68);
	font-size: 11.5px;
	font-weight: 800;
	text-decoration: none;
	transition: .18s ease;
}
a.pv-ft-cert:hover { border-color: var(--ft-gold); color: var(--ft-gold); }

/* Linkler */
.pv-ft-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.pv-ft-links a {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 7px 0;
	color: rgba(247,244,237,.62);
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	transition: .18s ease;
}
.pv-ft-links a::before {
	content: "";
	width: 0;
	height: 2px;
	border-radius: 20px;
	background: var(--ft-gold);
	transition: .18s ease;
}
.pv-ft-links a:hover { color: #fff; transform: translateX(3px); }
.pv-ft-links a:hover::before { width: 12px; }

/* İletişim */
.pv-ft-contact { display: flex; flex-direction: column; gap: 16px; }
.pv-ft-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.pv-ft-contact-ico {
	width: 38px;
	height: 38px;
	border-radius: 12px;
	border: 1px solid rgba(200,161,74,.2);
	background: rgba(27,94,32,.4);
	color: var(--ft-gold);
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.pv-ft-contact-label {
	margin-bottom: 4px;
	color: rgba(200,161,74,.82);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.pv-ft-contact-value { color: rgba(247,244,237,.72); font-size: 14px; line-height: 1.55; }
.pv-ft-contact-value a { color: inherit; text-decoration: none; }
.pv-ft-contact-value a:hover { color: #fff; }
.pv-ft-whatsapp {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 6px;
	padding: 12px 18px;
	border-radius: 14px;
	background: #159447;
	color: #fff;
	font-weight: 900;
	font-size: 14px;
	text-decoration: none;
	transition: .22s ease;
}
.pv-ft-whatsapp:hover { background: #0f7d3a; transform: translateY(-2px); color: #fff; }

/* Alt bar */
.pv-ft-bottom {
	position: relative;
	z-index: 2;
	border-top: 1px solid rgba(200,161,74,.16);
	background: rgba(0,0,0,.22);
}
.pv-ft-bottom-inner {
	max-width: 1240px;
	margin: 0 auto;
	padding: 18px 28px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 18px;
	flex-wrap: wrap;
}
.pv-ft-copy { color: rgba(247,244,237,.42); font-size: 12.5px; }
.pv-ft-copy a { color: var(--ft-gold); text-decoration: none; font-weight: 800; }
.pv-ft-policy { display: flex; gap: 18px; flex-wrap: wrap; }
.pv-ft-policy a {
	color: rgba(247,244,237,.42);
	text-decoration: none;
	font-size: 12.5px;
	transition: .18s ease;
}
.pv-ft-policy a:hover { color: var(--ft-gold); }

@media (max-width: 1100px) {
	.pv-ft-trust-inner { grid-template-columns: repeat(2, 1fr); }
	.pv-ft-main { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 680px) {
	.pv-ft-trust-inner { grid-template-columns: 1fr; padding: 16px 18px; }
	.pv-ft-main { grid-template-columns: 1fr; padding: 48px 20px 38px; gap: 34px; }
	.pv-ft-bottom-inner { flex-direction: column; text-align: center; }
	.pv-ft-policy { justify-content: center; }
	.pv-ft-logo img { max-height: 62px; }
}

/* Contact page */
.pv-ct {
	background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
	color: #141414;
	font-family: inherit;
}
.pv-ct *, .pv-ct *::before, .pv-ct *::after { box-sizing: border-box; }
.pv-ct-hero {
	position: relative;
	overflow: hidden;
	padding: 84px 28px 74px;
	background:
		radial-gradient(circle at 12% 22%, rgba(46,125,50,.18), transparent 32%),
		radial-gradient(circle at 90% 74%, rgba(200,161,74,.14), transparent 30%),
		linear-gradient(135deg, #0f2419 0%, #163425 52%, #214833 100%);
}
.pv-ct-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.42) 52%, rgba(0,0,0,.12) 100%),
		linear-gradient(135deg, rgba(255,255,255,.08) 0, rgba(255,255,255,0) 46%);
	mix-blend-mode: multiply;
	opacity: .85;
	pointer-events: none;
}
.pv-ct-hero__inner,
.pv-ct-body {
	max-width: 1240px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.pv-ct-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(201,161,93,.28);
	background: rgba(255,255,255,.08);
	color: var(--pv-gold, #C8A14A);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.pv-ct-kicker::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
	box-shadow: 0 0 14px rgba(201,161,93,.85);
}
.pv-ct-title {
	max-width: 780px;
	color: #fff;
	font-size: clamp(36px, 5vw, 68px);
	line-height: 1.03;
	font-weight: 900;
	letter-spacing: -.045em;
	margin: 0 0 18px;
}
.pv-ct-title span { color: var(--pv-gold, #C8A14A); }
.pv-ct-lead {
	max-width: 600px;
	color: rgba(248,241,231,.78);
	font-size: 17px;
	line-height: 1.8;
}
.pv-ct-body {
	padding: 58px 28px 92px;
	display: grid;
	grid-template-columns: minmax(0, 1fr) 388px;
	gap: 30px;
	align-items: start;
}
.pv-ct-panel,
.pv-ct-card {
	background: #fff;
	border: 1px solid rgba(200,161,74,.22);
	border-radius: 26px;
	box-shadow: 0 18px 55px rgba(0,0,0,.06);
	overflow: hidden;
}
.pv-ct-panel__head,
.pv-ct-card__head {
	padding: 22px 24px 18px;
	display: flex;
	align-items: center;
	gap: 14px;
	border-bottom: 1px solid rgba(200,161,74,.16);
	background: linear-gradient(180deg, #fff, #fffaf2);
}
.pv-ct-panel__ico,
.pv-ct-card__ico {
	width: 46px;
	height: 46px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 20px;
	background: linear-gradient(135deg, #1f5a43, #2e7d32);
	color: #fff;
}
.pv-ct-card__ico {
	background: rgba(122,17,17,.1);
	color: var(--pv-green-dark, #1B5E20);
}
.pv-ct-panel__eyebrow,
.pv-ct-card__eyebrow {
	color: var(--pv-gold, #C8A14A);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.pv-ct-panel__title,
.pv-ct-card__title {
	margin-top: 3px;
	color: #111;
	font-size: 18px;
	font-weight: 900;
	letter-spacing: -.03em;
}
.pv-ct-form {
	padding: 26px 24px 28px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.pv-ct-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}
.pv-ct-field {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.pv-ct-field > span {
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: #221a17;
}
.pv-ct-field em {
	font-style: normal;
	color: var(--pv-green-dark, #1B5E20);
}
.pv-ct-field input,
.pv-ct-field select,
.pv-ct-field textarea {
	width: 100%;
	border: 1.5px solid rgba(200,161,74,.23);
	border-radius: 15px;
	padding: 13px 14px;
	background: #fffdf8;
	color: #111;
	font: inherit;
	font-size: 14.5px;
	line-height: 1.55;
	outline: none;
	transition: .2s ease;
}
.pv-ct-field textarea { resize: vertical; min-height: 150px; }
.pv-ct-field input:focus,
.pv-ct-field select:focus,
.pv-ct-field textarea:focus,
.pv-ct-field .is-error {
	border-color: var(--pv-green-dark, #1B5E20);
	box-shadow: 0 0 0 4px rgba(31,90,67,.08);
	background: #fff;
}
.pv-ct-field select {
	appearance: none;
	background-image: linear-gradient(45deg, transparent 50%, #8d8d8d 50%), linear-gradient(135deg, #8d8d8d 50%, transparent 50%);
	background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	padding-right: 42px;
}
.pv-ct-alert {
	border-radius: 15px;
	padding: 13px 15px;
	font-size: 14px;
	font-weight: 800;
}
.pv-ct-alert.is-success {
	background: rgba(21,148,71,.1);
	color: #159447;
	border: 1px solid rgba(21,148,71,.22);
}
.pv-ct-alert.is-error {
	background: rgba(122,17,17,.08);
	color: #7a1111;
	border: 1px solid rgba(122,17,17,.18);
}
.pv-ct-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 15px 20px;
	border: none;
	border-radius: 15px;
	background: linear-gradient(135deg, var(--pv-green-dark, #1B5E20), var(--pv-green, #2E7D32));
	color: #fff;
	font: inherit;
	font-size: 15px;
	font-weight: 900;
	box-shadow: 0 16px 32px rgba(31,90,67,.18);
	cursor: pointer;
	transition: .22s ease;
}
.pv-ct-submit:hover {
	transform: translateY(-2px);
	box-shadow: 0 20px 38px rgba(31,90,67,.22);
}
.pv-ct-submit:disabled {
	opacity: .72;
	cursor: not-allowed;
	transform: none;
}
.pv-ct-submit__ico {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: rgba(255,255,255,.12);
}
.pv-ct-side {
	display: flex;
	flex-direction: column;
	gap: 18px;
}
.pv-ct-card__body {
	padding: 18px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.pv-ct-rowinfo {
	display: flex;
	align-items: flex-start;
	gap: 12px;
}
.pv-ct-rowinfo__ico {
	width: 34px;
	height: 34px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	background: #fff8ef;
	border: 1px solid rgba(200,161,74,.2);
}
.pv-ct-rowinfo__label {
	margin-bottom: 4px;
	color: var(--pv-gold, #C8A14A);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .08em;
	text-transform: uppercase;
}
.pv-ct-rowinfo__value {
	color: #211a17;
	font-size: 14px;
	line-height: 1.6;
	font-weight: 700;
}
.pv-ct-rowinfo__value a {
	color: inherit;
	text-decoration: none;
}
.pv-ct-rowinfo__value a:hover {
	color: var(--pv-green-dark, #1B5E20);
}
.pv-ct-wa {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-top: 4px;
	padding: 13px 16px;
	border-radius: 15px;
	background: #159447;
	color: #fff;
	font-weight: 900;
	text-decoration: none;
	transition: .22s ease;
}
.pv-ct-wa:hover {
	background: #0f7d3a;
	transform: translateY(-2px);
}
.pv-ct-hours {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.pv-ct-hour {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	padding-bottom: 8px;
	border-bottom: 1px dashed rgba(200,161,74,.24);
	color: #5f5650;
	font-size: 13.5px;
}
.pv-ct-hour:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}
.pv-ct-hour b { color: #111; }
.pv-ct-map {
	width: 100%;
	height: 240px;
	border: 0;
	display: block;
}
.pv-ct-social {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 10px;
}
.pv-ct-social a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 10px;
	border-radius: 14px;
	border: 1px solid rgba(200,161,74,.22);
	background: #fffdf8;
	color: #221a17;
	font-size: 13px;
	font-weight: 900;
	text-decoration: none;
	transition: .2s ease;
}
.pv-ct-social a:hover {
	background: var(--pv-green-dark, #1B5E20);
	border-color: var(--pv-green-dark, #1B5E20);
	color: #fff;
}

@media (max-width: 940px) {
	.pv-ct-hero { padding: 62px 18px 58px; }
	.pv-ct-body {
		grid-template-columns: 1fr;
		padding: 38px 18px 74px;
	}
}
@media (max-width: 640px) {
	.pv-ct-grid,
	.pv-ct-social {
		grid-template-columns: 1fr;
	}
	.pv-ct-form {
		padding: 22px 18px 24px;
	}
	.pv-ct-panel__head,
	.pv-ct-card__head,
	.pv-ct-card__body {
		padding-left: 18px;
		padding-right: 18px;
	}
	.pv-ct-title {
		font-size: clamp(32px, 11vw, 46px);
	}
}

/* Certificates page */
.pv-cp {
	background: linear-gradient(180deg, #fff 0%, #faf8f3 100%);
	color: #141414;
}
.pv-cp *,
.pv-cp *::before,
.pv-cp *::after {
	box-sizing: border-box;
}
.pv-cp-hero {
	padding: 82px 28px 70px;
	background:
		radial-gradient(circle at 12% 22%, rgba(31,90,67,.16), transparent 30%),
		radial-gradient(circle at 88% 76%, rgba(200,161,74,.12), transparent 30%),
		linear-gradient(135deg, #0f2419 0%, #193a2a 52%, #214833 100%);
}
.pv-cp-hero__inner,
.pv-cp-body {
	max-width: 1240px;
	margin: 0 auto;
}
.pv-cp-kicker {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(200,161,74,.24);
	background: rgba(255,255,255,.08);
	color: var(--pv-gold, #C8A14A);
	font-size: 12px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 18px;
}
.pv-cp-kicker::before {
	content: "";
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: currentColor;
}
.pv-cp-title {
	max-width: 760px;
	color: #fff;
	font-size: clamp(36px, 5vw, 66px);
	line-height: 1.03;
	font-weight: 900;
	letter-spacing: -.045em;
	margin: 0 0 16px;
}
.pv-cp-subtitle {
	max-width: 620px;
	color: rgba(248,241,231,.78);
	font-size: 17px;
	line-height: 1.8;
}
.pv-cp-body {
	padding: 54px 28px 92px;
}
.pv-cp-intro {
	margin-bottom: 24px;
}
.pv-cp-intro__box {
	max-width: 740px;
	padding: 22px 24px;
	border-radius: 24px;
	border: 1px solid rgba(200,161,74,.18);
	background: #fff;
	box-shadow: 0 18px 45px rgba(0,0,0,.05);
}
.pv-cp-intro__label {
	color: var(--pv-gold, #C8A14A);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: .1em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.pv-cp-intro__box p {
	color: #5f5650;
	font-size: 15px;
	line-height: 1.75;
}
.pv-cp-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
}
.pv-cp-card {
	position: relative;
	display: flex;
	flex-direction: column;
	min-height: 100%;
	border-radius: 22px;
	border: 1px solid rgba(200,161,74,.18);
	background: #fff;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	box-shadow: 0 18px 45px rgba(0,0,0,.05);
	transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pv-cp-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 24px 60px rgba(0,0,0,.08);
	border-color: rgba(31,90,67,.28);
}
.pv-cp-card__media {
	position: relative;
	aspect-ratio: 4 / 3;
	background: linear-gradient(135deg, #f6f2e8, #fbfaf5);
}
.pv-cp-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.pv-cp-card__fallback {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--pv-gold, #C8A14A);
	font-size: 34px;
}
.pv-cp-card__body {
	padding: 18px 18px 20px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.pv-cp-card__title {
	font-size: 15px;
	line-height: 1.5;
	font-weight: 900;
	color: #161616;
}
.pv-cp-card__meta {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #7b7064;
}
.pv-cp-card__cta {
	margin: 0 18px 18px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	width: fit-content;
	padding: 11px 14px;
	border-radius: 14px;
	background: rgba(31,90,67,.08);
	color: var(--pv-green-dark, #1B5E20);
	font-size: 13px;
	font-weight: 900;
}
.pv-cp-empty {
	max-width: 760px;
	padding: 28px;
	border-radius: 22px;
	border: 1px dashed rgba(200,161,74,.28);
	background: #fff;
}
.pv-cp-empty strong {
	display: block;
	margin-bottom: 8px;
	font-size: 18px;
}
.pv-cp-empty p {
	color: #5f5650;
	line-height: 1.7;
}

@media (max-width: 1100px) {
	.pv-cp-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
	.pv-cp-hero { padding: 62px 18px 56px; }
	.pv-cp-body { padding: 38px 18px 74px; }
	.pv-cp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
	.pv-cp-grid { grid-template-columns: 1fr; }
	.pv-cp-title { font-size: clamp(32px, 11vw, 46px); }
}

/* ============================================================
   V1.11 — SINGLE PRODUCT COLOR OVERRIDES
   Eski bloklar / tema override'ları için son katman
   ============================================================ */
.pv-single .pv-var {
	background: linear-gradient(180deg, rgba(247,244,237,.92), rgba(255,255,255,.98)) !important;
	border-color: color-mix(in srgb, var(--pv-border) 80%, transparent) !important;
}
.pv-single .pv-var__label strong,
.pv-single .pv-single__selected,
.pv-single .pv-single__delivery svg,
.pv-single .pv-buybar__price,
.pv-single .pv-buybar__qty button,
.pv-single .pv-buybar .pv-btn--green,
.pv-single .js-pv-add-single,
.pv-single .pv-btn--green {
	color: var(--pv-green-dark) !important;
}
.pv-single .pv-swatch {
	background: #fff !important;
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	color: var(--pv-ink) !important;
	box-shadow: 0 1px 0 rgba(36,48,36,.03) !important;
}
.pv-single .pv-swatch:hover {
	border-color: color-mix(in srgb, var(--pv-green) 62%, var(--pv-border)) !important;
	background: var(--pv-green-soft) !important;
	color: var(--pv-green-dark) !important;
}
.pv-single .pv-swatch.is-active {
	background: linear-gradient(135deg, var(--pv-green-dark), var(--pv-green)) !important;
	border-color: var(--pv-green) !important;
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(46,125,50,.18) !important;
}
.pv-single .pv-swatch.is-disabled,
.pv-single .pv-swatch:disabled {
	background: #f3f1eb !important;
	border-color: #ddd7cb !important;
	color: #9a8d80 !important;
}
.pv-single .pv-gallery__nav,
.pv-single .pv-gallery__zoom {
	appearance: none !important;
	-webkit-appearance: none !important;
	border-color: color-mix(in srgb, var(--pv-border) 78%, transparent) !important;
	background: rgba(255,255,255,.94) !important;
	color: var(--pv-green-dark) !important;
	box-shadow: 0 8px 22px rgba(36,48,36,.10) !important;
}
.pv-single .pv-gallery__nav {
	width: 42px !important;
	height: 42px !important;
	border-radius: 16px !important;
	font-size: 28px !important;
}
.pv-single .pv-gallery__zoom {
	width: 42px !important;
	height: 42px !important;
	border-radius: 16px !important;
	font-size: 20px !important;
}
.pv-single .pv-gallery__thumb {
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 1.5px solid color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	background: var(--pv-white) !important;
	border-radius: 12px !important;
	box-shadow: 0 1px 0 rgba(36,48,36,.03) !important;
}
.pv-single .pv-gallery__thumb.is-active {
	border-color: var(--pv-green) !important;
	box-shadow: 0 0 0 3px var(--pv-green-soft) !important;
}
.pv-single .pv-qty,
.pv-single .pv-buy-now,
.pv-single .pv-buybar__qty {
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	background: var(--pv-white) !important;
	border-radius: 14px !important;
}
.pv-single .pv-qty {
	overflow: hidden !important;
}
.pv-single .pv-qty__btn,
.pv-single .pv-buybar__qty button {
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 0 !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
}
.pv-single .pv-qty__btn:hover,
.pv-single .pv-buybar__qty button:hover {
	background: var(--pv-green-soft) !important;
}
.pv-single .pv-qty__input {
	border: 0 !important;
	background: transparent !important;
}
.pv-single .pv-qty__input,
.pv-single .pv-buybar__qty span {
	font-variant-numeric: tabular-nums;
}
.pv-single .pv-buy .pv-btn--green,
.pv-single .js-pv-bar-add {
	background: var(--pv-green) !important;
	border-color: var(--pv-green) !important;
	color: #fff !important;
}
.pv-single .pv-buy .pv-btn--green:hover,
.pv-single .js-pv-bar-add:hover {
	background: var(--pv-green-dark) !important;
	border-color: var(--pv-green-dark) !important;
}
.pv-single .pv-buy-now--quiet {
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
}
.pv-single .pv-var__reset {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	align-self: flex-start !important;
	min-height: 46px !important;
	padding: 10px 16px !important;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	border-radius: 14px !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	box-shadow: 0 1px 0 rgba(36,48,36,.03) !important;
}
.pv-single .pv-var__reset:hover {
	border-color: var(--pv-green) !important;
	background: var(--pv-green-soft) !important;
	color: var(--pv-green-dark) !important;
}
.pv-single .pv-var__message,
.pv-single .pv-single__ship,
.pv-single .pv-buybar {
	background: var(--pv-cream) !important;
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
}
.pv-single .pv-tabs__nav {
	gap: 8px !important;
	padding: 6px 6px 0 !important;
	border-bottom: 1px solid color-mix(in srgb, var(--pv-border) 88%, transparent) !important;
	background: linear-gradient(180deg, rgba(247,244,237,.75), rgba(255,255,255,.92)) !important;
	border-radius: 18px 18px 0 0 !important;
}
.pv-single .pv-tabs__tab {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 48px !important;
	padding: 12px 16px !important;
	margin: 0 !important;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	border-bottom-color: transparent !important;
	border-radius: 14px 14px 0 0 !important;
	background: var(--pv-white) !important;
	color: var(--pv-muted) !important;
	font-size: 14px !important;
	font-weight: 800 !important;
	line-height: 1 !important;
	white-space: nowrap !important;
	flex: 0 0 auto !important;
}
.pv-single .pv-tabs__tab:hover {
	background: var(--pv-green-soft) !important;
	color: var(--pv-green-dark) !important;
}
.pv-single .pv-tabs__tab.is-active {
	background: var(--pv-white) !important;
	color: var(--pv-green-dark) !important;
	border-color: var(--pv-green-soft) var(--pv-green-soft) var(--pv-white) !important;
	box-shadow: 0 -1px 0 rgba(36,48,36,.03) !important;
}
.pv-single .pv-tabs__panel {
	padding-top: 22px !important;
}

@media (max-width: 600px) {
	.pv-single .pv-gallery__nav,
	.pv-single .pv-gallery__zoom {
		width: 38px !important;
		height: 38px !important;
		border-radius: 14px !important;
	}
	.pv-single .pv-var__opts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.pv-single .pv-swatch { min-height: 46px; padding: 10px 12px; font-size: 13px; }
	.pv-single .pv-qty { min-width: 0; width: 100%; }
	.pv-single .pv-qty__btn { width: 40px !important; height: 44px !important; min-height: 44px !important; }
	.pv-single .pv-qty__input { width: auto !important; min-width: 0 !important; height: 44px !important; }
	.pv-single .pv-qty__input { min-width: 0; width: auto; flex: 1; }
	.pv-single .pv-buybar__qty span { min-width: 34px; padding: 0 8px; }
	.pv-single .pv-var__reset { width: 100% !important; justify-content: center !important; }
	.pv-single .pv-tabs__nav { gap: 6px !important; overflow-x: auto !important; }
	.pv-single .pv-tabs__tab { min-height: 46px !important; padding: 11px 14px !important; font-size: 13px !important; }
}

/* ============================================================
   V1.11 — CART COLOR OVERRIDES
   ============================================================ */
.pv-cart .pv-cart-row__rm {
	appearance: none !important;
	-webkit-appearance: none !important;
	width: 44px !important;
	height: 44px !important;
	border: 1px solid color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	border-radius: 12px !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
	box-shadow: 0 1px 0 rgba(36,48,36,.03) !important;
}
.pv-cart .pv-cart-row__rm:hover {
	border-color: var(--pv-green) !important;
	background: var(--pv-green-soft) !important;
	color: var(--pv-green-dark) !important;
}
.pv-cart .pv-cart-row__rm svg {
	width: 17px !important;
	height: 17px !important;
}
.pv-cart .pv-qty {
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	background: var(--pv-white) !important;
	border-radius: 14px !important;
	overflow: hidden !important;
}
.pv-cart .pv-qty__btn {
	appearance: none !important;
	-webkit-appearance: none !important;
	border: 0 !important;
	background: var(--pv-cream) !important;
	color: var(--pv-green-dark) !important;
}
.pv-cart .pv-qty__btn:hover {
	background: var(--pv-green-soft) !important;
}
.pv-cart .pv-qty__input {
	border: 0 !important;
	background: transparent !important;
	font-variant-numeric: tabular-nums !important;
}
.pv-cart .pv-cart-row {
	border-color: color-mix(in srgb, var(--pv-border) 84%, transparent) !important;
	background: var(--pv-white) !important;
}
@media (max-width: 680px) {
	.pv-cart .pv-cart-row__rm { width: 42px !important; height: 42px !important; }
	.pv-cart .pv-qty { min-width: 0 !important; width: 100% !important; }
	.pv-cart .pv-qty__btn { width: 40px !important; height: 44px !important; min-height: 44px !important; }
	.pv-cart .pv-qty__input { width: auto !important; min-width: 0 !important; height: 44px !important; flex: 1 !important; }
}

/* ============================================================
   V1.11 — ARCHIVE COLOR OVERRIDES
   Simple product CTA on archive/grid screens
   ============================================================ */
.pv-archive .pv-card__cta.js-pv-add {
	appearance: none !important;
	-webkit-appearance: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	width: 100% !important;
	min-height: 54px !important;
	padding: 14px 18px !important;
	border: 1px solid var(--pv-green) !important;
	border-radius: 999px !important;
	background: var(--pv-green) !important;
	color: #fff !important;
	box-shadow: none !important;
	text-decoration: none !important;
	opacity: 1 !important;
}
.pv-archive .pv-card__cta.js-pv-add:hover {
	border-color: var(--pv-green-dark) !important;
	background: var(--pv-green-dark) !important;
	color: #fff !important;
	box-shadow: 0 8px 20px rgba(46,125,50,.18) !important;
}
.pv-archive .pv-card__cta.js-pv-add:focus,
.pv-archive .pv-card__cta.js-pv-add:focus-visible {
	outline: none !important;
	box-shadow: 0 0 0 4px rgba(46,125,50,.14) !important;
}
.pv-archive .pv-card__cta.js-pv-add svg,
.pv-archive .pv-card__cta.js-pv-add svg *,
.pv-archive .pv-card__cta.js-pv-add span {
	color: inherit !important;
	fill: currentColor !important;
	stroke: currentColor !important;
}
