/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

/* ============================================================
   Primary Color Overrides
   Replaces #c36 from parent reset.css with brand color #8E579F
   ============================================================ */

:root {
	--color-primary:      #8E579F;
	--color-primary-dark: #6b3f78;
}

/* --- Links --- */
a {
	color: var(--color-primary);
}

a:active,
a:hover {
	color: var(--color-primary-dark);
}

/* --- Buttons (reset.css defaults) — solid fill, white text, black on hover --- */
/* ── Override reset.css #c36 red rules ── */
/* reset.css sets links and buttons to #c36; we neutralise those here */
a:not([class]) {
	color: inherit;
}

[type=button],
[type=submit],
button {
	background-color: transparent;
	border: none;
	color: inherit;
}

[type=button]:focus,
[type=button]:hover,
[type=submit]:focus,
[type=submit]:hover,
button:focus,
button:hover {
	background-color: transparent;
	color: inherit;
	text-decoration: none;
}
[type=submit]:not(.zeta-pill),
button:not(.zeta-pill):not(.zeta-icon-btn):not(.zeta-hamburger):not(.zeta-search-close) {
	background-color: var(--color-primary);
	border-color:     var(--color-primary);
	color:            #fff;
}

[type=button]:not(.zeta-pill):not(.zeta-icon-btn):not(.zeta-hamburger):focus,
[type=button]:not(.zeta-pill):not(.zeta-icon-btn):not(.zeta-hamburger):hover,
[type=submit]:not(.zeta-pill):focus,
[type=submit]:not(.zeta-pill):hover,
button:not(.zeta-pill):not(.zeta-icon-btn):not(.zeta-hamburger):not(.zeta-search-close):focus,
button:not(.zeta-pill):not(.zeta-icon-btn):not(.zeta-hamburger):not(.zeta-search-close):hover {
	background-color: #111;
	border-color:     #111;
	color: #fff;
}

/* ============================================================
   Custom Header
   ============================================================ */

.zeta-header {
	position: sticky;
	top: 0;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #e8e8e8;
	box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.zeta-header-inner {
	display: flex;
	align-items: center;
	gap: 32px;
	max-width: 1280px;
	margin: 0 auto;
	height: 70px;
}

/* ── Logo ── */
.zeta-header-logo {
	flex-shrink: 0;
}

.zeta-header-logo a,
.zeta-header-logo img {
	display: block;
}

.zeta-header-logo img {
	width: 200px;
	max-width: 200px;
	height: auto;
}

.zeta-site-name {
	font-size: 1.2rem;
	font-weight: 700;
	color: #111;
	text-decoration: none;
	white-space: nowrap;
}

/* ── Primary nav ── */
.zeta-header-nav {
	flex: 1;
}

.zeta-nav-menu {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
	gap: 4px;
}

.zeta-nav-menu li {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
}

.zeta-nav-menu > li > a {
	display: block;
	padding: 8px 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #111;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.15s;
}

.zeta-nav-menu > li > a:hover,
.zeta-nav-menu > li.current-menu-item > a,
.zeta-nav-menu > li.current-menu-ancestor > a {
	color: var(--color-primary);
}

/* Dropdown */
.zeta-nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 200px;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-top: 2px solid var(--color-primary);
	box-shadow: 0 4px 16px rgba(0,0,0,.1);
	list-style: none;
	padding: 6px 0;
	margin: 0;
	z-index: 100;
}

.zeta-nav-menu li:hover > .sub-menu,
.zeta-nav-menu li:focus-within > .sub-menu {
	display: block;
}

.zeta-nav-menu .sub-menu a {
	display: block;
	padding: 8px 16px;
	font-size: 13px;
	font-weight: 500;
	color: #333;
	text-decoration: none;
	transition: background 0.1s, color 0.1s;
}

.zeta-nav-menu .sub-menu a:hover {
	background: #f5f5f5;
	color: var(--color-primary);
}

/* ── Right section ── */
.zeta-header-right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

/* ── Icon buttons ── */
.zeta-header-icons {
	display: flex;
	align-items: center;
	gap: 4px;
}

.zeta-icon-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 38px;
	height: 38px;
	color: #333 !important;
	background: none !important;
	border: none !important;
	border-radius: 50%;
	cursor: pointer;
	text-decoration: none;
	transition: color 0.15s, background 0.15s;
	padding: 0;
	outline-offset: 2px;
}

.zeta-icon-btn:hover,
.zeta-icon-btn:active,
.zeta-icon-btn:focus {
	color: var(--color-primary) !important;
	background: #f5f0f7 !important;
}

