/* =========================================================================
   Drobalance Pharma — WooCommerce stilleri
   ========================================================================= */

.woocommerce-wrap { padding-block: 2.5rem; }
.woocommerce-main { width: 100%; }

/* ---------- Shop toolbar ---------- */
.shop-toolbar {
	display: flex; justify-content: space-between; align-items: center;
	margin-bottom: 1.5rem; gap: 1rem; flex-wrap: wrap;
}
.shop-toolbar .woocommerce-result-count { margin: 0; color: var(--c-muted); }
.shop-toolbar .woocommerce-ordering select {
	padding: .5rem .75rem; border-radius: var(--radius); border: 1px solid var(--c-border); background: #fff;
}

/* ---------- Drobalance kendi ürün grid'i (anasayfa) ---------- */
.dro-products-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	width: 100%;
}
.dro-products-grid > .product-card {
	width: 100%;
	min-width: 0;
}

@media (max-width: 1024px) {
	.dro-products-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}
@media (max-width: 768px) {
	.dro-products-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem; }
}

/* ---------- Standalone kart — profesyonel ---------- */
.product-card--standalone {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 16px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	box-shadow: 0 1px 2px rgba(12, 27, 34, .03);
}
.product-card--standalone:hover {
	transform: translateY(-3px);
	box-shadow: 0 4px 10px rgba(12, 27, 34, .04), 0 16px 32px rgba(43, 43, 94, .10);
	border-color: rgba(43, 43, 94, .18);
}

