/**
 * Emin Kara — site-wide design polish.
 * Scoped under body.emin-kara-site-polish so themes we haven't opted into aren't touched.
 * Applies to: header, buttons, forms, tables, WooCommerce (shop, cart, checkout, my account, thank-you, account pages), landing.
 */

body.emin-kara-site-polish {
	--emin-fg: #0f172a;
	--emin-fg-soft: #475569;
	--emin-muted: #94a3b8;
	--emin-bg: #ffffff;
	--emin-bg-soft: #f8fafc;
	--emin-bg-muted: #f1f5f9;
	--emin-border: #e2e8f0;
	--emin-border-strong: #cbd5e1;
	--emin-accent: #0f172a;
	--emin-accent-soft: rgba(15, 23, 42, 0.08);
	--emin-accent-ring: rgba(15, 23, 42, 0.18);
	--emin-success: #15803d;
	--emin-danger: #b91c1c;
	--emin-warning: #b45309;
	--emin-info: #1e40af;
	--emin-price: #0f172a;
	--emin-radius-sm: 8px;
	--emin-radius-md: 14px;
	--emin-radius-lg: 22px;
	--emin-shadow-1: 0 1px 2px rgba(15, 23, 42, 0.04), 0 2px 6px rgba(15, 23, 42, 0.05);
	--emin-shadow-2: 0 6px 18px rgba(15, 23, 42, 0.08), 0 1px 3px rgba(15, 23, 42, 0.04);
	--emin-shadow-3: 0 18px 40px rgba(15, 23, 42, 0.14), 0 3px 8px rgba(15, 23, 42, 0.05);
	--emin-ease: cubic-bezier(0.4, 0.14, 0.3, 1);
	--emin-font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Inter", "Segoe UI", "Helvetica Neue", sans-serif;
	--emin-font-text: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Inter", "Segoe UI", "Helvetica Neue", sans-serif;

	font-family: var(--emin-font-text);
	font-feature-settings: "kern" 1, "ss01" 1;
	color: var(--emin-fg);
	line-height: 1.6;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* enpapa.gr brand palette (site-wide): navy CTAs + red price/accent */
body.emin-kara-site-polish.emin-kara-host-enpapa {
	--ep-red: #e53935;
	--ep-red-hover: #c62828;
	--ep-navy: #1f2937;

	--emin-accent: var(--ep-navy);
	--emin-accent-soft: rgb(31 41 55 / 0.08);
	--emin-accent-ring: rgb(31 41 55 / 0.18);
	--emin-price: var(--ep-red);
}

body.emin-kara-site-polish.emin-kara-host-enpapa a:hover {
	color: var(--ep-red);
	opacity: 1;
}

body.emin-kara-site-polish.emin-kara-host-enpapa .woocommerce a.button:hover,
body.emin-kara-site-polish.emin-kara-host-enpapa .woocommerce button.button:hover,
body.emin-kara-site-polish.emin-kara-host-enpapa .button:hover,
body.emin-kara-site-polish.emin-kara-host-enpapa button:hover {
	background: var(--ep-navy);
}

/* Neutralize some harsh theme defaults without breaking layout. */
body.emin-kara-site-polish h1,
body.emin-kara-site-polish h2,
body.emin-kara-site-polish h3,
body.emin-kara-site-polish h4,
body.emin-kara-site-polish h5,
body.emin-kara-site-polish h6 {
	font-family: var(--emin-font-display);
	color: var(--emin-fg);
	letter-spacing: -0.02em;
	line-height: 1.22;
	font-weight: 600;
}

body.emin-kara-site-polish h1 { font-size: clamp(1.9rem, 2.6vw, 2.5rem); }
body.emin-kara-site-polish h2 { font-size: clamp(1.55rem, 2.2vw, 1.95rem); }
body.emin-kara-site-polish h3 { font-size: clamp(1.25rem, 1.9vw, 1.55rem); }

body.emin-kara-site-polish a {
	color: inherit;
	transition: color 0.15s var(--emin-ease), opacity 0.15s var(--emin-ease);
}

body.emin-kara-site-polish a:hover {
	opacity: 0.85;
}

/* ─── Focus ring for all interactive ───── */
body.emin-kara-site-polish a:focus-visible,
body.emin-kara-site-polish button:focus-visible,
body.emin-kara-site-polish input:focus-visible,
body.emin-kara-site-polish select:focus-visible,
body.emin-kara-site-polish textarea:focus-visible {
	outline: 3px solid var(--emin-accent-ring);
	outline-offset: 2px;
	border-radius: var(--emin-radius-sm);
}

/* ───────────────────────────────────────
   Forms (inputs, textarea, select)
   ─────────────────────────────────────── */

body.emin-kara-site-polish input[type="text"],
body.emin-kara-site-polish input[type="email"],
body.emin-kara-site-polish input[type="tel"],
body.emin-kara-site-polish input[type="url"],
body.emin-kara-site-polish input[type="password"],
body.emin-kara-site-polish input[type="number"],
body.emin-kara-site-polish input[type="search"],
body.emin-kara-site-polish textarea,
body.emin-kara-site-polish .form-control,
body.emin-kara-site-polish .woocommerce form .form-row input.input-text,
body.emin-kara-site-polish .woocommerce form .form-row textarea {
	width: 100%;
	padding: 0.75rem 1rem;
	font-size: 0.95rem;
	font-weight: 500;
	line-height: 1.45;
	color: var(--emin-fg);
	background: #fff;
	border: 1px solid var(--emin-border-strong);
	border-radius: var(--emin-radius-md);
	box-shadow: none;
	transition: border-color 0.15s var(--emin-ease), box-shadow 0.15s var(--emin-ease);
}

body.emin-kara-site-polish input:focus,
body.emin-kara-site-polish textarea:focus,
body.emin-kara-site-polish .woocommerce form .form-row input.input-text:focus,
body.emin-kara-site-polish .woocommerce form .form-row textarea:focus {
	border-color: var(--emin-accent);
	box-shadow: 0 0 0 3px var(--emin-accent-soft);
	outline: none;
}

body.emin-kara-site-polish label,
body.emin-kara-site-polish .woocommerce form .form-row label {
	font-size: 0.82rem;
	font-weight: 600;
	color: var(--emin-fg-soft);
	letter-spacing: 0.01em;
	margin-bottom: 0.35rem;
	display: inline-block;
}

body.emin-kara-site-polish .woocommerce form .form-row label .required {
	color: var(--emin-danger);
	text-decoration: none;
}

body.emin-kara-site-polish select:not(.emin-swatch-select) {
	width: 100%;
	padding: 0.75rem 2.5rem 0.75rem 1rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--emin-fg);
	background-color: #fff;
	background-image:
		linear-gradient(45deg, transparent 50%, var(--emin-fg-soft) 50%),
		linear-gradient(135deg, var(--emin-fg-soft) 50%, transparent 50%);
	background-position: calc(100% - 1.25rem) 50%, calc(100% - 0.85rem) 50%;
	background-size: 6px 6px, 6px 6px;
	background-repeat: no-repeat;
	border: 1px solid var(--emin-border-strong);
	border-radius: var(--emin-radius-md);
	appearance: none;
	cursor: pointer;
}