/* Active state when search bar is open */
.zeta-icon-btn.zeta-search-toggle--active,
.zeta-icon-btn.zeta-search-toggle--active:focus {
	color: #fff !important;
	background: var(--color-primary) !important;
}

/* Cart count badge */
.zeta-cart-count {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	background: var(--color-primary);
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	border-radius: 8px;
	text-align: center;
}

.zeta-cart-count--empty {
	display: none;
}

/* ── CTA Buttons ── */
.zeta-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 7px;
	height: 45px;
	padding: 0 18px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-decoration: none;
	white-space: nowrap;
	cursor: pointer;
	border: none;
	transition: background-color 0.2s, filter 0.2s;
}

.zeta-btn-brand {
	background-color: var(--color-primary);
	color: #fff !important;
}

.zeta-btn-brand:hover,
.zeta-btn-brand:active {
	background-color: #111;
	color: #fff !important;
}

/* Make brand icon same size as WhatsApp icon */
.zeta-btn-brand svg {
	width: 20px !important;
	height: 20px !important;
	flex-shrink: 0;
}

.zeta-btn-whatsapp {
	background-color: #25D366;
	color: #fff !important;
	width: 45px;
	padding: 0;
}

.zeta-btn-whatsapp:hover,
.zeta-btn-whatsapp:active {
	background-color: #1da851;
	color: #fff !important;
}

/* ── Search bar ── */
.zeta-search-bar {
	background: #f9f9f9;
	border-top: 1px solid #e8e8e8;
	padding: 12px 24px;
}

.zeta-search-bar[hidden] {
	display: none;
}

.zeta-search-bar-inner {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 10px;
	max-width: 1400px;
	margin: 0 auto;
}

.zeta-search-bar-inner .search-form {
	display: flex;
	gap: 8px;
	width: 380px;
}

.zeta-search-bar-inner .search-field {
	flex: 1;
	height: 40px;
	padding: 0 14px;
	font-size: 0.9rem;
}

/* Close button — bare X, no frame */
.zeta-search-close {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: #444 !important;
	cursor: pointer;
	padding: 4px;
	display: flex;
	align-items: center;
	outline: none;
}

.zeta-search-close:hover,
.zeta-search-close:focus {
	background: none !important;
	color: #111 !important;
}

/* Search submit button — text-only, no background */
.zeta-search-bar-inner [type=submit],
.zeta-search-bar-inner .search-submit {
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	color: #555 !important;
	padding: 0 8px !important;
	font-size: 0.85rem;
	font-weight: 600;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
}

.zeta-search-bar-inner [type=submit]:hover,
.zeta-search-bar-inner .search-submit:hover {
	background: none !important;
	color: #111 !important;
}

/* ── Mobile menu ── */
.zeta-mobile-menu {
	background: #fff;
	border-top: 1px solid #e8e8e8;
	padding: 12px 24px 20px;
}

.zeta-mobile-menu[hidden] {
	display: none;
}

.zeta-mobile-nav-menu {
	list-style: none;
	padding: 0;
	margin: 0;
}

.zeta-mobile-nav-menu a {
	display: block;
	padding: 10px 0;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #111;
	text-decoration: none;
	border-bottom: 1px solid #f0f0f0;
}

.zeta-mobile-nav-menu a:hover {
	color: var(--color-primary);
}

.zeta-mobile-nav-menu .sub-menu {
	list-style: none;
	padding-left: 16px;
	margin: 0;
}

.zeta-mobile-nav-menu .sub-menu a {
	font-size: 13px;
	font-weight: 400;
	text-transform: none;
}

/* Mobile brand button at bottom of mobile menu */
.zeta-mobile-brand {
	padding-top: 16px;
	border-top: 1px solid #f0f0f0;
	margin-top: 4px;
}

.zeta-mobile-brand .zeta-btn-brand {
	width: auto;
	padding: 10px 18px;
}

.zeta-mobile-brand .zeta-btn-brand span {
	display: inline !important;
}

/* ── Hamburger ── */
.zeta-hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	width: 45px;
	height: 45px;
	background: var(--color-primary) !important;
	border: none !important;
	border-radius: 4px;
	cursor: pointer;
	padding: 6px;
	transition: background 0.2s;
	position: relative;
}

.zeta-hamburger:focus,
.zeta-hamburger:focus-visible,
.zeta-hamburger:hover {
	outline: none !important;
	background: var(--color-primary) !important;
	background-color: var(--color-primary) !important;
	box-shadow: none;
}