/* Görsel alanı + slider */
.product-card--standalone .product-card__media {
	position: relative;
	background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.product-card--standalone .product-card__media-link,
.product-card--standalone .product-card__slide {
	display: block; width: 100%; height: 100%;
}
.product-card__img,
.product-card--standalone .product-card__media img {
	width: 100%; height: 100%; object-fit: cover;
	transition: transform .35s ease;
	display: block;
}
.product-card--standalone:hover .product-card__img { transform: scale(1.04); }

/* Slider */
.product-card__slider {
	position: relative;
	width: 100%; height: 100%;
}
.product-card__slides {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
	height: 100%;
	-webkit-overflow-scrolling: touch;
}
.product-card__slides::-webkit-scrollbar { display: none; }
.product-card__slide {
	flex: 0 0 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
}
.product-card__slide img {
	width: 100%; height: 100%; object-fit: cover;
	pointer-events: none; /* swipe için */
	user-select: none;
}

/* Slider nav butonları (desktop'ta hover'da görünür) */
.product-card__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 30px; height: 30px;
	background: rgba(255,255,255,.92);
	color: var(--c-contrast);
	border: 0; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; z-index: 3;
	opacity: 0; transition: opacity .15s ease, background .15s ease;
	box-shadow: 0 2px 8px rgba(12,27,34,.15);
}
.product-card__nav--prev { left: .4rem; }
.product-card__nav--next { right: .4rem; }
.product-card__nav:hover { background: #fff; }
.product-card--standalone:hover .product-card__nav { opacity: 1; }

/* Dot indicators */
.product-card__dots {
	position: absolute; left: 50%; bottom: .5rem; transform: translateX(-50%);
	display: inline-flex; gap: .3rem; z-index: 3;
	padding: .2rem .45rem;
	background: rgba(255,255,255,.7);
	border-radius: 999px;
	backdrop-filter: blur(4px);
}
.product-card__dot {
	width: 6px; height: 6px;
	border-radius: 999px;
	background: rgba(12,27,34,.3);
	transition: background .15s ease, width .15s ease;
	cursor: pointer;
}
.product-card__dot.is-active {
	background: var(--c-brand, #2b2b5e);
	width: 16px;
}

/* Rozetler */
.product-card--standalone .product-card__discount,
.product-card--standalone .product-card__tag,
.product-card--standalone .product-card__stockflag {
	position: absolute; z-index: 4;
	font-size: .7rem; font-weight: 700; letter-spacing: .01em;
	padding: .3rem .55rem; border-radius: 999px; line-height: 1;
	box-shadow: 0 2px 6px rgba(12, 27, 34, .14);
}
.product-card--standalone .product-card__discount { top: .65rem; left: .65rem; background: var(--c-accent); color: #fff; }
.product-card--standalone .product-card__tag      { top: .65rem; right: .65rem; background: var(--c-brand, #2b2b5e); color: #fff; }
.product-card--standalone .product-card__stockflag { top: .65rem; left: .65rem; background: rgba(12, 27, 34, .85); color: #fff; }
.product-card--standalone.outofstock .product-card__discount { display: none; }

/* Body */
.product-card--standalone .product-card__body-link {
	text-decoration: none; color: inherit; display: block;
}
.product-card--standalone .product-card__body-link:hover { color: inherit; }
.product-card--standalone .product-card__body {
	padding: .85rem 1rem .4rem;
	display: flex; flex-direction: column; gap: .35rem;
	flex: 1;
}
.product-card--standalone .product-card__cat {
	display: inline-block; align-self: flex-start;
	font-size: .68rem; font-weight: 700; letter-spacing: .06em;
	color: var(--c-brand, #2b2b5e); text-transform: uppercase;
	background: rgba(43, 43, 94, .08);
	padding: .18rem .5rem; border-radius: 999px;
}
.product-card--standalone .product-card__title {
	font-size: .98rem; line-height: 1.35; margin: .15rem 0 0;
	color: var(--c-contrast); font-weight: 700;
	letter-spacing: -0.005em;
	/* Tam başlık görünsün — clamp yok */
	overflow: visible;
	word-break: break-word;
}
.product-card--standalone .product-card__excerpt {
	margin: 0; color: var(--c-muted);
	font-size: .82rem; line-height: 1.45;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-card--standalone .product-card__trust {
	list-style: none; padding: 0; margin: .4rem 0 0;
	display: flex; flex-wrap: wrap; gap: .25rem .85rem;
	font-size: .72rem; color: var(--c-muted); font-weight: 600;
}
.product-card--standalone .product-card__trust li {
	display: inline-flex; align-items: center; gap: .25rem;
}
.product-card--standalone .product-card__trust svg { color: var(--c-primary); }

/* Footer */
.product-card--standalone .product-card__footer {
	padding: .65rem 1rem 1rem;
	display: flex; flex-direction: column; gap: .65rem;
	border-top: 1px dashed var(--c-border);
	margin-top: .4rem;
}
.product-card--standalone .product-card__price {
	display: flex; flex-direction: column; align-items: flex-start;
	color: var(--c-contrast); line-height: 1.1; gap: .1rem;
}
.product-card--standalone .product-card__price .price {
	display: flex !important; flex-direction: column !important; gap: .1rem;
	margin: 0; padding: 0;
}
/* Eski (regular) fiyat — rakam koyu net okunur, çizgi ince kırmızı */
.product-card--standalone .product-card__price del,
.product-card--standalone .product-card__price del .woocommerce-Price-amount,
.product-card--standalone .product-card__price del bdi,
.product-card--standalone .product-card__price .price-regular {
	color: #555 !important;                    /* normal koyu gri — net okunur */
	font-size: .95rem !important;
	font-weight: 500 !important;
	opacity: 1 !important;
	text-decoration: line-through !important;
	text-decoration-color: #bd0000 !important; /* kırmızı çizgi indirim vurgusu */
	text-decoration-thickness: 1.5px !important;
	text-decoration-skip-ink: auto !important; /* rakamların etrafından geçsin */
	order: 1;
	line-height: 1.25;
	letter-spacing: .005em;
}
/* Yeni (sale) fiyat veya tek fiyat — büyük, koyu lacivert.
 * `:not(del *)` ile del içindeki rakamlar hariç tutulur, böylece
 * hem indirimli (ins) hem indirimsiz (tek fiyat) durumda uygulanır. */
.product-card--standalone .product-card__price ins,
.product-card--standalone .product-card__price ins .woocommerce-Price-amount,
.product-card--standalone .product-card__price ins bdi,
.product-card--standalone .product-card__price .price-sale,
.product-card--standalone .product-card__price .woocommerce-Price-amount:not(del .woocommerce-Price-amount),
.product-card--standalone .product-card__price bdi:not(del bdi),
.product-card--standalone .product-card__price > span:not(del):not(ins):not(.price-regular) {
	color: var(--c-brand, #2b2b5e) !important;
	background: transparent !important;
	text-decoration: none !important;
	font-size: 1.4rem !important; font-weight: 800 !important;
	letter-spacing: -0.02em;
	order: 2;
	line-height: 1.15;
	display: inline-block !important;
}
/* Tek fiyatlı (indirimsiz) durumda <span class="price"> kapsayıcısı içeride bulunsun */
.product-card--standalone .product-card__price .price {
	display: inline-flex; align-items: baseline; gap: .35rem;
	font-size: 1.4rem; font-weight: 800;
	color: var(--c-brand, #2b2b5e);
	letter-spacing: -0.02em;
	line-height: 1.15;
}

/* Buy row: qty + sepete ekle */
.product-card__buy {
	display: flex; align-items: stretch; gap: .5rem;
}
.product-card__qty {
	display: inline-flex; align-items: stretch;
	border: 1px solid var(--c-border);
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	flex-shrink: 0;
}
.product-card__qty .qty-btn {
	background: transparent; border: 0;
	width: 30px;
	font-size: 1.1rem; font-weight: 600; color: var(--c-contrast);
	cursor: pointer;
	padding: 0;
	transition: background .12s ease;
}
.product-card__qty .qty-btn:hover { background: var(--c-surface); }
.product-card__qty input.qty {
	width: 32px;
	border: 0; outline: 0;
	text-align: center;
	font: inherit;
	font-weight: 700;
	background: transparent;
	padding: 0;
	-moz-appearance: textfield;
}
.product-card__qty input.qty::-webkit-outer-spin-button,
.product-card__qty input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none; margin: 0;
}

.product-card--standalone .product-card__btn,
.product-card--standalone a.product-card__btn {
	flex: 1;
	display: inline-flex !important; align-items: center !important; justify-content: center !important;
	gap: .4rem !important;
	background: var(--c-primary) !important; color: #fff !important;
	border: 1px solid var(--c-primary) !important;
	border-radius: 10px !important;
	padding: .65rem .85rem !important;
	font-weight: 700 !important; font-size: .88rem !important;
	letter-spacing: -.005em;
	white-space: nowrap !important;
	text-decoration: none !important;
	box-shadow: 0 3px 8px rgba(14, 163, 107, .22);
	transition: background .15s ease, box-shadow .15s ease, transform .1s ease;
}
.product-card--standalone .product-card__btn:hover {
	background: var(--c-primary-dark) !important; border-color: var(--c-primary-dark) !important;
	box-shadow: 0 5px 12px rgba(14, 163, 107, .32);
}
.product-card--standalone .product-card__btn:active { transform: translateY(1px); }
.product-card--standalone .product-card__btn .product-card__btn-icon { width: 15px; height: 15px; }

/* Masaüstü — standalone kartın footer'ı kolon olsun:
 * Fiyat üstte tam genişlikte (rakamlar kırpılmasın), qty+buton altta yan yana.
 * Daha sonra gelen `.product-card .product-card__footer { flex-direction: row !important }`
 * kuralını yenmek için specificity'yi (0,3,0)'a çıkarıyoruz ve !important kullanıyoruz.
 * Mobil (max-width:768px) media query'ye dokunulmuyor; mevcut mobil davranış aynen korunur. */
@media (min-width: 769px) {
	.product-card.product-card--standalone .product-card__footer {
		flex-direction: column !important;
		align-items: stretch !important;
		justify-content: flex-start !important;
		gap: .65rem !important;
	}
	.product-card.product-card--standalone .product-card__price {
		width: 100% !important;
		min-width: 0 !important;
		align-items: flex-start !important;
	}
	.product-card.product-card--standalone .product-card__buy {
		width: 100%;
		display: flex;
		flex-direction: row;
		align-items: stretch;
		gap: .5rem;
	}
	.product-card.product-card--standalone .product-card__qty {
		flex-shrink: 0;
	}
	.product-card.product-card--standalone .product-card__btn {
		flex: 1 1 auto !important;
	}
}

/* Mobil kompakt — kart */
@media (max-width: 768px) {
	.product-card--standalone { border-radius: 12px; }
	.product-card--standalone .product-card__body { padding: .65rem .7rem .25rem; gap: .25rem; }
	.product-card--standalone .product-card__cat { font-size: .6rem; padding: .15rem .4rem; }
	.product-card--standalone .product-card__title { font-size: .85rem; }
	.product-card--standalone .product-card__excerpt { font-size: .74rem; -webkit-line-clamp: 2; }
	.product-card--standalone .product-card__trust { font-size: .65rem; gap: .15rem .55rem; }
	.product-card--standalone .product-card__trust svg { width: 10px; height: 10px; }
	.product-card--standalone .product-card__footer { padding: .55rem .7rem .75rem; gap: .5rem; }
	.product-card--standalone .product-card__price .price-sale,
	.product-card--standalone .product-card__price ins,
	.product-card--standalone .product-card__price ins .woocommerce-Price-amount,
	.product-card--standalone .product-card__price > .woocommerce-Price-amount,
	.product-card--standalone .product-card__price > bdi { font-size: 1.1rem !important; }
	.product-card--standalone .product-card__price .price-regular,
	.product-card--standalone .product-card__price del,
	.product-card--standalone .product-card__price del .woocommerce-Price-amount,
	.product-card--standalone .product-card__price del bdi { font-size: .82rem !important; }

	/* Buy row mobilde dikey: stepper üstte ortada, buton altta tam genişlik */
	.product-card__buy {
		flex-direction: column;
		align-items: stretch;
		gap: .45rem;
	}
	.product-card__qty {
		align-self: center;
	}
	.product-card__qty .qty-btn { width: 28px; height: 30px; font-size: 1rem; }
	.product-card__qty input.qty { width: 28px; height: 30px; font-size: .85rem; }

	.product-card--standalone .product-card__btn,
	.product-card--standalone a.product-card__btn {
		flex: 1 1 auto !important;
		width: 100% !important;
		padding: .6rem .5rem !important;
		font-size: .82rem !important;
		gap: .35rem !important;
	}
	.product-card--standalone .product-card__btn .product-card__btn-icon { width: 14px; height: 14px; }
	.product-card__nav { display: none; } /* mobilde swipe yeterli */
	.product-card__discount, .product-card__tag, .product-card__stockflag { font-size: .6rem; padding: .22rem .42rem; }
}

/* ---------- WC shop sayfasındaki grid (Flex + explicit width — float'a karşı) ---------- */
body .woocommerce ul.products,
body ul.products,
body .woocommerce ul.products.columns-1,
body .woocommerce ul.products.columns-2,
body .woocommerce ul.products.columns-3,
body .woocommerce ul.products.columns-4,
body .woocommerce ul.products.columns-5,
body .woocommerce ul.products.columns-6 {
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: wrap !important;
	gap: 1.5rem !important;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* 4-kolon (desktop) — her li.product %25 - gap */
body .woocommerce ul.products > li.product,
body ul.products > li.product,
body .woocommerce ul.products[class*="columns-"] > li.product,
body li.product-card {
	width: calc(25% - 1.125rem) !important;
	max-width: calc(25% - 1.125rem) !important;
	min-width: 0 !important;
	flex: 0 0 calc(25% - 1.125rem) !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	display: flex !important;
	flex-direction: column !important;
	box-sizing: border-box !important;
}
.woocommerce ul.products li.product,
ul.products li.product,
li.product-card {
	width: auto !important; float: none !important; margin: 0 !important; padding: 0 !important;
	background: #ffffff !important;
	border: 1px solid transparent;
	border-radius: 18px;
	overflow: hidden;
	position: relative;
	display: flex !important; flex-direction: column !important;
	box-shadow: 0 1px 2px rgba(12, 27, 34, .04), 0 4px 14px rgba(12, 27, 34, .04);
	transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
	text-align: left !important;
}
.woocommerce ul.products li.product:hover,
li.product-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 4px 12px rgba(12, 27, 34, .06), 0 18px 36px rgba(43, 43, 94, .12);
	border-color: rgba(43, 43, 94, .15);
}

/* WC'nin default `<a>` linklerini sıfırla */
.woocommerce ul.products li.product > a,
li.product-card > a.product-card__link {
	color: inherit !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

/* Tıklanabilir gövde */
.product-card .product-card__link {
	display: flex !important; flex-direction: column !important; flex: 1 !important;
	color: var(--c-contrast) !important;
	text-decoration: none !important;
	padding: 0 !important;
}
.product-card .product-card__link:hover,
.product-card .product-card__link:focus { color: var(--c-contrast) !important; }
.product-card .product-card__link:focus-visible {
	outline: 2px solid var(--c-header); outline-offset: 2px;
}

/* Görsel alanı — yumuşak surface arka plan, kenarlardan iç boşluk yok */
.product-card__media {
	position: relative; display: block;
	background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
	overflow: hidden;
}
.product-card__media img {
	width: 100%; aspect-ratio: 1/1; object-fit: cover;
	transition: transform .35s ease;
}
.woocommerce ul.products li.product:hover .product-card__media img { transform: scale(1.06); }

/* Görsel üstü rozetler */
.product-card__discount,
.product-card__tag,
.product-card__stockflag {
	position: absolute; z-index: 2;
	font-size: .72rem; font-weight: 700;
	padding: .3rem .55rem;
	border-radius: 999px;
	letter-spacing: .01em;
	line-height: 1;
	box-shadow: 0 2px 6px rgba(12, 27, 34, .12);
}
.product-card__discount {
	top: .65rem; left: .65rem;
	background: var(--c-accent); color: #fff;
}
.product-card__tag {
	top: .65rem; right: .65rem;
	background: var(--c-header); color: #fff;
}
.product-card__stockflag {
	top: .65rem; left: .65rem;
	background: rgba(12, 27, 34, .8); color: #fff;
	backdrop-filter: blur(2px);
}
/* Eğer hem indirim hem stock-out aynı anda olursa stockflag öncelikli */
.outofstock .product-card__discount { display: none; }

/* Gövde — başlık ve açıklama */
.product-card .product-card__body {
	padding: 1rem 1.05rem .35rem;
	display: flex; flex-direction: column; gap: .3rem;
	flex: 1;
}
.product-card .product-card__title {
	font-size: 1rem !important; line-height: 1.35 !important; margin: 0 !important;
	color: var(--c-contrast) !important; font-weight: 700 !important;
	letter-spacing: -0.005em;
	/* Tam başlık görünsün — clamp yok */
	overflow: visible;
	word-break: break-word;
	text-align: left;
}
.product-card .product-card__excerpt {
	margin: 0; color: var(--c-muted);
	font-size: .85rem; line-height: 1.45;
	display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
	text-align: left;
}

/* Footer — fiyat + buton (yan yana) */
.product-card .product-card__footer {
	display: flex !important; flex-direction: row !important;
	align-items: center !important; justify-content: space-between !important;
	gap: .75rem;
	padding: .9rem 1.05rem 1.05rem;
	margin: 0;
}

/* Fiyat: küçük üstü-çizili eski + büyük net güncel (alt alta) */
.product-card .product-card__price {
	display: flex !important; flex-direction: column !important; align-items: flex-start !important;
	color: var(--c-contrast); line-height: 1.1;
	min-width: 0;
	gap: .05rem;
	margin: 0;
	padding: 0;
}
.product-card .product-card__price .price-regular,
.product-card .product-card__price del,
.product-card .product-card__price del .woocommerce-Price-amount {
	color: var(--c-muted) !important;
	font-size: .8rem !important;
	font-weight: 500 !important;
	opacity: .75;
	text-decoration: line-through !important;
	order: 1;
}
.product-card .product-card__price .price-sale,
.product-card .product-card__price ins,
.product-card .product-card__price ins .woocommerce-Price-amount {
	color: var(--c-header) !important;
	background: transparent !important;
	text-decoration: none !important;
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	letter-spacing: -0.02em;
	order: 2;
}
.product-card .product-card__price > .woocommerce-Price-amount,
.product-card .product-card__price > bdi,
.product-card .product-card__price > span:not(del):not(ins) {
	font-size: 1.35rem !important;
	font-weight: 800 !important;
	color: var(--c-header) !important;
	letter-spacing: -0.02em;
}
.product-card .product-card__price .woocommerce-Price-amount { font-feature-settings: "tnum"; }
.product-card .product-card__price .woocommerce-Price-currencySymbol { font-weight: inherit; }

/* "Sepete Ekle" — kompakt yatay buton; SVG icon + text yan yana */
.product-card .product-card__btn,
.product-card a.product-card__btn,
.woocommerce ul.products li.product a.product-card__btn,
.woocommerce ul.products li.product .product-card__btn.button {
	display: inline-flex !important;
	flex-direction: row !important;
	align-items: center !important; justify-content: center !important;
	gap: .4rem !important;
	background: var(--c-primary) !important; color: #fff !important;
	border: 1px solid var(--c-primary) !important;
	border-radius: 12px !important;
	padding: .65rem .95rem !important;
	margin: 0 !important;
	width: auto !important;
	height: auto !important;
	min-height: 0 !important;
	font-weight: 700 !important; font-size: .9rem !important; line-height: 1 !important;
	letter-spacing: -.005em;
	white-space: nowrap !important;
	text-align: center !important; text-decoration: none !important;
	box-shadow: 0 4px 10px rgba(14, 163, 107, .25);
	transition: background .15s ease, border-color .15s ease, transform .1s ease, box-shadow .15s ease;
	flex-shrink: 0;
}
.product-card .product-card__btn-icon {
	width: 16px !important; height: 16px !important;
	flex-shrink: 0;
	display: inline-block !important;
}
.product-card .product-card__btn-label {
	display: inline-block !important;
	line-height: 1 !important;
}
.product-card .product-card__btn:hover,
.product-card a.product-card__btn:hover,
.woocommerce ul.products li.product a.product-card__btn:hover {
	background: var(--c-primary-dark) !important; border-color: var(--c-primary-dark) !important;
	color: #fff !important;
	box-shadow: 0 6px 14px rgba(14, 163, 107, .35);
}
.product-card .product-card__btn:active { transform: translateY(1px); }
.product-card .product-card__btn.added { background: var(--c-primary-dark) !important; border-color: var(--c-primary-dark) !important; }
.product-card .product-card__btn.loading { opacity: .75; pointer-events: none; }
.product-card.outofstock .product-card__btn {
	background: #f3f5f8 !important; color: var(--c-muted) !important; border-color: #e6eaef !important;
	box-shadow: none;
	cursor: not-allowed; pointer-events: none;
}
.product-card.outofstock .product-card__btn-icon { display: none !important; }
.product-card .product-card__footer .added_to_cart { display: none !important; }

.onsale, .badge {
	position: absolute; top: .75rem; left: .75rem; z-index: 2;
	background: var(--c-accent); color: #fff; padding: .15rem .55rem;
	border-radius: 999px; font-size: .75rem; font-weight: 700;
}
.badge--featured { left: auto; right: .75rem; background: var(--c-contrast); }

/* =========================================================================
   Tek Ürün Sayfası — Drobalance kendi layout
   ========================================================================= */
.dro-product {
	width: 100%;
}
.dro-product__top {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 2.5rem;
	align-items: start;
	margin-bottom: 3rem;
}

/* Galeri */
.dro-product__gallery { min-width: 0; }
.dro-product__media {
	position: relative;
	background: linear-gradient(180deg, #fafbfc 0%, #f3f5f8 100%);
	border-radius: 18px;
	overflow: hidden;
	aspect-ratio: 1 / 1;
}
.dro-product__img {
	width: 100%; height: 100%; object-fit: cover; display: block;
	pointer-events: none; user-select: none;
}

/* Rozetler */
.dro-product__discount,
.dro-product__tag,
.dro-product__stockflag {
	position: absolute; z-index: 4;
	font-size: .85rem; font-weight: 700;
	padding: .35rem .7rem; border-radius: 999px; line-height: 1;
	box-shadow: 0 2px 8px rgba(12, 27, 34, .15);
}
.dro-product__discount { top: 1rem; left: 1rem; background: var(--c-accent); color: #fff; }
.dro-product__tag { top: 1rem; right: 1rem; background: var(--c-brand, #2b2b5e); color: #fff; }
.dro-product__stockflag { top: 1rem; left: 1rem; background: rgba(12, 27, 34, .85); color: #fff; }

/* Slider */
.dro-product__slider { position: relative; height: 100%; }
.dro-product__slides {
	display: flex; height: 100%;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
}
.dro-product__slides::-webkit-scrollbar { display: none; }
.dro-product__slide {
	flex: 0 0 100%;
	scroll-snap-align: center;
	scroll-snap-stop: always;
}

.dro-product__nav {
	position: absolute; top: 50%; transform: translateY(-50%);
	width: 40px; height: 40px;
	background: rgba(255,255,255,.95);
	color: var(--c-contrast);
	border: 0; border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
	cursor: pointer; z-index: 3;
	box-shadow: 0 4px 12px rgba(12, 27, 34, .15);
	transition: background .15s ease, transform .1s ease;
}
.dro-product__nav--prev { left: 1rem; }
.dro-product__nav--next { right: 1rem; }
.dro-product__nav:hover { background: #fff; }
.dro-product__nav:active { transform: translateY(-50%) scale(.95); }

.dro-product__dots {
	position: absolute; left: 50%; bottom: 1rem; transform: translateX(-50%);
	display: inline-flex; gap: .4rem; z-index: 3;
	padding: .35rem .65rem;
	background: rgba(255,255,255,.8);
	border-radius: 999px; backdrop-filter: blur(4px);
}
.dro-product__dot {
	width: 8px; height: 8px; border-radius: 999px;
	background: rgba(12, 27, 34, .3);
	cursor: pointer;
	transition: background .15s ease, width .15s ease;
}
.dro-product__dot.is-active {
	background: var(--c-brand, #2b2b5e);
	width: 22px;
}

/* Thumbnails (desktop) */
.dro-product__thumbs {
	display: flex; gap: .5rem; margin-top: .8rem;
	overflow-x: auto;
	scrollbar-width: thin;
}
.dro-product__thumbs::-webkit-scrollbar { height: 4px; }
.dro-product__thumb {
	flex: 0 0 80px; width: 80px; height: 80px;
	background: var(--c-surface);
	border: 2px solid transparent;
	border-radius: 10px; overflow: hidden;
	padding: 0; cursor: pointer;
	transition: border-color .15s ease;
}
.dro-product__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dro-product__thumb:hover { border-color: var(--c-border); }
.dro-product__thumb.is-active { border-color: var(--c-brand, #2b2b5e); }

/* Özet */
.dro-product__summary { min-width: 0; }
.dro-product__cat {
	display: inline-block;
	font-size: .72rem; font-weight: 700; letter-spacing: .06em;
	color: var(--c-brand, #2b2b5e); text-transform: uppercase;
	background: rgba(43, 43, 94, .08);
	padding: .25rem .65rem; border-radius: 999px;
	margin-bottom: .75rem;
}
.dro-product__title {
	font-size: clamp(1.6rem, 1.2rem + 1.2vw, 2.5rem);
	margin: 0 0 .85rem; line-height: 1.15;
	font-weight: 800; letter-spacing: -0.015em;
	color: var(--c-contrast);
}
.dro-product__price {
	display: flex; align-items: baseline; gap: .8rem; flex-wrap: wrap;
	margin-bottom: 1.25rem; line-height: 1.1;
}
.dro-product__price .price-sale,
.dro-product__price ins,
.dro-product__price ins .woocommerce-Price-amount,
.dro-product__price > .woocommerce-Price-amount,
.dro-product__price > bdi {
	font-size: 2.15rem !important; font-weight: 800 !important;
	color: var(--c-brand, #2b2b5e) !important; letter-spacing: -0.02em;
	text-decoration: none !important; background: transparent !important;
}
.dro-product__price .price-regular,
.dro-product__price del,
.dro-product__price del .woocommerce-Price-amount,
.dro-product__price del bdi {
	font-size: 1.2rem !important; font-weight: 500 !important;
	color: #555 !important; opacity: 1 !important;
	text-decoration: line-through !important;
	text-decoration-color: #bd0000 !important;
	text-decoration-thickness: 2px !important;
	text-decoration-skip-ink: auto !important;
}
.dro-product__short {
	color: var(--c-muted);
	font-size: 1rem; line-height: 1.55;
	margin-bottom: 1.5rem;
}

/* Trust list */
.dro-product__trust {
	list-style: none; padding: 0; margin: 0 0 1.75rem;
	display: grid; grid-template-columns: 1fr 1fr; gap: .55rem .85rem;
}
.dro-product__trust li {
	display: inline-flex; align-items: center; gap: .5rem;
	font-size: .85rem; color: var(--c-contrast); font-weight: 500;
}
.dro-product__trust svg { color: var(--c-primary); flex-shrink: 0; }

/* Buy block */
.dro-product__buy { margin-bottom: 1.25rem; }
.dro-product__buy-row {
	display: flex; align-items: stretch; gap: .65rem;
	margin-bottom: .75rem;
}
.dro-product__qty {
	display: inline-flex; align-items: stretch;
	border: 1px solid var(--c-border);
	border-radius: 12px; overflow: hidden;
	background: #fff;
	flex-shrink: 0;
}
.dro-product__qty .qty-btn {
	background: transparent; border: 0;
	width: 42px; height: 52px;
	font-size: 1.25rem; font-weight: 600; color: var(--c-contrast);
	cursor: pointer; padding: 0;
	transition: background .12s ease;
}
.dro-product__qty .qty-btn:hover { background: var(--c-surface); }
.dro-product__qty input.qty {
	width: 50px; height: 52px;
	border: 0; outline: 0;
	text-align: center;
	font: inherit; font-size: 1.05rem;
	font-weight: 700;
	background: transparent;
	-moz-appearance: textfield;
	padding: 0;
}
.dro-product__qty input.qty::-webkit-outer-spin-button,
.dro-product__qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.dro-product__add-btn {
	flex: 1;
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	background: var(--c-primary); color: #fff;
	border: 1px solid var(--c-primary);
	border-radius: 12px;
	padding: 0 1.5rem; min-height: 52px;
	font-weight: 700; font-size: 1rem; letter-spacing: -.005em;
	cursor: pointer;
	box-shadow: 0 4px 12px rgba(14, 163, 107, .25);
	transition: background .15s ease, box-shadow .15s ease, transform .1s ease;
}
.dro-product__add-btn:hover {
	background: var(--c-primary-dark); border-color: var(--c-primary-dark);
	box-shadow: 0 6px 16px rgba(14, 163, 107, .35);
}
.dro-product__add-btn:active { transform: translateY(1px); }

.dro-product__cart-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
	width: 100%;
	background: #fff; color: var(--c-brand, #2b2b5e);
	border: 1px solid var(--c-brand, #2b2b5e);
	border-radius: 12px;
	padding: .85rem 1.5rem;
	font-weight: 700; font-size: .95rem;
	text-decoration: none;
	transition: background .15s ease, color .15s ease;
	position: relative;
}
.dro-product__cart-btn:hover {
	background: var(--c-brand, #2b2b5e); color: #fff;
}
.dro-product__cart-count {
	background: var(--c-primary); color: #fff;
	font-size: .75rem; font-weight: 700;
	min-width: 20px; height: 20px; padding: 0 .35rem;
	border-radius: 999px;
	display: inline-flex; align-items: center; justify-content: center;
}

.dro-product__oos {
	background: var(--c-surface); border: 1px solid var(--c-border);
	color: var(--c-muted);
	padding: 1rem 1.25rem; border-radius: 12px;
	font-weight: 600; text-align: center;
}

.dro-product__meta {
	color: var(--c-muted); font-size: .85rem;
	padding-top: 1rem; border-top: 1px dashed var(--c-border);
}
.dro-product__meta code {
	background: var(--c-surface); padding: .1rem .45rem; border-radius: 6px;
	font-size: .85rem;
}

/* Detaylar */
.dro-product__details { margin: 0 0 3rem; }
.dro-product__description {
	background: #fff;
	border: 1px solid var(--c-border);
	border-radius: 16px;
	padding: 1.75rem 2rem;
	font-size: 1rem; line-height: 1.7;
	color: var(--c-contrast);
}
.dro-product__description h2,
.dro-product__description h3 { margin-top: 1.5rem; }
.dro-product__description h2:first-child,
.dro-product__description h3:first-child { margin-top: 0; }
.dro-product__description ul { padding-left: 1.25rem; }

.dro-product__related { margin: 0 0 3rem; }

/* Mobil */
@media (max-width: 900px) {
	.dro-product__top {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		margin-bottom: 2rem;
	}
	.dro-product__thumbs { display: none; }
	.dro-product__nav { width: 34px; height: 34px; }
	.dro-product__nav--prev { left: .5rem; }
	.dro-product__nav--next { right: .5rem; }
	.dro-product__title { font-size: clamp(1.4rem, 1.1rem + 1.5vw, 1.9rem); }
	.dro-product__price .price-sale,
	.dro-product__price ins,
	.dro-product__price ins .woocommerce-Price-amount,
	.dro-product__price > .woocommerce-Price-amount,
	.dro-product__price > bdi { font-size: 1.65rem !important; }
	.dro-product__price del,
	.dro-product__price .price-regular { font-size: .95rem !important; }
	.dro-product__short { font-size: .92rem; margin-bottom: 1.25rem; }
	.dro-product__trust { grid-template-columns: 1fr; gap: .45rem; margin-bottom: 1.25rem; }
	.dro-product__trust li { font-size: .85rem; }
	.dro-product__qty .qty-btn { width: 38px; height: 48px; }
	.dro-product__qty input.qty { width: 42px; height: 48px; font-size: 1rem; }
	.dro-product__add-btn { min-height: 48px; padding: 0 1rem; font-size: .92rem; }
	.dro-product__cart-btn { padding: .7rem 1rem; font-size: .9rem; }
	.dro-product__description { padding: 1.25rem 1.25rem; }
	.dro-product__discount,
	.dro-product__tag,
	.dro-product__stockflag { font-size: .72rem; padding: .28rem .55rem; }
}

/* WC default single-product layout (eski) artık dro-product ile değiştirildi */

.woocommerce-tabs { margin-top: 3rem; }
.woocommerce-tabs ul.tabs {
	list-style: none; padding: 0; margin: 0 0 1rem; display: flex; gap: 1.5rem; border-bottom: 1px solid var(--c-border);
}
.woocommerce-tabs ul.tabs li a {
	display: inline-block; padding: .75rem 0; color: var(--c-muted); font-weight: 600; border-bottom: 2px solid transparent;
}
.woocommerce-tabs ul.tabs li.active a { color: var(--c-contrast); border-color: var(--c-primary); }

.related.products, .upsells.products { margin-top: 3rem; }

/* ---------- Adet seçici ---------- */
.quantity--steppers {
	display: inline-flex; align-items: center; border: 1px solid var(--c-border);
	border-radius: var(--radius); overflow: hidden; background: #fff;
}
.quantity--steppers .qty-btn {
	background: transparent; border: 0; width: 2.25rem; height: 2.5rem; font-size: 1.1rem; cursor: pointer; color: var(--c-contrast);
}
.quantity--steppers .qty-btn:hover { background: var(--c-surface); }
.quantity--steppers input.qty {
	width: 2.75rem; border: 0; text-align: center; font: inherit; padding: 0; background: transparent;
}

/* ---------- Sepet ---------- */
.woocommerce-cart .woocommerce { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2rem; align-items: start; }
.woocommerce-cart .woocommerce-cart-form { min-width: 0; }
.woocommerce-cart-form table.shop_table thead th { text-align: left; font-size: .85rem; }
.woocommerce-cart-form .product-thumbnail img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.woocommerce-cart-form .product-name a { color: var(--c-contrast); font-weight: 600; text-decoration: none; }
.woocommerce-cart-form .product-name a:hover { color: var(--c-primary); }
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal { font-weight: 700; color: var(--c-brand); }
.woocommerce-cart-form .product-remove a {
	display: inline-flex; align-items: center; justify-content: center;
	width: 28px; height: 28px;
	background: transparent; color: var(--c-muted);
	border-radius: 999px;
	text-decoration: none; font-size: 1.1rem;
	transition: background .15s ease, color .15s ease;
}
.woocommerce-cart-form .product-remove a:hover { background: rgba(224, 65, 58, .1); color: var(--c-danger); }
.woocommerce-cart-form .quantity { display: inline-flex; }
.woocommerce-cart-form .quantity input.qty {
	width: 60px; height: 38px;
	border: 1px solid var(--c-border); border-radius: 8px;
	text-align: center; font: inherit; font-weight: 600;
	padding: 0;
}
.woocommerce-cart-form .actions { padding: 1rem 0 !important; }
.woocommerce-cart-form .actions button[name="update_cart"] {
	background: #fff; color: var(--c-contrast);
	border: 1px solid var(--c-border); border-radius: 10px;
	padding: .65rem 1.1rem; font-weight: 600; cursor: pointer;
}
.woocommerce-cart-form .actions button[name="update_cart"]:not([disabled]):hover {
	background: var(--c-surface); border-color: var(--c-brand);
}

.cart_totals h2 { font-size: 1.15rem; margin: 0 0 1rem; }

/* "Ödeme sayfasına git" butonu — primary yeşil, tam genişlik */
body .woocommerce a.checkout-button,
body .cart_totals a.checkout-button,
body .cart_totals .wc-proceed-to-checkout a.checkout-button,
.wc-proceed-to-checkout .button.checkout-button {
	display: block !important; width: 100% !important;
	background: var(--c-primary) !important;
	color: #fff !important;
	border: 1px solid var(--c-primary) !important;
	border-radius: 12px !important;
	padding: .95rem 1.5rem !important;
	font-weight: 700 !important; font-size: 1rem !important;
	text-align: center !important; text-decoration: none !important;
	box-shadow: 0 4px 12px rgba(14, 163, 107, .25);
	transition: background .15s ease, box-shadow .15s ease;
}
body .woocommerce a.checkout-button:hover,
body .cart_totals a.checkout-button:hover,
.wc-proceed-to-checkout .button.checkout-button:hover {
	background: var(--c-primary-dark) !important;
	border-color: var(--c-primary-dark) !important;
	color: #fff !important;
	box-shadow: 0 6px 16px rgba(14, 163, 107, .35);
}

/* Checkout "Siparişi tamamla" / "Place order" butonu */
body .woocommerce #place_order,
body #place_order.button {
	background: var(--c-primary) !important;
	color: #fff !important;
	border: 1px solid var(--c-primary) !important;
	border-radius: 12px !important;
	padding: 1rem 1.75rem !important;
	font-weight: 700 !important; font-size: 1.05rem !important;
	width: 100%;
	box-shadow: 0 4px 14px rgba(14, 163, 107, .25);
}
body .woocommerce #place_order:hover {
	background: var(--c-primary-dark) !important;
	border-color: var(--c-primary-dark) !important;
}
.woocommerce table.shop_table {
	width: 100%; border-collapse: collapse; background: var(--c-base);
	border: 1px solid var(--c-border); border-radius: var(--radius-lg); overflow: hidden;
}
.woocommerce table.shop_table th, .woocommerce table.shop_table td {
	padding: .85rem 1rem; border-bottom: 1px solid var(--c-border); text-align: left;
}
.woocommerce table.shop_table thead { background: var(--c-surface); }
.cart-collaterals .cart_totals {
	background: var(--c-surface); padding: 1.5rem; border-radius: var(--radius-lg);
}
.cart-collaterals .cart_totals h2 { margin-top: 0; }
.cart-collaterals .checkout-button { width: 100%; }

.cart-empty {
	text-align: center; padding: 4rem 1rem; background: var(--c-surface);
	border-radius: var(--radius-lg);
}
.cart-empty__icon { font-size: 3rem; }
.cart-empty__actions { display: flex; justify-content: center; gap: .75rem; flex-wrap: wrap; }

/* ---------- Checkout ---------- */
.woocommerce-checkout form.checkout {
	display: grid; grid-template-columns: 1.4fr 1fr; gap: 2rem;
}
.woocommerce-checkout .woocommerce-billing-fields,
.woocommerce-checkout .woocommerce-shipping-fields,
.woocommerce-checkout .woocommerce-additional-fields {
	background: var(--c-base); padding: 1.5rem; border: 1px solid var(--c-border);
	border-radius: var(--radius-lg); margin-bottom: 1.5rem;
}
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
	background: var(--c-surface); padding: 1.5rem; border-radius: var(--radius-lg);
}
.woocommerce form .form-row label { display: block; font-weight: 500; margin-bottom: .35rem; }
.woocommerce form .form-row input[type="text"],
.woocommerce form .form-row input[type="email"],
.woocommerce form .form-row input[type="tel"],
.woocommerce form .form-row input[type="password"],
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce form .form-row .select2-selection {
	width: 100%; padding: .65rem .75rem; border: 1px solid var(--c-border); border-radius: var(--radius);
	font: inherit; background: #fff;
}

.checkout-guest-notice {
	background: #eef9f3; border: 1px solid #c5ecd9; color: #0a7d52;
	padding: 1rem 1.25rem; border-radius: var(--radius); margin-bottom: 1.5rem;
}

/* ---------- Mesajlar ---------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
	padding: 1rem 1.25rem; border-radius: var(--radius); margin: 0 0 1.25rem;
	background: var(--c-surface); border: 1px solid var(--c-border);
}
.woocommerce-message { border-color: #c5ecd9; background: #eef9f3; }
.woocommerce-error { border-color: #f7c8c5; background: #fdecea; color: #8a1f1a; }

/* ---------- Thank-you sayfası ---------- */
.order-track-cta {
	margin-top: 2rem; padding: 1.5rem; background: var(--c-surface);
	border-radius: var(--radius-lg); text-align: center;
}
.order-track-cta__number {
	font-size: 1.25rem;
}
.order-track-cta__number strong { color: var(--c-primary); }

/* ---------- Sipariş takip sayfası ---------- */
.order-tracking-page { padding-block: 3rem; max-width: 760px; }
.order-tracking__form {
	background: var(--c-base); border: 1px solid var(--c-border); border-radius: var(--radius-lg);
	padding: 1.5rem; display: grid; gap: 1rem;
}
.order-tracking__row { display: grid; gap: .35rem; }
.order-tracking__row input {
	padding: .75rem 1rem; border: 1px solid var(--c-border); border-radius: var(--radius);
	font: inherit;
}
.order-tracking__error {
	background: #fdecea; border: 1px solid #f7c8c5; color: #8a1f1a;
	padding: 1rem; border-radius: var(--radius); margin-top: 1rem;
}

.order-result {
	margin-top: 2rem; background: var(--c-base);
	border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 1.5rem;
}
.order-result__head {
	display: flex; justify-content: space-between; align-items: start; gap: 1rem; margin-bottom: 1.5rem;
}
.order-result__date { color: var(--c-muted); margin: .25rem 0 0; }
.order-status {
	display: inline-block; padding: .25rem .75rem; border-radius: 999px; font-weight: 600; font-size: .85rem;
	background: var(--c-surface);
}
.order-status--processing { background: #fff6e5; color: #a86200; }
.order-status--completed  { background: #eef9f3; color: var(--c-primary-dark); }
.order-status--on-hold    { background: #fdecea; color: #8a1f1a; }
.order-status--pending    { background: var(--c-surface); color: var(--c-muted); }

.order-steps {
	list-style: none; padding: 0; margin: 0 0 1.5rem; display: grid;
	grid-template-columns: repeat(4, 1fr); gap: .5rem;
}
.order-step { display: grid; gap: .35rem; text-align: center; position: relative; padding: 0 .5rem; }
.order-step__dot {
	width: 14px; height: 14px; border-radius: 999px; background: var(--c-border); margin: 0 auto;
	border: 3px solid var(--c-base); box-shadow: 0 0 0 1px var(--c-border);
}
.order-step--done .order-step__dot, .order-step--current .order-step__dot {
	background: var(--c-primary); box-shadow: 0 0 0 1px var(--c-primary);
}
.order-step--current .order-step__dot { transform: scale(1.2); }
.order-step--alert .order-step__dot { background: var(--c-danger); box-shadow: 0 0 0 1px var(--c-danger); }
.order-step__label { font-size: .85rem; color: var(--c-muted); }
.order-step--done .order-step__label, .order-step--current .order-step__label { color: var(--c-contrast); font-weight: 600; }

.order-step + .order-step::before {
	content: ""; position: absolute; top: 6px; left: -50%; right: 50%; height: 2px; background: var(--c-border); z-index: 0;
}
.order-step--done::before, .order-step--current::before { background: var(--c-primary); }

.order-result__tracking {
	background: var(--c-surface); padding: .9rem 1rem; border-radius: var(--radius);
	display: flex; align-items: center; gap: .75rem; flex-wrap: wrap; margin-bottom: 1.5rem;
}
.order-result__tracking code { background: #fff; padding: .15rem .5rem; border-radius: 6px; }

.order-items { width: 100%; border-collapse: collapse; margin: 0 0 1.5rem; }
.order-items th, .order-items td { padding: .6rem .75rem; border-bottom: 1px solid var(--c-border); text-align: left; }
.order-items thead { background: var(--c-surface); }
.order-items tfoot th { font-weight: 700; }

.order-result__addresses {
	display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.order-result__addresses h4 { margin: 0 0 .5rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
	body .woocommerce ul.products,
	body ul.products,
	body .woocommerce ul.products[class*="columns-"] {
		gap: 1rem !important;
	}
	body .woocommerce ul.products > li.product,
	body ul.products > li.product,
	body .woocommerce ul.products[class*="columns-"] > li.product,
	body li.product-card {
		width: calc(33.3333% - 0.667rem) !important;
		max-width: calc(33.3333% - 0.667rem) !important;
		flex: 0 0 calc(33.3333% - 0.667rem) !important;
	}
}

@media (max-width: 768px) {
	body .woocommerce ul.products,
	body ul.products,
	body .woocommerce ul.products[class*="columns-"] {
		gap: .75rem !important;
	}
	body .woocommerce ul.products > li.product,
	body ul.products > li.product,
	body .woocommerce ul.products[class*="columns-"] > li.product,
	body li.product-card {
		width: calc(50% - 0.375rem) !important;
		max-width: calc(50% - 0.375rem) !important;
		flex: 0 0 calc(50% - 0.375rem) !important;
	}

	/* Sepet tablosu mobilde kart şeklinde */
	.woocommerce-cart .woocommerce { grid-template-columns: 1fr; gap: 1.25rem; }
	.woocommerce-cart-form table.shop_table {
		background: transparent !important;
		border: 0 !important;
		border-radius: 0 !important;
		box-shadow: none !important;
	}
	.woocommerce-cart-form table.shop_table thead { display: none; }
	.woocommerce-cart-form table.shop_table tbody tr.cart_item {
		display: grid !important;
		grid-template-columns: 64px 1fr auto;
		grid-template-rows: auto auto auto;
		gap: .35rem .75rem;
		background: #fff;
		border: 1px solid var(--c-border);
		border-radius: 12px;
		padding: .75rem;
		margin-bottom: .65rem;
		align-items: start;
	}
	.woocommerce-cart-form table.shop_table tbody tr.cart_item td {
		display: block; padding: 0; border: 0; text-align: left;
		width: auto !important; height: auto !important;
		background: transparent !important;
	}
	.woocommerce-cart-form .shop_table .product-thumbnail {
		grid-column: 1;
		grid-row: 1 / 4;
	}
	.woocommerce-cart-form .shop_table .product-thumbnail img {
		width: 64px; height: 64px; border-radius: 8px;
	}
	.woocommerce-cart-form .shop_table .product-name {
		grid-column: 2;
		grid-row: 1;
		font-weight: 600; font-size: .9rem;
		line-height: 1.3;
	}
	.woocommerce-cart-form .shop_table .product-price {
		grid-column: 2;
		grid-row: 2;
		font-size: .95rem;
	}
	.woocommerce-cart-form .shop_table .product-price::before {
		content: ""; /* WC default "Fiyat:" prefix'ini sıfırla */
	}
	.woocommerce-cart-form .shop_table .product-quantity {
		grid-column: 2;
		grid-row: 3;
	}
	.woocommerce-cart-form .shop_table .product-quantity .quantity input.qty {
		width: 56px; height: 34px;
	}
	.woocommerce-cart-form .shop_table .product-subtotal { display: none; }
	.woocommerce-cart-form .shop_table .product-remove {
		grid-column: 3;
		grid-row: 1;
		text-align: right;
		align-self: start;
	}
	.woocommerce-cart-form .shop_table tr.actions {
		display: block !important;
		grid-template-columns: none;
		padding: 0 !important;
		background: transparent !important;
		border: 0 !important;
		margin-top: .5rem !important;
	}
	.woocommerce-cart-form .shop_table tr.actions td { padding: 0 !important; }
	.woocommerce-cart-form .actions button[name="update_cart"] {
		padding: .55rem 1rem; font-size: .85rem;
	}

	.cart_totals { padding: 1rem !important; }
	.cart_totals h2 { font-size: 1.05rem; }
	.cart_totals .shop_table th { font-size: .85rem; }
	.cart_totals .shop_table td { font-size: .85rem; word-break: break-word; }
	.cart_totals .checkout-button { padding: .8rem 1rem; font-size: .95rem; }

	.single-product div.product { grid-template-columns: 1fr; }
	.woocommerce-cart .woocommerce { grid-template-columns: 1fr; }
	.woocommerce-checkout form.checkout { grid-template-columns: 1fr; }
	.order-steps { grid-template-columns: repeat(2, 1fr); }
	.order-result__addresses { grid-template-columns: 1fr; }

	/* Mobil ürün kartı — kompakt */
	body .woocommerce ul.products li.product,
	body ul.products li.product,
	body li.product-card { border-radius: 14px; }
	.product-card .product-card__body { padding: .7rem .7rem .25rem; gap: .2rem; }
	.product-card .product-card__title { font-size: .88rem !important; }
	.product-card .product-card__excerpt { font-size: .76rem; -webkit-line-clamp: 2; }
	.product-card .product-card__price .price-sale,
	.product-card .product-card__price ins,
	.product-card .product-card__price ins .woocommerce-Price-amount,
	.product-card .product-card__price > .woocommerce-Price-amount,
	.product-card .product-card__price > bdi { font-size: 1.05rem !important; }
	.product-card .product-card__price .price-regular,
	.product-card .product-card__price del,
	.product-card .product-card__price del .woocommerce-Price-amount { font-size: .72rem !important; }
	.product-card .product-card__discount,
	.product-card .product-card__tag,
	.product-card .product-card__stockflag { font-size: .62rem; padding: .22rem .45rem; }

	/* Mobilde footer: fiyat üstte, buton altta tam genişlik */
	.product-card .product-card__footer {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: .55rem !important;
		padding: .6rem .7rem .75rem !important;
	}
	.product-card .product-card__price { align-items: flex-start !important; }
	.product-card .product-card__btn,
	.product-card a.product-card__btn {
		width: 100% !important;
		padding: .6rem .75rem !important;
		font-size: .82rem !important;
		border-radius: 10px !important;
		gap: .35rem !important;
	}
	.product-card .product-card__btn-icon { width: 15px !important; height: 15px !important; }
}

@media (max-width: 380px) {
	.product-card .product-card__title { font-size: .82rem !important; }
	.product-card .product-card__excerpt { display: none; }
	.product-card .product-card__price .price-sale,
	.product-card .product-card__price ins,
	.product-card .product-card__price ins .woocommerce-Price-amount,
	.product-card .product-card__price > .woocommerce-Price-amount,
	.product-card .product-card__price > bdi { font-size: .98rem !important; }
}