body.emin-kara-site-polish select:not(.emin-swatch-select):hover {
	border-color: var(--emin-fg-soft);
}

body.emin-kara-site-polish select:not(.emin-swatch-select):focus {
	border-color: var(--emin-accent);
	box-shadow: 0 0 0 3px var(--emin-accent-soft);
	outline: none;
}

/* ───────────────────────────────────────
   Buttons (theme + WooCommerce alignment)
   ─────────────────────────────────────── */

body.emin-kara-site-polish .button,
body.emin-kara-site-polish button,
body.emin-kara-site-polish input[type="submit"],
body.emin-kara-site-polish input[type="button"],
body.emin-kara-site-polish .woocommerce a.button,
body.emin-kara-site-polish .woocommerce button.button,
body.emin-kara-site-polish .woocommerce input.button,
body.emin-kara-site-polish .woocommerce .button,
body.emin-kara-site-polish .woocommerce #respond input#submit,
body.emin-kara-site-polish .woocommerce-page a.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.8rem 1.35rem;
	font-family: var(--emin-font-text);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	line-height: 1;
	color: #fff;
	background: var(--emin-accent);
	border: none;
	border-radius: var(--emin-radius-md);
	text-decoration: none;
	cursor: pointer;
	min-height: 2.85rem;
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
	transition:
		transform 0.15s var(--emin-ease),
		background 0.18s var(--emin-ease),
		box-shadow 0.2s var(--emin-ease),
		color 0.15s var(--emin-ease);
}