/* Hamburger lines — shown when closed */
.zeta-hamburger span {
	display: block;
	height: 2px;
	width: 20px;
	background: #fff;
	border-radius: 2px;
	transition: opacity 0.2s, transform 0.2s;
	transform-origin: center;
}

/* Cross icon — when open, morph lines 1 & 3 into an X, hide line 2 */
.zeta-hamburger[aria-expanded="true"] span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.zeta-hamburger[aria-expanded="true"] span:nth-child(2) {
	opacity: 0;
}

.zeta-hamburger[aria-expanded="true"] span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

/* ── Responsive ── */
@media ( max-width: 1024px ) {
	.zeta-header-nav {
		display: none;
	}

	.zeta-hamburger {
		display: flex;
	}

	/* Hide header brand button; it lives inside the mobile menu instead */
	.zeta-header-right > .zeta-btn-brand {
		display: none !important;
	}
}

@media ( max-width: 600px ) {
	.zeta-header-inner {
		gap: 12px;
		padding: 0 16px;
	}

	.zeta-header-logo img {
		width: 140px;
		max-width: 140px;
	}
}

/* ============================================================
   Single Product — Two-Column Layout (main + sidebar)
   ============================================================ */

.zeta-single-product-layout {
	display: flex;
	gap: 40px;
	align-items: flex-start;
}

.zeta-product-main {
	flex: 1;
	min-width: 0;
}

/* ── Sidebar ── */
.zeta-product-sidebar {
	width: 260px;
	flex-shrink: 0;
	border-left: 1px solid #e5e5e5;
	padding-left: 30px;
}

.zeta-sidebar-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}

.zeta-sidebar-title {
	font-size: 1rem;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.zeta-sidebar-nav {
	display: flex;
	gap: 4px;
}

.zeta-sidebar-nav button {
	width: 28px;
	height: 28px;
	padding: 0;
	border: 1px solid #ddd;
	border-radius: 50%;
	background: #fff;
	color: #555;
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
}

.zeta-sidebar-nav button:hover {
	border-color: var(--color-primary);
	color: var(--color-primary);
	background: #fff;
}

/* ── Related product items ── */
.zeta-related-item {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px 0;
	border-bottom: 1px solid #f0f0f0;
	text-decoration: none;
	color: inherit;
	transition: opacity 0.15s;
}

.zeta-related-item:hover {
	opacity: 0.8;
}

.zeta-related-image {
	width: 60px;
	flex-shrink: 0;
}

.zeta-related-image img {
	width: 60px;
	height: 60px;
	object-fit: contain;
	display: block;
}

.zeta-related-info h4 {
	font-size: 0.82rem;
	font-weight: 500;
	color: #333;
	margin: 0 0 5px;
	line-height: 1.35;
}

.zeta-related-info .price {
	font-size: 0.82rem;
	font-weight: 600;
	color: #333;
}

.zeta-related-info .woocommerce-product-rating {
	margin: 2px 0 5px;
}

.zeta-related-info .star-rating {
	font-size: 0.7rem;
}

@media ( max-width: 1024px ) {
	.zeta-single-product-layout {
		flex-direction: column;
	}

	.zeta-product-sidebar {
		width: 100%;
		border-left: none;
		border-top: 1px solid #e5e5e5;
		padding-left: 0;
		padding-top: 30px;
	}

	.zeta-related-products {
		display: flex;
		flex-wrap: wrap;
		gap: 16px;
	}

	.zeta-related-item {
		width: calc( 50% - 8px );
		border-bottom: none;
	}
}

/* ============================================================
   Variation Pills
   ============================================================ */

/* Hide the native <select> when pills are active */
.variations select.zeta-pill-hidden {
	display: none !important;
}

/* Variations: stacked layout — label on its own row, pills below */
.variations_form .variations {
	width: 100%;
	border: none;
	margin-bottom: 0;
	background: none;
}

.variations_form .variations tbody {
	display: block;
	background: none;
}

.variations_form .variations tr {
	display: block;
	margin-bottom: 16px;
	background: none;
}

/* Strip all default table-cell styling */
.variations_form .variations th,
.variations_form .variations td {
	border: none;
	background: none;
	padding: 0;
	vertical-align: top;
}

/* Label — full-width row on top */
.variations_form .variations .label,
.variations_form .variations th.label {
	display: block;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-align: left !important;
	color: #333;
	margin-bottom: 10px;
	padding: 0;
	background: none;
	border: none;
}

/* Remove the colon injected in previous iteration */
.variations_form .variations .label label::after {
	content: none;
}

/* Value cell */
.variations_form .variations .value {
	display: block;
	padding: 0;
	flex: unset;
}

/* ── Pills container ── */
.zeta-variation-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 0;
}

/* ── Individual pill — higher specificity beats Elementor kit ── */
.zeta-variation-pills .zeta-pill {
	padding: 4px 10px !important;
	border: 1px solid #333 !important;
	border-radius: 3px !important;
	background: #fff !important;
	color: #333 !important;
	font-size: 0.78rem !important;
	font-family: inherit;
	line-height: 1.5;
	cursor: pointer;
	transition: border-color 0.15s, background-color 0.15s, color 0.15s;
	white-space: nowrap;
}

.zeta-variation-pills .zeta-pill:hover:not(.disabled):not(.selected) {
	background-color: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
}

.zeta-variation-pills .zeta-pill.selected {
	background-color: #333 !important;
	border-color: #333 !important;
	color: #fff !important;
}

.zeta-variation-pills .zeta-pill.disabled {
	background: #fff !important;
	border-color: #ccc !important;
	color: #bbb !important;
	opacity: 0.5 !important;
	cursor: not-allowed;
	pointer-events: none;
}

/* ── Clear link ── */
.reset_variations {
	display: inline-block;
	margin-top: 10px;
	font-size: 0.78rem;
	color: #888;
	text-decoration: underline;
}

/* --- WooCommerce buttons --- */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .button {
	background-color: var(--color-primary);
	border-color:     var(--color-primary);
	color: #fff;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce .button:hover {
	background-color: var(--color-primary-dark);
	border-color:     var(--color-primary-dark);
	color: #fff;
}

/* ============================================================
   Single Product — Additional Fixes
   ============================================================ */

/* ── Breadcrumb ── */
.zeta-breadcrumb {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0;
	color: #aaa;
	margin-top: 24px;
	margin-bottom: 20px;
	line-height: 1;
}

.zeta-breadcrumb a {
	color: #aaa;
	text-decoration: none;
}

.zeta-breadcrumb a:hover,
.zeta-breadcrumb a:active {
	color: #333;
}

.zeta-breadcrumb-sep {
	margin: 0 6px;
	color: #ccc;
}

.zeta-breadcrumb-current {
	color: #333;
}

/* ── Product title ── */
.woocommerce div.product h1.product_title.entry-title {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.25;
	margin-bottom: 8px;
	color: #111;
}

/* Thin dividers — under title and after SKU */
.woocommerce div.product hr.zeta-title-hr {
	border: none;
	border-top: 1px solid #e0e0e0;
	margin: 8px 0 14px;
}

/* ── Price ── */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	font-size: 1.2rem !important;
	font-weight: 600 !important;
	color: #111 !important; /* ensures the – dash between range prices is also #111 */
}

/* ── SKU line ── */
.zeta-meta-sku {
	font-size: 13px;
	color: #555;
}

.zeta-meta-sku--hidden {
	display: none !important;
}

.zeta-meta-sku--visible {
	display: block !important;
}

@keyframes zeta-sku-slide-in {
	from {
		opacity: 0;
		transform: translateY( -5px );
	}
	to {
		opacity: 1;
		transform: translateY( 0 );
	}
}

.zeta-meta-sku .sku.zeta-sku-updated {
	animation: zeta-sku-slide-in 0.35s ease;
}

.zeta-meta-sku .sku_wrapper {
	font-size: 13px;
	font-weight: 700; /* "Stok kodu:" text is bold */
	color: #333;
}

.zeta-meta-sku .sku_wrapper .sku {
	font-weight: 400; /* SKU number is normal weight */
	color: #555;
}

/* Main TRY price amounts — force #111 */
.woocommerce div.product .price .woocommerce-Price-amount,
.woocommerce div.product .price ins .woocommerce-Price-amount {
	color: #111 !important;
}

/* EUR secondary price — undo the #111 override above */
.woocommerce div.product .price .emc-eur-price,
.woocommerce div.product .price .emc-eur-price .woocommerce-Price-amount {
	color: #888 !important;
}

/* Variation selected price — fade in on each change */
@keyframes zetaPriceFadeIn {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}

.zeta-variation-price-display {
	font-size: 1.4rem;
	font-weight: 700;
	color: #111;
	margin: 6px 0 14px;
	animation: zetaPriceFadeIn 0.2s ease;
}