body.emin-kara-site-polish .button:hover,
body.emin-kara-site-polish button:hover,
body.emin-kara-site-polish input[type="submit"]:hover,
body.emin-kara-site-polish .woocommerce a.button:hover,
body.emin-kara-site-polish .woocommerce button.button:hover {
	transform: translateY(-1px);
	box-shadow: var(--emin-shadow-2);
	color: #fff;
	opacity: 1;
}

body.emin-kara-site-polish .button:active,
body.emin-kara-site-polish .woocommerce button.button:active {
	transform: translateY(0);
	box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12);
}

body.emin-kara-site-polish .button:disabled,
body.emin-kara-site-polish button:disabled,
body.emin-kara-site-polish .woocommerce a.button.disabled,
body.emin-kara-site-polish .woocommerce button.button.disabled {
	opacity: 0.45;
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}

/* Secondary / outline variant (alt buttons) */
body.emin-kara-site-polish .button.alt.wc-backward,
body.emin-kara-site-polish .woocommerce a.button.alt.wc-backward,
body.emin-kara-site-polish .wc-backward {
	background: transparent;
	color: var(--emin-accent);
	border: 1px solid var(--emin-border-strong);
}

body.emin-kara-site-polish .button.alt.wc-backward:hover,
body.emin-kara-site-polish .wc-backward:hover {
	background: var(--emin-bg-muted);
	color: var(--emin-accent);
}

/* ───────────────────────────────────────
   Notices / messages
   ─────────────────────────────────────── */

body.emin-kara-site-polish .woocommerce-message,
body.emin-kara-site-polish .woocommerce-info,
body.emin-kara-site-polish .woocommerce-error,
body.emin-kara-site-polish .woocommerce-notice,
body.emin-kara-site-polish ul.woocommerce-error {
	padding: 0.95rem 1.25rem 0.95rem 3.2rem;
	border-radius: var(--emin-radius-md);
	border: 1px solid var(--emin-border);
	background: var(--emin-bg-soft);
	color: var(--emin-fg);
	font-size: 0.93rem;
	line-height: 1.55;
	margin: 0 0 1.25rem;
	box-shadow: var(--emin-shadow-1);
	position: relative;
}

body.emin-kara-site-polish .woocommerce-message::before,
body.emin-kara-site-polish .woocommerce-info::before,
body.emin-kara-site-polish .woocommerce-error::before {
	left: 1.1rem !important;
	top: 1rem !important;
	color: var(--emin-fg-soft);
}

body.emin-kara-site-polish .woocommerce-message {
	border-color: #bbf7d0;
	background: #f0fdf4;
}
body.emin-kara-site-polish .woocommerce-message::before {
	color: var(--emin-success);
}

body.emin-kara-site-polish .woocommerce-error,
body.emin-kara-site-polish ul.woocommerce-error {
	border-color: #fecaca;
	background: #fef2f2;
}
body.emin-kara-site-polish .woocommerce-error::before {
	color: var(--emin-danger);
}

body.emin-kara-site-polish .woocommerce-message a.button,
body.emin-kara-site-polish .woocommerce-info a.button {
	padding: 0.55rem 1rem;
	min-height: 2.4rem;
	font-size: 0.85rem;
	margin-left: 0.75rem;
}

/* ───────────────────────────────────────
   WooCommerce tables (cart, orders, my-account)
   ─────────────────────────────────────── */