/* Hide range price when a variation is selected */
.summary.zeta-variation-selected > p.price,
.entry-summary.zeta-variation-selected > p.price,
.summary.zeta-variation-selected > span.price,
.entry-summary.zeta-variation-selected > span.price {
	display: none !important;
}

/* Hide WC's own variation price (we render it near the title instead) */
.single_variation_wrap .woocommerce-variation-price {
	display: none !important;
}

/* ── Contain internal floats (gallery + summary) ── */
.woocommerce div.product::after {
	content: '';
	display: table;
	clear: both;
}

/* ── Add-to-cart button ── */
.woocommerce .single_add_to_cart_button.button {
	background-color: #111 !important;
	border-color: #111 !important;
	color: #fff !important;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	font-weight: 700;
	font-size: 0.82rem;
	padding: 11px 24px !important;
	height: auto;
	line-height: 1.5;
}

.woocommerce .single_add_to_cart_button.button:hover {
	background-color: #333 !important;
	border-color: #333 !important;
}

/* ── Cart form row (qty + button) ── */
.woocommerce div.product form.cart .variations {
	margin-bottom: 0 !important;
}

.woocommerce form.cart {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-top: 16px;
}

/* ── Additional Information (Ek bilgi) table ── */
.woocommerce-product-attributes {
	width: 100%;
	border-collapse: collapse;
	border: none !important;
	margin-top: 20px;
	background: #f7f7f7;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
	border: none !important;
	border-bottom: 1px solid #e4e4e4 !important;
	background: none !important;
	text-align: left !important;
	font-style: normal !important;
	padding: 12px 16px !important;
	vertical-align: middle !important;
}

.woocommerce-product-attributes tr:last-child th,
.woocommerce-product-attributes tr:last-child td {
	border-bottom: none !important;
}

.woocommerce-product-attributes th {
	font-weight: 700;
	width: 180px;
	color: #333;
}

.woocommerce-product-attributes td {
	color: #555;
}

/* ── WooCommerce Product Tabs ── */
.woocommerce-tabs.wc-tabs-wrapper {
	clear: both;
	margin-top: 30px;
}

.woocommerce ul.wc-tabs,
.woocommerce ul.tabs.wc-tabs {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
	border-bottom: 2px solid #e8e8e8;
	display: flex;
	flex-wrap: wrap;
}

.woocommerce ul.wc-tabs > li,
.woocommerce ul.tabs.wc-tabs > li {
	list-style: none !important;
	background: none !important;
	border: none !important;
	padding: 0;
	margin: 0;
}

.woocommerce ul.wc-tabs > li::before,
.woocommerce ul.wc-tabs > li::marker {
	content: '' !important;
	display: none !important;
}

.woocommerce ul.wc-tabs > li > a,
.woocommerce ul.tabs.wc-tabs > li > a {
	display: block;
	padding: 10px 20px;
	color: #888;
	font-weight: 600;
	font-size: 0.85rem;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	margin-bottom: -2px;
	transition: color 0.15s;
}

.woocommerce ul.wc-tabs > li.active > a {
	color: #111;
	border-bottom-color: #111;
}

.woocommerce-Tabs-panel {
	padding: 24px 0;
	border: none !important;
}

.woocommerce-Tabs-panel > h2:first-child {
	font-size: 1rem;
	font-weight: 700;
	margin-bottom: 12px;
}

/* ============================================================
   ShopEngine — override red badge color
   ============================================================ */
.shopengine-comparison.badge.active,
.shopengine-comparison.badge.active *,
.shopengine-wishlist.badge.active,
.shopengine-wishlist.badge.active * {
	color: var(--color-primary) !important;
}

/* ============================================================
   Static (visible) attribute pills — inline: label + pills on same row
   ============================================================ */
.zeta-static-attributes {
	margin: 14px 0;
}

.zeta-static-attribute-group {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 10px;
}

.zeta-static-attribute-label {
	flex-shrink: 0;
	font-weight: 700;
	font-size: 0.8rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #333;
	white-space: nowrap;
}

.zeta-static-attribute-label::after {
	content: ':';
}

.zeta-static-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.zeta-static-pill {
	padding: 4px 10px;
	border: 1px solid #333;
	border-radius: 3px;
	background: #333;
	color: #fff;
	font-size: 0.78rem;
	line-height: 1.5;
	white-space: nowrap;
	pointer-events: none;
	user-select: none;
}

/* ── Quantity limit notice (moved from Endor SKU Permalinks plugin) ── */
.endor-quantity-notice {
	background-color: #e8f5e9;
	border: 1px solid #4caf50;
	border-left: 4px solid #4caf50;
	color: #2e7d32;
	padding: 12px 15px;
	margin-bottom: 20px;
	border-radius: 4px;
	font-size: 14px;
	line-height: 1.5;
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
}

.endor-quantity-notice-icon {
	font-size: 18px;
	font-weight: bold;
	flex-shrink: 0;
}

.endor-quote-link {
	color: #2e7d32;
	text-decoration: underline;
}

.endor-quote-link:hover,
.endor-quote-link:focus {
	color: #1b5e20;
	text-decoration: none;
}

/* ============================================================
   Layout — 1280px container width
   Overrides parent theme's 1140px at min-width: 1200px
   ============================================================ */
@media (min-width: 1200px) {
	.page-header .entry-title,
	.site-footer .footer-inner,
	.site-header .header-inner,
	.site-header:not(.dynamic-header),
	body:not([class*=elementor-page-]) .site-main {
		max-width: 1280px;
	}
}

/* Footer element must be full-width so its background fills edge-to-edge.
   Override all breakpoint max-widths the parent theme sets on this selector. */
.site-footer:not(.dynamic-footer) {
	max-width: 100% !important;
	width: 100% !important;
	margin-inline-start: 0 !important;
	margin-inline-end: 0 !important;
}

/* Match padding of header/footer inner so content aligns across all sections */
body:not([class*=elementor-page-]) .site-main {
	padding-inline: 24px;
	box-sizing: border-box;
}

/* ============================================================
   Sticky footer — footer always at the viewport bottom
   ============================================================ */
html {
	height: 100%;
}

body {
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

#site-footer {
	margin-top: auto;
}

/* ============================================================
   Page header — extra top breathing room
   ============================================================ */
.page-header:not(:empty) {
	margin-top: 40px;
}

/* ============================================================
   Custom Footer
   ============================================================ */

/* ── Shared inner container ── */
.zeta-footer .zeta-footer-inner {
	max-width: 1280px;
	margin-inline: auto;
	width: 100%;
	padding-inline: 24px;
	box-sizing: border-box;
}

/* ============================================================
   Search results — product card grid
   ============================================================ */

.search-results .page-content ul.products {
	display: grid !important;
	grid-template-columns: repeat( 4, 1fr );
	gap: 24px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.search-results .page-content ul.products li.product {
	margin: 0 !important;
	float: none !important;
	width: auto !important;
}

/* Product card base */
.search-results .page-content ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #f8f8f8;
	border-radius: 4px;
}

/* Hide sale badge */
.search-results .page-content ul.products li.product .onsale {
	display: none !important;
}

/* Product title — black, no underline, primary on hover */
.search-results .page-content ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
	color: #111 !important;
}

.search-results .page-content ul.products li.product a:hover .woocommerce-loop-product__title {
	color: #8E579F !important;
}

/* Remove all link underlines in cards */
.search-results .page-content ul.products li.product a,
.search-results .page-content ul.products li.product a:hover {
	text-decoration: none !important;
}

/* Price */
.search-results .page-content ul.products li.product .price {
	font-size: 13px;
	display: block;
	margin-bottom: 12px;
}

/* Seçenekler / Add to cart button */
.search-results .page-content ul.products li.product .button {
	display: inline-block;
	padding: 8px 18px;
	background: #111 !important;
	color: #fff !important;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.2s ease;
}

.search-results .page-content ul.products li.product .button:hover {
	background: #8E579F !important;
	color: #fff !important;
}

/* Margin at page bottom before footer */
.search-results .page-content {
	margin-bottom: 64px;
}

/* Pagination */
.search-results .page-content .woocommerce-pagination {
	margin-top: 32px;
	text-align: center;
}

/* Responsive: 2 columns on tablet */
@media ( max-width: 900px ) {
	.search-results .page-content ul.products {
		grid-template-columns: repeat( 2, 1fr );
	}
}

/* Responsive: 1 column on mobile */
@media ( max-width: 480px ) {
	.search-results .page-content ul.products {
		grid-template-columns: 1fr;
	}
}

/* ============================================================
   Product archive — sidebar + grid layout
   ============================================================ */

.zeta-archive-page {
	flex: 1 1 100%;
	min-width: 0;
	max-width: 1280px;
	margin-inline: auto;
	padding: 0 24px 64px;
	box-sizing: border-box;
	width: 100%;
}

/* Breadcrumb spacing */
.zeta-archive-page .zeta-breadcrumb {
	margin-bottom: 20px;
}