body.emin-kara-site-polish .woocommerce table.shop_table,
body.emin-kara-site-polish .woocommerce-page table.shop_table {
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-lg);
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: #fff;
	box-shadow: var(--emin-shadow-1);
	margin: 0 0 1.5rem;
}

body.emin-kara-site-polish .woocommerce table.shop_table th {
	background: var(--emin-bg-soft);
	color: var(--emin-fg-soft);
	font-weight: 600;
	font-size: 0.78rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 0.95rem 1rem;
	border-bottom: 1px solid var(--emin-border);
	text-align: left;
}

body.emin-kara-site-polish .woocommerce table.shop_table td {
	padding: 1rem;
	border-top: 1px solid var(--emin-border);
	vertical-align: middle;
	font-size: 0.95rem;
}

body.emin-kara-site-polish .woocommerce table.shop_table td.product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: var(--emin-radius-sm);
	border: 1px solid var(--emin-border);
}

body.emin-kara-site-polish .woocommerce table.shop_table tr.cart_item:hover {
	background: var(--emin-bg-soft);
}

body.emin-kara-site-polish .woocommerce table.shop_table .product-price,
body.emin-kara-site-polish .woocommerce table.shop_table .product-subtotal,
body.emin-kara-site-polish .woocommerce table.shop_table .product-total {
	font-weight: 600;
}

body.emin-kara-site-polish .woocommerce-cart-form .actions .coupon {
	display: flex;
	gap: 0.5rem;
	align-items: center;
	flex-wrap: wrap;
}

body.emin-kara-site-polish .woocommerce-cart-form .actions .coupon input.input-text {
	max-width: 16rem;
}

/* Quantity control (cart + product) */
body.emin-kara-site-polish .woocommerce .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--emin-border-strong);
	border-radius: var(--emin-radius-md);
	background: #fff;
	overflow: hidden;
}

body.emin-kara-site-polish .woocommerce .quantity input.qty {
	width: 3.25rem;
	height: 2.75rem;
	padding: 0;
	border: none;
	text-align: center;
	font-weight: 600;
	color: var(--emin-fg);
	background: transparent;
	box-shadow: none;
}

/* ───────────────────────────────────────
   Cart + Checkout totals
   ─────────────────────────────────────── */

body.emin-kara-site-polish .cart_totals,
body.emin-kara-site-polish .woocommerce .cart_totals,
body.emin-kara-site-polish .woocommerce-checkout-review-order,
body.emin-kara-site-polish #order_review {
	background: #fff;
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-lg);
	padding: 1.5rem;
	box-shadow: var(--emin-shadow-1);
}

body.emin-kara-site-polish .cart_totals h2,
body.emin-kara-site-polish #order_review_heading {
	font-size: 1.2rem;
	margin: 0 0 1rem;
	font-weight: 600;
}

body.emin-kara-site-polish .woocommerce-shipping-methods,
body.emin-kara-site-polish ul.wc_payment_methods {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

body.emin-kara-site-polish ul.wc_payment_methods li {
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-md);
	padding: 0.85rem 1rem;
	margin: 0 0 0.6rem;
	background: #fff;
	transition: border-color 0.15s var(--emin-ease);
}

body.emin-kara-site-polish ul.wc_payment_methods li:hover {
	border-color: var(--emin-fg-soft);
}

body.emin-kara-site-polish ul.wc_payment_methods li input[type="radio"] {
	margin-right: 0.5rem;
}

body.emin-kara-site-polish .payment_box {
	background: var(--emin-bg-soft);
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-sm);
	padding: 0.9rem;
	font-size: 0.9rem;
	color: var(--emin-fg-soft);
	margin: 0.6rem 0 0;
}

body.emin-kara-site-polish .woocommerce-checkout-payment {
	background: var(--emin-bg-soft);
	border-radius: var(--emin-radius-md);
	padding: 1.25rem;
	margin-top: 1rem;
}

/* ───────────────────────────────────────
   Shop archive cards
   ─────────────────────────────────────── */

body.emin-kara-site-polish ul.products li.product,
body.emin-kara-site-polish .woocommerce-page ul.products li.product,
body.emin-kara-site-polish .woocommerce ul.products li.product {
	background: #fff;
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-lg);
	padding: 1rem;
	transition: transform 0.2s var(--emin-ease), box-shadow 0.2s var(--emin-ease);
}