/* Two-column layout: sidebar | main */
.zeta-archive-layout {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 40px;
	align-items: start;
	width: 100%;
}

/* Main column — always in column 2, never collapses */
.zeta-archive-main {
	grid-column: 2;
	min-width: 0;
	width: 100%;
	min-height: 300px;
}

/* ── Sidebar ── */
.zeta-archive-sidebar {
	grid-column: 1;
	position: sticky;
	top: 100px;
}

.zeta-filter-sidebar {}

.zeta-filter-title {
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #111;
	margin: 0 0 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #111;
}

.zeta-filter-group {
	margin-bottom: 22px;
}

.zeta-filter-group-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #555;
	margin-bottom: 8px;
}

.zeta-filter-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.zeta-filter-item a {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: #333;
	text-decoration: none;
	padding: 4px 0;
	transition: color 0.15s ease;
}

.zeta-filter-item a:hover {
	color: #8E579F;
}

.zeta-filter-check {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
	border: 1.5px solid #bbb;
	border-radius: 3px;
	font-size: 10px;
	color: #fff;
	background: #fff;
	flex-shrink: 0;
	transition: background 0.15s, border-color 0.15s;
}

.zeta-filter-item--active .zeta-filter-check {
	background: #8E579F;
	border-color: #8E579F;
	color: #fff;
}

.zeta-filter-item--active a {
	color: #8E579F;
	font-weight: 600;
}

.zeta-filter-clear {
	display: inline-block;
	margin-top: 8px;
	font-size: 12px;
	color: #888;
	text-decoration: underline;
	transition: color 0.15s;
}

.zeta-filter-clear:hover {
	color: #8E579F;
}

/* ── Main area ── */
.zeta-archive-main {}

/* Category/shop title */
.zeta-archive-main .woocommerce-products-header {
	margin-bottom: 16px;
}

.zeta-archive-main .woocommerce-products-header__title,
.zeta-archive-main h1.page-title {
	font-size: 28px;
	font-weight: 700;
	color: #111;
	margin: 0 0 16px;
}

/* Sorting bar */
.zeta-archive-main .woocommerce-ordering {
	margin-bottom: 24px;
}

.zeta-archive-main .woocommerce-ordering select {
	border: 1px solid #ddd;
	border-radius: 4px;
	padding: 6px 10px;
	font-size: 13px;
}

/* Product grid — 3 columns */
.zeta-archive-main ul.products {
	display: grid !important;
	grid-template-columns: repeat( 3, 1fr );
	gap: 24px;
	list-style: none;
	margin: 0 !important;
	padding: 0;
}

.zeta-archive-main ul.products li.product {
	margin: 0 !important;
	float: none !important;
	width: auto !important;
	display: flex !important;
	flex-direction: column;
}

/* Hide phantom/empty cards (e.g. products with no title) */
.zeta-archive-main ul.products li.product:not(:has(.woocommerce-loop-product__title)) {
	display: none !important;
}

/* Product link (wraps image + title + price) grows to push button to bottom */
.zeta-archive-main ul.products li.product > a:not(.button) {
	flex: 1 1 auto;
}

/* Product image */
.zeta-archive-main ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: #f8f8f8;
	border-radius: 4px;
}

/* Hide sale badge */
.zeta-archive-main ul.products li.product .onsale {
	display: none !important;
}

/* Title */
.zeta-archive-main ul.products li.product .woocommerce-loop-product__title {
	font-size: 14px;
	font-weight: 600;
	color: #111 !important;
	margin-top: 10px;
}

.zeta-archive-main ul.products li.product a:hover .woocommerce-loop-product__title {
	color: #8E579F !important;
}

/* No underlines */
.zeta-archive-main ul.products li.product a,
.zeta-archive-main ul.products li.product a:hover {
	text-decoration: none !important;
}

/* Price — primary color */
.zeta-archive-main ul.products li.product .price {
	color: #8E579F !important;
	font-size: 13px;
	display: block;
	margin-bottom: 12px;
}

.zeta-archive-main ul.products li.product .price .amount,
.zeta-archive-main ul.products li.product .price ins .amount,
.zeta-archive-main ul.products li.product .price del .amount {
	color: #8E579F !important;
}

/* Suppress ::before clearfix ghost cell in the CSS grid */
.zeta-archive-main ul.products::before,
.zeta-archive-main ul.products::after {
	display: none !important;
}

/* Button — use direct child combinator + fit-content to prevent flex-stretch */
.zeta-archive-main ul.products li.product,
.zeta-archive-main ul.products li.product > a.button,
.zeta-archive-main ul.products li.product > .button {
	--btn-dummy: 0; /* specificity anchor */
}

.zeta-archive-main ul.products li.product > a.button,
.zeta-archive-main ul.products li.product > .button {
	display: block !important;
	width: fit-content !important;
	max-width: 100%;
	align-self: flex-start;
	padding: 10px 22px;
	background: #111 !important;
	color: #fff !important;
	border: none;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.2s ease;
}

.zeta-archive-main ul.products li.product > a.button:hover,
.zeta-archive-main ul.products li.product > .button:hover {
	background: #8E579F !important;
	color: #fff !important;
}

/* Pagination */
.zeta-archive-main .woocommerce-pagination {
	margin-top: 32px;
	text-align: center;
}

/* Responsive: collapse sidebar above, 2-col grid */
@media ( max-width: 960px ) {
	.zeta-archive-layout {
		grid-template-columns: 1fr;
	}

	.zeta-archive-sidebar {
		position: static;
	}

	.zeta-filter-list {
		display: flex;
		flex-wrap: wrap;
		gap: 6px;
	}

	.zeta-filter-item a {
		border: 1px solid #ddd;
		border-radius: 20px;
		padding: 4px 12px;
		font-size: 12px;
	}

	.zeta-filter-item--active a {
		background: #8E579F;
		color: #fff;
		border-color: #8E579F;
	}

	.zeta-archive-main ul.products {
		grid-template-columns: repeat( 2, 1fr );
	}
}

@media ( max-width: 480px ) {
	.zeta-archive-main ul.products {
		grid-template-columns: 1fr;
	}
}

/* ── Whole footer gets the gray background ── */
.zeta-footer {
	background: #f5f5f5;
}

/* ── Main section ── */
.zeta-footer-main {
	padding: 50px 0 44px;
}

.zeta-footer-main > .zeta-footer-inner {
	display: flex;
	align-items: flex-start;
	gap: 60px;
}

/* ── Left column ── */
.zeta-footer-left {
	flex: 0 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
	min-width: 220px;
}

.zeta-footer-logo img {
	max-width: 160px;
	height: auto;
}

/* Contact block */
.zeta-footer-contact {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.zeta-footer-contact-label {
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-primary);
}

.zeta-footer-phone {
	font-size: 1.25rem;
	font-weight: 700;
	color: #111;
	text-decoration: none;
	white-space: nowrap;
}

.zeta-footer-phone:hover {
	color: var(--color-primary);
}

/* Social icons row */
.zeta-footer-socials {
	display: flex;
	align-items: center;
	gap: 12px;
}

.zeta-social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 1px solid #ddd;
	color: #555;
	text-decoration: none;
	transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.zeta-social-link:hover,
.zeta-social-link:focus {
	color: var(--color-primary);
	border-color: var(--color-primary);
	background: transparent;
}

/* ── Right: three menu columns ── */
.zeta-footer-menus {
	flex: 1 1 auto;
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
}

.zeta-footer-menu-col {
	flex: 1 1 160px;
}

.zeta-footer-menu-title {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #111;
	margin: 0 0 16px;
	padding: 0;
}

.zeta-footer-menu-list {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.zeta-footer-menu-list li {
	list-style: none !important;
	margin-bottom: 10px;
}

.zeta-footer-menu-list li a {
	font-size: 13px;
	color: #666;
	text-decoration: none;
	transition: color 0.2s;
}

.zeta-footer-menu-list li a:hover {
	color: var(--color-primary);
}

/* ── Bottom bar ── */
.zeta-footer-bottom {
	border-top: 1px solid #ddd;
	padding: 16px 0;
}

.zeta-footer-bottom > .zeta-footer-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
}

.zeta-footer-copyright {
	font-size: 13px;
	color: #888;
}

/* Payment logos */
.zeta-footer-payments {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

/* Payment band (single combined image) */
.zeta-payment-band {
	height: 32px;
	width: auto;
	object-fit: contain;
}

/* ── Responsive ── */
@media ( max-width: 900px ) {
	.zeta-footer-main > .zeta-footer-inner {
		flex-direction: column;
		gap: 36px;
	}

	.zeta-footer-menus {
		width: 100%;
	}
}

@media ( max-width: 600px ) {
	.zeta-footer-menu-col {
		flex: 1 1 140px;
	}

	.zeta-footer-bottom > .zeta-footer-inner {
		flex-direction: column;
		align-items: flex-start;
	}
}