body.emin-kara-site-polish ul.products li.product:hover {
	transform: translateY(-2px);
	box-shadow: var(--emin-shadow-2);
}

body.emin-kara-site-polish ul.products li.product img {
	border-radius: var(--emin-radius-md);
	aspect-ratio: 4 / 5;
	object-fit: cover;
	width: 100%;
	margin: 0 0 0.85rem;
}

body.emin-kara-site-polish ul.products li.product h2.woocommerce-loop-product__title,
body.emin-kara-site-polish ul.products li.product .woocommerce-loop-product__title {
	font-size: 0.98rem;
	font-weight: 600;
	line-height: 1.35;
	margin: 0 0 0.45rem;
	color: var(--emin-fg);
}

body.emin-kara-site-polish ul.products li.product .price {
	color: var(--emin-price);
	font-weight: 700;
	font-size: 1rem;
}

body.emin-kara-site-polish ul.products li.product a.button {
	width: 100%;
	margin-top: 0.75rem;
}

/* ───────────────────────────────────────
   enpapa.gr — b2b.stewehome.gr-style lines under product card title
   (price + delivery + free shipping + brand)
   ─────────────────────────────────────── */

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-b2b,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-b2b {
	margin: 0.25rem 0 0.55rem;
	display: grid;
	gap: 0.3rem;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-brand,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-brand {
	display: flex;
	gap: 0.35rem;
	align-items: baseline;
	font-size: 0.78rem;
	color: var(--emin-fg-soft);
	min-height: 1.15em; /* keep rows aligned when brand missing */
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-brand-label,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-brand-label {
	font-weight: 700;
	color: var(--emin-muted);
	min-width: 3.75rem;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-brand-value,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-brand-value {
	font-weight: 700;
	color: var(--emin-fg);
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-brand--empty .stewe-archive-brand-value,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-brand--empty .stewe-archive-brand-value {
	color: transparent;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-price,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-price {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	align-items: baseline;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-label,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-label {
	font-size: 0.78rem;
	font-weight: 800;
	color: var(--emin-muted);
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-value,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-value {
	font-weight: 900;
	color: #e53935; /* enpapa red */
	font-size: 1.02rem;
}

/* Single-price mode: hide any stray sale del/ins if theme adds them elsewhere. */
body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-value del,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-value del,
body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-value ins,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-value ins {
	display: none !important;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-shipping-wrap,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-shipping-wrap {
	display: grid;
	gap: 0.25rem;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-delivery-box,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-delivery-box {
	font-size: 0.78rem;
	font-weight: 700;
	color: #166534;
	min-height: 1.15em; /* keep rows aligned when empty */
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-delivery-box--empty,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-delivery-box--empty {
	color: transparent;
}

body.emin-kara-site-polish.emin-kara-host-enpapa ul.products li.product .stewe-archive-free-box,
body.emin-kara-site-polish.emin-kara-host-enpapa .products li.product .stewe-archive-free-box {
	font-size: 0.78rem;
	font-weight: 800;
	color: #b91c1c;
}

/* ───────────────────────────────────────
   My account
   ─────────────────────────────────────── */

body.emin-kara-site-polish .woocommerce-MyAccount-navigation ul,
body.emin-kara-site-polish .woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0 0 1.5rem;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

body.emin-kara-site-polish .woocommerce-MyAccount-navigation ul li a {
	display: block;
	padding: 0.65rem 0.85rem;
	border-radius: var(--emin-radius-sm);
	color: var(--emin-fg-soft);
	text-decoration: none;
	font-weight: 500;
	transition: background 0.15s var(--emin-ease), color 0.15s var(--emin-ease);
}

body.emin-kara-site-polish .woocommerce-MyAccount-navigation ul li a:hover {
	background: var(--emin-bg-soft);
	color: var(--emin-fg);
}

body.emin-kara-site-polish .woocommerce-MyAccount-navigation ul li.is-active a,
body.emin-kara-site-polish .woocommerce-MyAccount-navigation ul li.is-active a:hover {
	background: var(--emin-accent);
	color: #fff;
}

/* ───────────────────────────────────────
   Thank-you (order received)
   ─────────────────────────────────────── */

body.emin-kara-site-polish .woocommerce-order {
	max-width: 920px;
	margin-inline: auto;
	padding: clamp(1rem, 2vw, 2rem) clamp(1rem, 3vw, 2rem);
}

body.emin-kara-site-polish .woocommerce-order .woocommerce-notice {
	font-size: 1.1rem;
	padding: 1.25rem 1.5rem;
	background: var(--emin-bg-soft);
	border: 1px solid var(--emin-border);
}

body.emin-kara-site-polish .woocommerce-order ul.woocommerce-order-overview {
	list-style: none;
	padding: 1.25rem;
	margin: 0 0 1.5rem;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 1rem;
	background: #fff;
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-lg);
	box-shadow: var(--emin-shadow-1);
}

body.emin-kara-site-polish .woocommerce-order ul.woocommerce-order-overview li {
	border: none !important;
	padding: 0 !important;
	margin: 0 !important;
	font-size: 0.78rem;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--emin-muted);
	font-weight: 600;
}

body.emin-kara-site-polish .woocommerce-order ul.woocommerce-order-overview li strong {
	display: block;
	margin-top: 0.25rem;
	font-size: 1.05rem;
	text-transform: none;
	letter-spacing: -0.01em;
	color: var(--emin-fg);
	font-weight: 700;
}

body.emin-kara-site-polish .woocommerce-order-details,
body.emin-kara-site-polish .woocommerce-customer-details {
	background: #fff;
	border: 1px solid var(--emin-border);
	border-radius: var(--emin-radius-lg);
	padding: 1.5rem;
	margin: 0 0 1.25rem;
	box-shadow: var(--emin-shadow-1);
}

body.emin-kara-site-polish .woocommerce-order-details h2,
body.emin-kara-site-polish .woocommerce-customer-details h2,
body.emin-kara-site-polish .woocommerce-column__title {
	font-size: 1.1rem;
	font-weight: 600;
	margin: 0 0 0.75rem;
}

/* ───────────────────────────────────────
   Breadcrumbs
   ─────────────────────────────────────── */

body.emin-kara-site-polish .woocommerce-breadcrumb {
	font-size: 0.8rem;
	color: var(--emin-muted);
	letter-spacing: 0.01em;
	margin: 0.25rem 0 1rem;
}

body.emin-kara-site-polish .woocommerce-breadcrumb a {
	color: var(--emin-fg-soft);
	text-decoration: none;
}

body.emin-kara-site-polish .woocommerce-breadcrumb a:hover {
	color: var(--emin-accent);
}

/* ───────────────────────────────────────
   Containers: soft "card" surfaces when plugins emit raw wrappers
   ─────────────────────────────────────── */

body.emin-kara-site-polish .wp-block-group.has-background,
body.emin-kara-site-polish .wp-block-column.has-background {
	border-radius: var(--emin-radius-lg);
}

body.emin-kara-site-polish .wp-block-button__link,
body.emin-kara-site-polish .wp-block-search__button {
	border-radius: var(--emin-radius-md) !important;
	font-weight: 700 !important;
	letter-spacing: 0.02em;
}

/* ───────────────────────────────────────
   Selection + scrollbars
   ─────────────────────────────────────── */

body.emin-kara-site-polish ::selection {
	background: var(--emin-accent);
	color: #fff;
}

@media (pointer: fine) {
	body.emin-kara-site-polish {
		scrollbar-width: thin;
		scrollbar-color: var(--emin-border-strong) transparent;
	}
	body.emin-kara-site-polish *::-webkit-scrollbar {
		width: 10px;
		height: 10px;
	}
	body.emin-kara-site-polish *::-webkit-scrollbar-thumb {
		background: var(--emin-border-strong);
		border-radius: 999px;
	}
	body.emin-kara-site-polish *::-webkit-scrollbar-thumb:hover {
		background: var(--emin-fg-soft);
	}
}
