/* ═══════════════════════════════════════════════════════════════════════
   ZESTA.GR — Custom WooCommerce Theme Styles
   ═══════════════════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
	--zesta-red: #cc0000;
	--zesta-red-hover: #a80000;
	--zesta-red-light: #fff0f0;
	--zesta-black: #1a1a1a;
	--zesta-dark: #2d2d2d;
	--zesta-grey-900: #333333;
	--zesta-grey-700: #555555;
	--zesta-grey-500: #888888;
	--zesta-grey-300: #cccccc;
	--zesta-grey-200: #e5e5e5;
	--zesta-grey-100: #f5f5f5;
	--zesta-grey-50: #fafafa;
	--zesta-white: #ffffff;
	--zesta-yellow: #f5a623;
	--zesta-green: #27ae60;
	--zesta-blue: #2d7dd2;
	--zesta-orange: #fb3100;

	--linear-gradient: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);

	--font-heading: 'Manrope', sans-serif;
	--font-body: 'DM Sans', sans-serif;
	--section-padding: 60px 0;
	--container-max: 1480px;
	--container-padding-inline: 24px;
	--container-padding-block: 0px;
	--container-padding: var(--container-padding-block) var(--container-padding-inline);
	--transition: all 0.3s ease;
	--transition-fast: all 0.15s ease;

	/* Surfaces (light mode defaults) */
	--surface-primary: var(--zesta-white);
	--surface-secondary: var(--zesta-grey-50);
	--surface-tertiary: var(--zesta-grey-100);
	--surface-border: var(--zesta-grey-200);
	--text-primary: var(--zesta-grey-900);
	--text-secondary: var(--zesta-grey-700);
	--text-muted: var(--zesta-grey-500);
	--shadow-color: rgba(0, 0, 0, 0.08);
}

/* ── Dark Mode ── */
[data-theme='dark'] {
	--zesta-red: #e63333;
	--zesta-red-hover: #cc0000;
	--zesta-red-light: #3a1515;
	--zesta-black: #f0f0f0;
	--zesta-dark: #e0e0e0;
	--zesta-grey-900: #e5e5e5;
	--zesta-grey-700: #b0b0b0;
	--zesta-grey-500: #888888;
	--zesta-grey-300: #888888;
	--zesta-grey-200: #333333;
	--zesta-grey-100: #252525;
	--zesta-grey-50: #1e1e1e;
	--zesta-white: #171717;
	--linear-gradient: linear-gradient(135deg, #303030 0%, #242424 100%);
	--surface-primary: #171717;
	--surface-secondary: #1e1e1e;
	--surface-tertiary: #252525;
	--surface-border: #333333;
	--text-primary: #e5e5e5;
	--text-secondary: #b0b0b0;
	--text-muted: #888888;
	--shadow-color: rgba(0, 0, 0, 0.3);
}
[data-theme='dark'] img {
	filter: brightness(0.92);
}
[data-theme='dark'] .header-logo img,
[data-theme='dark'] .footer-brand img {
	filter: brightness(0) invert(1);
}
[data-theme='dark'] .top-bar {
	background: #0d0d0d;
}
[data-theme='dark'] .sticky-header-wrap {
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
[data-theme='dark'] .footer-social a.fb,
[data-theme='dark'] .footer-social a.yt {
	filter: brightness(1.1);
}
[data-theme='dark'] .post-share__btn {
	filter: brightness(1.1);
}
[data-theme='dark'] .sp-details__stock--in-stock {
	background: rgba(46, 125, 50, 0.15);
	color: #66bb6a;
}
[data-theme='dark'] .sp-details__stock--on-backorder {
	background: rgba(230, 81, 0, 0.15);
	color: #ffa726;
}
[data-theme='dark'] .sp-details__stock--out-of-stock {
	background: rgba(198, 40, 40, 0.15);
	color: #ef5350;
}
[data-theme='dark'] .backorder_notification {
	color: #ffa726;
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
}
* {
	margin: 0;
}
html {
	scroll-behavior: smooth;
}
body {
	font-family: var(--font-body);
	color: var(--zesta-grey-900);
	background: var(--zesta-white);
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}

a {
	text-decoration: none;
	color: inherit;
	/* transition: var(--transition-fast); */
}
img {
	max-width: 100%;
	height: auto;
	display: block;
}
ul {
	list-style: none;
}
.container {
	width: min(100% - var(--container-padding-inline), var(--container-max));
	margin: 0 auto;
	/* padding: var(--container-padding); */
}

/* ═══════════════════════════════════════════════════════════════════════
   TOP BAR
   ═══════════════════════════════════════════════════════════════════════ */
.top-bar {
	background: var(--zesta-black);
	color: var(--zesta-white);
	font-size: 13px;
	padding: 8px 0;
}
.top-bar .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-bar__left {
	display: flex;
	gap: 24px;
	align-items: center;
}
.top-bar__left a {
	color: var(--zesta-grey-300);
}
.top-bar__left a:hover {
	color: var(--zesta-red);
}
.top-bar__left i {
	margin-right: 6px;
	color: var(--zesta-red);
}
.top-bar__right {
	display: flex;
	gap: 16px;
	align-items: center;
}

.top-bar__right i {
    margin-right: 6px;
    color: var(--zesta-red);
}
.top-bar__right a {
	color: var(--zesta-grey-300);
	font-size: 12px;
}
.top-bar__right a:hover {
	color: var(--zesta-red);
}
.top-bar__sep {
	color: var(--zesta-grey-500);
}

/* ── Top Bar Language Switcher ── */
.top-bar-lang {
	position: relative;
	display: inline-flex;
}
.top-bar-lang__current {
	display: flex;
	align-items: center;
	gap: 6px;
	background: none;
	border: none;
	cursor: pointer;
	font-size: 12px;
	font-weight: 600;
	color: var(--zesta-grey-300);
	font-family: var(--font-heading);
	padding: 0;
}
.top-bar-lang__current:hover {
	color: var(--zesta-red);
	
}
.top-bar-lang__current i {
	font-size: 8px;
	color: var(--zesta-grey-500);
}
.top-bar-lang__flag {
	width: 18px;
	height: 13px;
	object-fit: cover;
	border-radius: 2px;
}
.top-bar-lang__dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	background: var(--zesta-red);
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	min-width: 140px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(4px);
	transition: all 0.2s ease;
	z-index: 1001;
	overflow: hidden;
}
.top-bar-lang:hover .top-bar-lang__dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.top-bar-lang__option {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 9px 14px;
	font-size: 13px;
	color: var(--zesta-grey-700);
	transition: all 0.15s ease;
}
.top-bar-lang__option:hover {
	background: var(--zesta-red-light);
	color: var(--zesta-red);
}

/* ── Dark Mode Toggle Pill ── */
.dark-toggle {
	position: relative;
	width: 52px;
	height: 26px;
	border-radius: 50px;
	border: none;
	background: #3a3a3a;
	cursor: pointer;
	padding: 0;
	flex-shrink: 0;
	transition: background 0.3s ease;
}
.dark-toggle__icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	line-height: 1;
	transition: opacity 0.3s ease;
}
.dark-toggle__icon--light {
	left: 7px;
	color: #f5a623;
	opacity: 1;
}
.dark-toggle__icon--dark {
	right: 7px;
	color: #8899aa;
	opacity: 0.4;
}
.dark-toggle__thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--zesta-white);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
	transition:
		transform 0.3s ease,
		background 0.3s ease;
}
[data-theme='dark'] .dark-toggle {
	background: #555;
}
[data-theme='dark'] .dark-toggle__icon--light {
	opacity: 0.4;
}
[data-theme='dark'] .dark-toggle__icon--dark {
	opacity: 1;
	color: #aabbee;
}
[data-theme='dark'] .dark-toggle__thumb {
	transform: translateX(26px);
	background: #1e1e1e;
}

/* ═══════════════════════════════════════════════════════════════════════
   STICKY HEADER WRAPPER
   ═══════════════════════════════════════════════════════════════════════ */
.sticky-header-wrap {
	position: sticky;
	top: 0;
	z-index: 1000;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════════════════════ */
.header-main {
	background: var(--zesta-white);
	border-bottom: 1px solid var(--zesta-grey-200);
}
.header-main .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 80px;
}
.header-logo img {
	height: 52px;
	width: auto;
}


/* Search bar */
.header-search {
	flex: 1;
	max-width: 560px;
	margin: 0 36px;
	position: relative;
}
.header-search input {
	width: 100%;
	padding: 12px 48px 12px 20px;
	border: 2px solid var(--zesta-grey-200);
	border-radius: 8px;
	font-size: 14px;
	font-family: var(--font-body);
	transition: var(--transition);
	background: var(--zesta-grey-50);
}
.header-search input:focus {
	outline: none;
	border-color: var(--zesta-red);
	background: var(--zesta-white);
}
.header-search button {
	position: absolute;
	right: 4px;
	top: 4px;
	bottom: 4px;
	width: 40px;
	background: var(--zesta-red);
	border: none;
	border-radius: 6px;
	color: white;
	cursor: pointer;
	transition: var(--transition);
}
.header-search button:hover {
	background: var(--zesta-red-hover);
}

/* Live search dropdown */
.header-search__results {
	display: none;
	position: absolute;
	top: calc(100% + 4px);
	left: 0;
	right: 0;
	background: var(--zesta-white);
	border: 1px solid var(--zesta-grey-200);
	border-radius: 10px;
	box-shadow: 0 12px 32px rgba(0,0,0,.12);
	z-index: 1000;
	max-height: 420px;
	overflow-y: auto;
}

.ls-item__sku {
  display: block;
  font-size: 10px;
  color: var(--zesta-grey-500);
  margin: 1px 0 2px;
}

.header-search__results.active {
	display: block;
}
.ls-loading,
.ls-empty {
	padding: 20px;
	text-align: center;
	font-size: 14px;
	color: var(--zesta-grey-500);
}
.ls-item {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 10px 16px;
	text-decoration: none;
	color: var(--zesta-grey-900);
	transition: background .15s;
	border-bottom: 1px solid var(--zesta-grey-100, #f3f4f6);
}
.ls-item:hover {
	background: var(--zesta-grey-50);
}
.ls-item__img {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
	border: 1px solid var(--zesta-grey-200);
}
.ls-item__info {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
}
.ls-item__title {
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.ls-item__price {
	font-size: 13px;
	color: var(--zesta-red);
	font-weight: 700;
}
.ls-item__price del {
	color: var(--zesta-grey-400);
	font-weight: 400;
	margin-right: 4px;
}
.ls-view-all {
	display: block;
	text-align: center;
	padding: 12px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-red);
	text-decoration: none;
	transition: background .15s;
}
.ls-view-all:hover {
	background: var(--zesta-grey-50);
}


/* Header actions */
.header-actions {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 11px;
	color: var(--zesta-grey-700);
	cursor: pointer;
	position: relative;
}
.header-action i {
	font-size: 22px;
	color: var(--zesta-grey-900);
}
.header-action:hover i {
	color: var(--zesta-red);
}
.header-action .badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: var(--zesta-red);
	color: white;
	font-size: 10px;
	font-weight: 700;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* Header auth links (logged out) */
.header-action--auth {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2px;
	font-size: 11px;
	color: var(--zesta-grey-700);
	position: relative;
}
.header-action--auth i {
	font-size: 22px;
	color: var(--zesta-grey-900);
}
.header-action__auth-links {
	display: flex;
	align-items: center;
	gap: 4px;
	white-space: nowrap;
}
.header-action__auth-links a {
	font-size: 11px;
	font-weight: 600;
	color: var(--zesta-grey-700);
}
.header-action__auth-links a:hover {
	color: var(--zesta-red);
}
.header-action__auth-sep {
	font-size: 10px;
	color: var(--zesta-grey-300);
}

/* ═══════════════════════════════════════════════════════════════════════
   NAVIGATION / MEGA MENU
   ═══════════════════════════════════════════════════════════════════════ */
.nav-bar {
	background: var(--zesta-white);
	border-bottom: 3px solid var(--zesta-red);
}
.nav-bar .container {
	display: flex;
	align-items: stretch;
	height: 48px;
}
.nav-item {
	position: relative;
	display: flex;
	align-items: center;
}
.nav-item > a {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 0 28px;
	height: 100%;
	font-size: 14px;
	font-weight: 600;
	font-family: var(--font-heading);
	color: var(--zesta-grey-900);
	/* transition: var(--transition-fast); */
	white-space: nowrap;
}
.nav-item > a i.fa-chevron-down {
	font-size: 9px;
	color: var(--zesta-grey-500);
}
.nav-item:hover > a {
	color: var(--zesta-red);
}
.nav-item:first-child > a {
	background: var(--zesta-red);
	color: white;
	padding: 0 24px;
}
.nav-item:first-child > a i {
	color: white;
}
.nav-item:first-child:hover > a {
	background: var(--zesta-red-hover);
	color: white;
}

/* Mega dropdown */
.mega-dropdown {
	position: absolute;
	top: 100%;
	left: 0;
	background: var(--zesta-white);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
	border-top: 3px solid var(--zesta-red);
	padding: 32px;
	min-width: 680px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: var(--transition);
	z-index: 999;
}
.nav-item:hover .mega-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}
.mega-col h4 {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: var(--zesta-red);
	margin-bottom: 12px;
	padding-bottom: 8px;
	border-bottom: 2px solid var(--zesta-grey-100);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.mega-col a {
	display: block;
	padding: 5px 0;
	font-size: 13px;
	color: var(--zesta-grey-700);
}
.mega-col a:hover {
	color: var(--zesta-red);
	padding-left: 6px;
}
.mega-dropdown--full {
	left: 0;
	right: 0;
	width: 100vw;
	position: fixed;
	grid-template-columns: repeat(5, 1fr);
}

/* ═══════════════════════════════════════════════════════════════════════
   HERO SLIDER
   ═══════════════════════════════════════════════════════════════════════ */
.hero-slider {
	position: relative;
	overflow: hidden;
	background: var(--zesta-white);
	height: 560px;
}
.hero-slide {
	position: relative;
	height: 520px;
	display: flex;
	align-items: center;
	background: url(https://new.zesta.gr/wp-content/uploads/2026/04/zesta_shop_1920b.jpg) top center;
	border-bottom: 2px solid #cccccc;
}
.hero-slide__content {
	position: relative;
	z-index: 2;
	max-width: 520px;
	padding-left: 80px;
	background: #ffffffa6;
    padding: 40px;
}
.hero-slide__eyebrow {
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: var(--zesta-grey-500);
	margin-bottom: 12px;
}
.hero-slide__title {
	font-family: var(--font-heading);
	font-size: 44px;
	font-weight: 800;
	line-height: 1.15;
	color: var(--zesta-black);
	margin-bottom: 16px;
}
.hero-slide__desc {
	font-size: 16px;
	color: var(--zesta-grey-700);
	margin-bottom: 28px;
	line-height: 1.7;
}
.hero-slide__price {
	font-family: var(--font-heading);
	font-size: 32px;
	font-weight: 800;
	color: var(--zesta-red);
	margin-bottom: 24px;
}
.hero-slide__price span {
	font-size: 16px;
	font-weight: 400;
	color: var(--zesta-grey-500);
	text-decoration: line-through;
	margin-left: 12px;
}
.hero-slide__image {
	position: absolute;
	right: 80px;
	top: 50%;
	transform: translateY(-50%);
	max-height: 420px;
	z-index: 1;
}
.hero-dots {
	position: absolute;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 10px;
	z-index: 10;
}
.hero-dots span {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--zesta-grey-300);
	cursor: pointer;
	transition: var(--transition);
}
.hero-dots span.active {
	background: var(--zesta-red);
	width: 28px;
	border-radius: 5px;
}

/* ── Buttons ── */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 32px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-heading);
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.btn--primary {
	background: var(--zesta-red);
	color: white;
}
.btn--primary:hover {
	background: var(--zesta-red-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}
.btn--outline {
	background: transparent;
	color: var(--zesta-black);
	border: 2px solid var(--zesta-black);
}
.btn--outline:hover {
	background: var(--zesta-black);
	color: white;
}

/* ===== Brands grid ("Προμηθευτές") ===== */
.zesta-brands{
    display:grid;
    grid-template-columns:repeat(var(--zesta-brands-cols,4),1fr);
    gap:20px;
    margin:24px 0;
}
@media (max-width:1024px){ .zesta-brands{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:768px) { .zesta-brands{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:420px) { .zesta-brands{ grid-template-columns:1fr; } }

.zesta-brand-card{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:120px;
    padding:20px;
    border:1px solid #e7e7e7;
    border-radius:12px;
    background:#fff;
    text-decoration:none;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.zesta-brand-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    border-color:#d0d0d0;
}
.zesta-brand-logo{
    max-width:100%;
    max-height:64px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.85;
    transition:filter .18s ease, opacity .18s ease;
}
.zesta-brand-card:hover .zesta-brand-logo{
    filter:grayscale(0);
    opacity:1;
}
.zesta-brand-name{
    font-size:18px;
    font-weight:600;
    color:#333;
    text-align:center;
}
.zesta-brands-empty{
    text-align:center;
    color:#777;
    padding:32px 0;
}

/* ═══════════════════════════════════════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════════════════════════════════════ */
.section-title {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--zesta-black);
	text-align: center;
	margin-bottom: 40px;
}
.section-title span {
	color: var(--zesta-red);
}
.category-cards {
	padding: var(--section-padding);
	background: var(--zesta-white);
}
.category-cards__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 60px;
}
.cat-card {
	position: relative;
	border-radius: 12px;
	overflow: hidden;
	height: 294px;        /* ← added: forces the tile height */
	max-height: 320px;
	cursor: pointer;
}

.cat-card__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
	max-width:322px;
	border-radius:14px;
}

.cat-card:hover .cat-card__image {
	transform: scale(1.08);
}

.cat-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgb(231 2 2 / 0%) 90%, rgb(200 0 18) 80%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 8px;
    max-width: 190px;
}

.cat-card__name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--zesta-white);;
    text-shadow: 1px 1px 1px #00000; 
}
.cat-card__from {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.8);
	margin-top: 4px;
}
.cat-card__from strong {
	color: var(--zesta-yellow);
}

.cat-card-widget {
    max-width:322px;
}


/* ═══════════════════════════════════════════════════════════════════════
   PRODUCT SECTIONS WITH TABS
   ═══════════════════════════════════════════════════════════════════════ */
.products-section {
	padding: var(--section-padding);
	background: var(--zesta-grey-50);
}
.products-section:nth-child(even) {
	background: var(--zesta-white);
}
.products-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	margin-bottom: 24px;
	gap: 16px;
}
.products-header__title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 700;
	color: var(--zesta-black);
	transition: var(--transition-fast);
}
.products-header__title:hover {
	color: var(--zesta-red);
}
.products-header__link {
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	white-space: nowrap;
	transition: var(--transition-fast);
}
.products-header__link:hover {
	color: var(--zesta-red);
}

/* Tabs */
.products-tabs {
	display: flex;
	gap: 4px;
	margin-bottom: 24px;
	flex-wrap: wrap;
}
.products-tabs button {
	padding: 8px 18px;
	font-size: 13px;
	font-weight: 600;
	font-family: var(--font-heading);
	border: 1px solid var(--zesta-grey-200);
	background: var(--zesta-white);
	border-radius: 20px;
	cursor: pointer;
	transition: var(--transition-fast);
	color: var(--zesta-grey-700);
}
.products-tabs button.active,
.products-tabs button:hover {
	background: var(--zesta-red);
	color: white;
	border-color: var(--zesta-red);
}

/* Product grid */
.products-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 15px;
}
.product-card {
	background: var(--zesta-white);
	border-radius: 10px;
	padding: 15px;
	border: 1px solid var(--zesta-grey-200);
	transition: var(--transition);
	position: relative;
	display: flex;
	flex-direction: column;
}
.product-card:hover {
	border-color: var(--zesta-red);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.product-card__badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--zesta-white);
	color: var(--zesta-red);;
	font-size: 13px;
	font-weight: 300;
	padding: 3px 8px;
	border-radius: 2px;
	z-index: 2;
	border:1px solid var(--zesta-grey-200);
}
.product-card__badge--new {
	background: var(--zesta-red);
}
.product-card__badge--shipping {
	position: absolute;
	top: 12px;
	right: 12px;
	left: auto;
	background: var(--zesta-white);
	color: var(--zesta-red);
	font-size: 13px;
	font-weight: 300;
	padding: 3px 8px;
	border-radius: 2px;
	z-index: 2;
	border:1px solid var(--zesta-grey-200);
	
}
.product-card__badge--shipping i {
	margin-right: 3px;
	font-size: 9px;
}
.product-card__image {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	margin-bottom: 14px;
	border-radius: 6px;
	background: var(--zesta-white);
	padding: 0px;
}
.product-card__category {
	font-size: 11px;
	color: var(--zesta-grey-500);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}
.product-card__name {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-black);
	margin-bottom: 8px;
	line-height: 1.4;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.product-card__name a:hover {
	color: var(--zesta-red);
}
.product-card__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 8px;
}
.product-card__rating i {
	font-size: 11px;
	color: var(--zesta-yellow);
}
.product-card__rating span {
	font-size: 11px;
	color: var(--zesta-grey-500);
}
.product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
}
.product-card__price {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--zesta-red);
}
.product-card__price--old {
	font-size: 15px;
	color: var(--zesta-grey-500);
	text-decoration: line-through;
	font-weight: 400;
	display: block;
}
/* Ensure all WooCommerce price amounts inherit red */
.product-card__price .woocommerce-Price-amount,
.sp-details__price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
	color: var(--zesta-red);
}
.product-card__price--old .woocommerce-Price-amount,
.sp-details__price del .woocommerce-Price-amount,
.woocommerce ul.products li.product .price del .woocommerce-Price-amount {
	color: var(--zesta-grey-500);
}


/* Ensure all WooCommerce price amounts inherit red */
.product-card__price .woocommerce-Price-amount,
.sp-details__price .woocommerce-Price-amount,
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
	color: var(--zesta-red);
	font-size:24px;
	font-weight:600;
	text-transform:none;
}
.product-card__price--old .woocommerce-Price-amount,
.sp-details__price del .woocommerce-Price-amount,
.woocommerce ul.products li.product .price del .woocommerce-Price-amount {
	color: var(--zesta-grey-500);
	font-size:16px;
}
.product-card__cart {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	border: 2px solid var(--zesta-grey-200);
	background: var(--zesta-white);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--transition);
	color: var(--zesta-grey-700);
	font-size: 14px;
}
.product-card__cart:hover {
	background: var(--zesta-red);
	border-color: var(--zesta-red);
	color: white;
}

/* ═══════════════════════════════════════════════════════════════════════
   BRAND PARTNERS STRIP
   ═══════════════════════════════════════════════════════════════════════ */
.brands-strip {
	padding: 40px 0;
	background: var(--zesta-white);
	border-top: 1px solid var(--zesta-grey-200);
	border-bottom: 1px solid var(--zesta-grey-200);
}
.brands-strip__inner {
	display: flex;
	align-items: center;
	justify-content: space-around;
	gap: 40px;
	opacity: 0.5;
}
.brands-strip__inner img {
	height: 40px;
	filter: grayscale(100%);
	transition: var(--transition);
}
.brands-strip__inner img:hover {
	filter: grayscale(0%);
	opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════════════
   BLOG
   ═══════════════════════════════════════════════════════════════════════ */
.blog-section {
	padding: var(--section-padding);
	background: var(--zesta-grey-50);
}
.blog-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 32px;
}
.blog-header h2 {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
}
.blog-header a {
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-red);
}
.blog-header a:hover {
	text-decoration: underline;
}
.blog-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}
.blog-card {
	background: var(--zesta-white);
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid var(--zesta-grey-200);
	transition: var(--transition);
}
.blog-card:hover {
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.blog-card__image {
	width: 100%;
	height: 200px;
	object-fit: cover;
}
.blog-card__body {
	padding: 20px;
}
.blog-card__date {
	font-size: 12px;
	color: var(--zesta-grey-500);
	margin-bottom: 8px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.blog-card__title {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	height:44px;
}
.blog-card__title:hover {
	color: var(--zesta-red);
}
.blog-card__excerpt {
	font-size: 13px;
	color: var(--zesta-grey-700);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 12px;
}
.blog-card__more {
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-red);
}
.blog-card__more:hover {
	text-decoration: underline;
}

/* ── Blog Card: Category Pills ── */
.blog-card__categories {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 10px;
}
.blog-card__pill {
	display: inline-block;
	padding: 3px 10px;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.4;
	color: var(--zesta-red);
	background: var(--zesta-red-light);
	border-radius: 50px;
	text-decoration: none;
	transition: var(--transition-fast);
}
.blog-card__pill:hover {
	background: var(--zesta-red);
	color: var(--zesta-white);
}

/* ── Blog Carousel (front-page) ── */
.blog-header__right {
	display: flex;
	align-items: center;
	gap: 16px;
}
.blog-carousel__nav {
	display: flex;
	gap: 8px;
}
.blog-carousel__prev,
.blog-carousel__next {
	width: 36px;
	height: 36px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 50%;
	background: var(--zesta-white);
	color: var(--zesta-grey-700);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	transition: var(--transition-fast);
}
.blog-carousel__prev:hover,
.blog-carousel__next:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
}
.blog-carousel .swiper-slide {
	height: auto;
}

/* ── Blog Archive ── */

/* Hero banner */
.archive-hero {
	background: linear-gradient(135deg, var(--zesta-grey-100) 0%, var(--zesta-white) 100%);
	padding: 32px 0 40px;
	border-bottom: 1px solid var(--zesta-grey-200);
}
.archive-hero .sp-breadcrumb-nav {
	margin-bottom: 16px;
}
.archive-hero__title {
	font-family: var(--font-heading);
	font-size: 36px;
	font-weight: 800;
	color: var(--zesta-black);
	line-height: 1.2;
}
.archive-hero__desc {
	margin-top: 8px;
	font-size: 15px;
	color: var(--zesta-grey-700);
	max-width: 640px;
}
.archive-hero__count {
	display: inline-block;
	margin-top: 12px;
	padding: 4px 14px;
	background: var(--zesta-white);
	border: 1px solid var(--zesta-grey-200);
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-700);
}

/* Category filter bar */
.archive-filters {
	background: var(--zesta-white);
	border-bottom: 1px solid var(--zesta-grey-200);
	position: sticky;
	top: 0;
	z-index: 90;
}
.archive-filters__bar {
	display: flex;
	gap: 8px;
	padding: 14px 0;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
}
.archive-filters__bar::-webkit-scrollbar {
	display: none;
}
.archive-filters__pill {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 8px 18px;
	border-radius: 50px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	background: var(--zesta-grey-100);
	border: 1px solid transparent;
	text-decoration: none;
	transition: var(--transition-fast);
	white-space: nowrap;
}
.archive-filters__pill:hover {
	border-color: var(--zesta-grey-300);
	color: var(--zesta-grey-900);
}
.archive-filters__pill.active {
	background: var(--zesta-red);
	color: var(--zesta-white);
	border-color: var(--zesta-red);
}
.archive-filters__pill.active .archive-filters__count {
	background: rgba(255, 255, 255, 0.25);
	color: var(--zesta-white);
}
.archive-filters__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 22px;
	height: 22px;
	padding: 0 6px;
	border-radius: 50px;
	font-size: 11px;
	font-weight: 700;
	background: var(--zesta-grey-200);
	color: var(--zesta-grey-700);
}

/* Featured first post */
.blog-featured {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 40px;
	align-items: center;
	margin: 40px 0;
	padding: 32px;
	background: var(--zesta-white);
	border-radius: 16px;
	border: 1px solid var(--zesta-grey-200);
	transition: var(--transition);
}
.blog-featured:hover {
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.blog-featured__image-link {
	display: block;
	border-radius: 12px;
	overflow: hidden;
}
.blog-featured__image {
	width: 100%;
	height: 320px;
	object-fit: cover;
	display: block;
	transition: transform 0.4s ease;
}
.blog-featured:hover .blog-featured__image {
	transform: scale(1.03);
}
.blog-featured__body .blog-card__categories {
	margin-bottom: 12px;
}
.blog-featured__body .blog-card__date {
	font-size: 13px;
	color: var(--zesta-grey-500);
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}
.blog-featured__title {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 800;
	line-height: 1.35;
	margin-bottom: 16px;
	color: var(--zesta-black);
}
.blog-featured__title a {
	color: inherit;
	text-decoration: none;
}
.blog-featured__title a:hover {
	color: var(--zesta-red);
}
.blog-featured__excerpt {
	font-size: 15px;
	line-height: 1.7;
	color: var(--zesta-grey-700);
	margin-bottom: 20px;
}
.blog-featured__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 24px;
	background: var(--zesta-red);
	color: var(--zesta-white);
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
	transition: var(--transition);
}
.blog-featured__btn:hover {
	background: var(--zesta-red-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(204, 0, 0, 0.25);
}

/* Archive grid */
.blog-archive-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
	padding-bottom: 48px;
}

/* Pagination */
.archive-pagination {
	padding: 24px 0 60px;
	display: flex;
	justify-content: center;
}
.archive-pagination .nav-links {
	display: flex;
	gap: 6px;
	align-items: center;
}
.archive-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	/* aspect-ratio: 1; */
	padding: 0 14px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 100vw;
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	text-decoration: none;
	transition: var(--transition-fast);
}
.archive-pagination .page-numbers:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
	/* background: var(--zesta-red-light); */
}
.archive-pagination .page-numbers.current {
	background: var(--zesta-red);
	border-color: var(--zesta-red);
	color: var(--zesta-white);
}

/* Empty state */
.archive-empty {
	padding: 80px 0;
	text-align: center;
	color: var(--zesta-grey-500);
}
.archive-empty i {
	font-size: 48px;
	display: block;
	margin-bottom: 16px;
	opacity: 0.4;
}
.archive-empty p {
	font-size: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════
   COMMENTS
   ═══════════════════════════════════════════════════════════════════════ */
.zesta-comments {
	margin-top: 48px;
	padding-top: 40px;
	border-top: 2px solid var(--zesta-grey-200);
}

/* Header */
.zesta-comments__header {
	margin-bottom: 32px;
}
.zesta-comments__title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--zesta-black);
	display: flex;
	align-items: center;
	gap: 10px;
}
.zesta-comments__title i {
	color: var(--zesta-red);
}

/* Comment list */
.zesta-comments__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.zesta-comment {
	margin-bottom: 0;
}
.zesta-comment .children {
	list-style: none;
	padding-left: 40px;
	margin: 0;
	border-left: 2px solid var(--zesta-grey-200);
}
.zesta-comment__inner {
	display: flex;
	gap: 16px;
	padding: 24px;
	margin-bottom: 16px;
	background: var(--zesta-grey-50);
	border-radius: 12px;
	border: 1px solid var(--zesta-grey-200);
	transition: var(--transition-fast);
}
.zesta-comment__inner:hover {
	border-color: var(--zesta-grey-300);
}
.zesta-comment__avatar img {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	border: 2px solid var(--zesta-white);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	flex-shrink: 0;
}
.zesta-comment__content {
	flex: 1;
	min-width: 0;
}
.zesta-comment__header {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-bottom: 8px;
}
.zesta-comment__author {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: var(--zesta-black);
}
.zesta-comment__date {
	font-size: 12px;
	color: var(--zesta-grey-500);
	display: flex;
	align-items: center;
	gap: 4px;
}
.zesta-comment__moderation {
	font-size: 13px;
	color: var(--zesta-yellow);
	font-style: italic;
	margin-bottom: 8px;
}
.zesta-comment__text {
	font-size: 14px;
	line-height: 1.7;
	color: var(--zesta-grey-700);
}
.zesta-comment__text p {
	margin: 0 0 8px;
}
.zesta-comment__text p:last-child {
	margin-bottom: 0;
}
.zesta-comment__actions {
	margin-top: 10px;
}
.zesta-comment__reply a {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	font-weight: 600;
	color: var(--zesta-red);
	text-decoration: none;
	padding: 4px 12px;
	border-radius: 50px;
	background: var(--zesta-red-light);
	transition: var(--transition-fast);
}
.zesta-comment__reply a:hover {
	background: var(--zesta-red);
	color: var(--zesta-white);
}

/* Comment pagination */
.zesta-comments__pagination {
	display: flex;
	justify-content: center;
	gap: 6px;
	padding: 20px 0;
}
.zesta-comments__pagination a,
.zesta-comments__pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	font-size: 13px;
	font-weight: 600;
	border: 1px solid var(--zesta-grey-200);
	color: var(--zesta-grey-700);
	text-decoration: none;
	transition: var(--transition-fast);
}
.zesta-comments__pagination a:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
}
.zesta-comments__pagination .current {
	background: var(--zesta-red);
	border-color: var(--zesta-red);
	color: var(--zesta-white);
}

/* Comment form */
.zesta-comments__form-wrap {
	margin-top: 40px;
	padding: 32px;
	background: var(--zesta-grey-50);
	border-radius: 16px;
	border: 1px solid var(--zesta-grey-200);
}
.zesta-comments__form-wrap .comment-reply-title {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 24px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.zesta-comments__form-wrap .comment-reply-title i {
	color: var(--zesta-red);
}
.zesta-comments__form-wrap .comment-reply-title small {
	font-size: 13px;
	font-weight: 600;
}
.zesta-comments__form-wrap .comment-reply-title small a {
	color: var(--zesta-red);
	text-decoration: none;
	margin-left: 8px;
}
.zesta-comments__fields-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}
.zesta-comments__field {
	margin-bottom: 16px;
}
.zesta-comments__field label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-900);
	margin-bottom: 6px;
}
.zesta-comments__field .required {
	color: var(--zesta-red);
}
.zesta-comments__field input,
.zesta-comments__field textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--zesta-grey-900);
	background: var(--zesta-white);
	transition: var(--transition-fast);
}
.zesta-comments__field input:focus,
.zesta-comments__field textarea:focus {
	outline: none;
	border-color: var(--zesta-red);
	box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}
.zesta-comments__field textarea {
	resize: vertical;
	min-height: 120px;
}
.zesta-comments__submit {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: var(--zesta-red);
	color: var(--zesta-white);
	border: none;
	border-radius: 10px;
	font-family: var(--font-body);
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition);
}
.zesta-comments__submit:hover {
	background: var(--zesta-red-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(204, 0, 0, 0.25);
}
.zesta-comments__note {
	margin-top: 12px;
	font-size: 12px;
	color: var(--zesta-grey-500);
	display: flex;
	align-items: center;
	gap: 6px;
}
.zesta-comments__note i {
	font-size: 11px;
}

/* ═══════════════════════════════════════════════════════════════════════
   PARTNER SECTION
   ═══════════════════════════════════════════════════════════════════════ */
.partner-section {
	padding: 40px 0;
	background: var(--zesta-white);
}
.partner-box {
	display: grid;
/*	grid-template-columns: 1fr 1fr;*/
	gap: 48px;
	align-items: start;
	background: var(--zesta-grey-50);
	border-radius: 16px;
	padding: 48px;
	border: 1px solid var(--zesta-grey-200);
	line-height: 25px;
    font-size: 14px;
}
.partner-box h3 {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
	color: var(--zesta-red);
}
.partner-box ul {
	padding-left: 0;
}
.partner-box li {
	font-size: 14px;
	color: var(--zesta-grey-700);
	padding: 4px 0;
	padding-left: 20px;
	position: relative;
}
.partner-box li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: var(--zesta-red);
	font-weight: 700;
}
.partner-box__why h3 {
	color: var(--zesta-red);
}
.partner-box__rating {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.partner-box__rating .stars {
	color: var(--zesta-yellow);
}
.partner-box__reason {
	font-size: 14px;
	color: var(--zesta-grey-700);
	padding: 6px 0;
	padding-left: 24px;
	position: relative;
}
.partner-box__reason::before {
	position: absolute;
	left: 0;
	font-weight: 700;
	color: var(--zesta-red);
}
.partner-box__reason:nth-child(3)::before {
	content: '1.';
}
.partner-box__reason:nth-child(4)::before {
	content: '2.';
}
.partner-box__reason:nth-child(5)::before {
	content: '3.';
}
.partner-box__reason:nth-child(6)::before {
	content: '4.';
}

/* ═══════════════════════════════════════════════════════════════════════
   GOOGLE REVIEWS
   ═══════════════════════════════════════════════════════════════════════ */
.google-reviews {
	padding: 40px 0;
	background: var(--zesta-grey-50);
}
.google-reviews .container {
	max-width: var(--container-max);
	margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════
   TRUST BADGES
   ═══════════════════════════════════════════════════════════════════════ */
.trust-badges {
	padding: 40px 0;
	background: var(--zesta-white);
	border-top: 1px solid var(--zesta-grey-200);
}
.trust-badges .container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
}
.trust-badge {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 24px;
	background: var(--zesta-grey-50);
	border-radius: 10px;
	border: 1px solid var(--zesta-grey-200);
}
.trust-badge__icon {
	width: 52px;
	height: 52px;
	background: var(--zesta-red-light);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.trust-badge__icon i {
	font-size: 22px;
	color: var(--zesta-red);
}
.trust-badge__text h4 {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 2px;
}
.trust-badge__text p {
	font-size: 13px;
	color: var(--zesta-grey-500);
}

/* ═══════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════ */
.footer-main {
	background: var(--zesta-grey-50);
	border-top: 1px solid var(--zesta-grey-200);
}
.footer-top {
	padding: 48px 0;
}
.footer-top .container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
}

.footer-brand img {
    height: 68px;
    margin-top: 16px;
}

.footer-social {
	display: flex;
	gap: 12px;
	margin-top: 12px;
}
.footer-social a {
	width: 40px;
	height: 40px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	transition: var(--transition);
}
.footer-social a.fb {
	background: #1877f2;
	color: white;
}
.footer-social a.yt {
	background: #ff0000;
	color: white;
}
.footer-social a:hover {
	transform: translateY(-3px);
}
/* .footer-newsletter h4 {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 8px;
}
.footer-newsletter p {
	font-size: 13px;
	color: var(--zesta-grey-500);
	margin-bottom: 12px;
}
.footer-newsletter__form {
	display: flex;
	gap: 8px;
}
.footer-newsletter__form input {
	flex: 1;
	padding: 12px 16px;
	border: 1px solid var(--zesta-grey-300);
	border-radius: 6px;
	font-size: 14px;
	font-family: var(--font-body);
}
.footer-newsletter__form button {
	padding: 12px 20px;
	background: var(--zesta-red);
	color: white;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 700;
	transition: var(--transition);
}
.footer-newsletter__form button:hover {
	background: var(--zesta-red-hover);
} */
.footer-contact {
	margin-left: auto;
}
.footer-contact h4 {
	font-family: var(--font-heading);
	font-weight: 700;
	margin-bottom: 12px;
	font-size:13px;
}
.footer-contact p {
	font-size: 14px;
	color: var(--zesta-grey-700);
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
}
.footer-contact i {
	color: var(--zesta-red);
	width: 16px;
}
.footer-links {
	padding: 32px 0;
	border-top: 1px solid var(--zesta-grey-200);
}
.footer-links .container {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 32px;
}
.footer-col h4 {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 16px;
	color: var(--zesta-black);
}
.footer-col a {
	display: block;
	font-size: 13px;
	color: var(--zesta-grey-700);
	padding: 4px 0;
}
.footer-col a:hover {
	color: var(--zesta-red);
}
.footer-bottom {
	padding: 20px 0;
	border-top: 1px solid var(--zesta-grey-200);
}
.footer-bottom .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer-bottom__copy {
	font-size: 12px;
	color: var(--zesta-grey-500);
}
.footer-bottom__copy a {
	color: var(--zesta-red);
}
.footer-payments {
	display: flex;
	gap: 12px;
	align-items: center;
}
.footer-payments img {
	height: 28px;
}

/* ═══════════════════════════════════════════════════════════════════════
   SIDE CART DRAWER
   ═══════════════════════════════════════════════════════════════════════ */
.cart-drawer-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	z-index: 9998;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition);
}
.cart-drawer-overlay.active {
	opacity: 1;
	visibility: visible;
}
.cart-drawer {
	position: fixed;
	top: 0;
	right: -440px;
	width: 440px;
	height: 100%;
	background: var(--zesta-white);
	z-index: 9999;
	box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
	display: flex;
	flex-direction: column;
	transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cart-drawer.open {
	right: 0;
}
.cart-drawer__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--zesta-grey-200);
}
.cart-drawer__header h3 {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
}
.cart-drawer__close {
	width: 32px;
	height: 32px;
	border: none;
	background: var(--zesta-red);
	border-radius: 50%;
	cursor: pointer;
	font-size: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--transition);
}
.cart-drawer__close:hover {
	background: var(--zesta-grey-200);
}
.cart-drawer__shipping {
	padding: 16px 24px;
	background: var(--zesta-grey-50);
}
.cart-drawer__shipping-bar {
	height: 6px;
	background: var(--zesta-grey-200);
	border-radius: 3px;
	overflow: hidden;
	margin-bottom: 8px;
}
.cart-drawer__shipping-fill {
	height: 100%;
	background: var(--zesta-red);
	border-radius: 3px;
	width: 75%;
	transition: width 0.5s ease;
}
.cart-drawer__shipping p {
	font-size: 13px;
	color: var(--zesta-grey-700);
	text-align: center;
}
.cart-drawer__shipping p strong {
	color: var(--zesta-green);
}
.cart-drawer__items {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}
.cart-item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--zesta-grey-100);
	align-items: center;
}
.cart-item__image {
	width: 64px;
	height: 64px;
	object-fit: contain;
	border-radius: 8px;
	background: var(--zesta-grey-50);
	padding: 4px;
	flex-shrink: 0;
}
.cart-item__info {
	flex: 1;
}
.cart-item__name {
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 4px;
}
.cart-item__price {
	font-size: 14px;
	font-weight: 700;
	color: var(--zesta-red);
}
.cart-item__qty {
	font-size: 12px;
	color: var(--zesta-grey-500);
}
.cart-item__remove {
	color: var(--zesta-grey-300);
	cursor: pointer;
	font-size: 16px;
}
.cart-item__remove:hover {
	color: var(--zesta-red);
}
.cart-drawer__footer {
	padding: 20px 24px;
	border-top: 1px solid var(--zesta-grey-200);
	background: var(--zesta-grey-50);
}
.cart-drawer__subtotal {
	display: flex;
	justify-content: space-between;
	margin-bottom: 16px;
	font-family: var(--font-heading);
}
.cart-drawer__subtotal span:first-child {
	font-size: 15px;
	font-weight: 600;
}
.cart-drawer__subtotal span:last-child {
	font-size: 20px;
	font-weight: 800;
	color: var(--zesta-red);
}
.cart-drawer__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.cart-btn {
	padding: 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 700;
	font-family: var(--font-heading);
	text-align: center;
	cursor: pointer;
	transition: var(--transition);
	border: none;
}
.cart-btn--view {
	background: var(--zesta-white);
	border: 2px solid var(--zesta-grey-300);
	color: var(--zesta-black);
}
.cart-btn--view:hover {
	border-color: var(--zesta-black);
}
.cart-btn--checkout {
	background: var(--zesta-red);
	color: white;
}
.cart-btn--checkout:hover {
	background: var(--zesta-red-hover);
}

/* ═══════════════════════════════════════════════════════════════════════
   WOOCOMMERCE OVERRIDES
   ═══════════════════════════════════════════════════════════════════════ */
.woocommerce ul.products li.product {
	border: 1px solid var(--zesta-grey-200);
	border-radius: 10px;
	padding: 16px;
	transition: var(--transition);
}
.woocommerce ul.products li.product:hover {
	border-color: var(--zesta-red);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	transform: translateY(-4px);
}
.woocommerce ul.products li.product .price {
	color: var(--zesta-red);
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 20px;
}
.woocommerce ul.products li.product .price del {
	color: var(--zesta-grey-500);
	font-weight: 400;
}
.woocommerce ul.products li.product .button {
	background: var(--zesta-red);
	border-radius: 6px;
	font-family: var(--font-heading);
	font-weight: 700;
}
.woocommerce ul.products li.product .button:hover {
	background: var(--zesta-red-hover);
}
.woocommerce ul.products li.product .onsale {
	background: var(--zesta-red);
	border-radius: 4px;
}
.woocommerce .woocommerce-pagination ul {
	display: flex;
	justify-content: center;
	gap: 6px;
	border: none;
}
.woocommerce nav.woocommerce-pagination ul li {
	border: none;
}

.woocommerce nav.woocommerce-pagination ul {
	display: flex;
	gap: 0.3em;
	margin: 0;
	border: none;
}
.woocommerce .woocommerce-pagination ul li a,
.woocommerce .woocommerce-pagination ul li span {
	width: 40px;
	height: 40px;
	aspect-ratio: 1;
	display: flex !important;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
	color: var(--zesta-grey-700);
	transition: var(--transition-fast);
	background: var(--zesta-white);
	padding: 0;
}
.woocommerce .woocommerce-pagination ul li a:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
	background: var(--zesta-red-light);
}
.woocommerce .woocommerce-pagination ul li span.current {
	background: var(--zesta-red);
	border-color: var(--zesta-red);
	color: white;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
	background: var(--zesta-red) !important;
	font-family: var(--font-heading);
	font-weight: 700;
	border-radius: 6px;
	color: #ffffff;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
	background: var(--zesta-red-hover) !important;
	color:#000000;
}
.woocommerce .star-rating span::before {
	color: var(--zesta-yellow);
}
.woocommerce-message,
.woocommerce-info {
	border-top-color: var(--zesta-red);
}
.woocommerce-message::before {
	color: var(--zesta-red);
}

.woocommerce-error::before, .woocommerce-info::before, .woocommerce-message::before {
    display:none;
}

/* Single product page — no tabs, scrollable */
.woocommerce div.product .woocommerce-tabs ul.tabs {
	display: none;
}
.woocommerce div.product .woocommerce-tabs .panel {
	display: block !important;
	margin-bottom: 40px;
}

/* ═══════════════════════════════════════════════════════════════════════
   CART PAGE
   ═══════════════════════════════════════════════════════════════════════ */
.woocommerce-cart .woocommerce {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 40px var(--container-padding-inline) 60px;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 32px;
	align-items: start;
}
.woocommerce-cart .woocommerce > .woocommerce-notices-wrapper {
	grid-column: 1 / -1;
}
.woocommerce-cart .woocommerce > form {
	grid-column: 1;
}

/* Page title */
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 24px;
}

/* Cart table */
.woocommerce table.shop_table {
	border-collapse: collapse;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 12px;
	overflow: hidden;
	background: var(--zesta-white);
}
.woocommerce table.shop_table thead {
	background: var(--zesta-grey-50);
}
.woocommerce table.shop_table thead th {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--zesta-grey-700);
	padding: 14px 20px;
	border-bottom: 2px solid var(--zesta-grey-200);
}
.woocommerce table.shop_table td {
	padding: 20px;
	border-bottom: 1px solid var(--zesta-grey-100);
	vertical-align: middle;
	font-size: 14px;
	color: var(--zesta-grey-900);
}
.woocommerce table.shop_table td.product-remove {
	width: 40px;
	text-align: center;
}
.woocommerce table.shop_table td.product-remove a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: var(--zesta-grey-100);
	color: var(--zesta-grey-500);
	font-size: 18px;
	transition: var(--transition-fast);
	text-decoration: none;
}
.woocommerce table.shop_table td.product-remove a:hover {
	background: var(--zesta-red-light);
	color: var(--zesta-red);
}

/* Cart product thumbnail */
.woocommerce table.shop_table td.product-thumbnail {
	width: 80px;
	padding: 16px;
}
.woocommerce table.shop_table td.product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: contain;
	border-radius: 8px;
	border: 1px solid var(--zesta-grey-200);
	background: var(--zesta-grey-50);
	padding: 4px;
}

/* Cart product name */
.woocommerce table.shop_table td.product-name {
	font-family: var(--font-heading);
	font-weight: 600;
	font-size: 14px;
}
.woocommerce table.shop_table td.product-name a {
	color: var(--zesta-grey-900);
	text-decoration: none;
}
.woocommerce table.shop_table td.product-name a:hover {
	color: var(--zesta-red);
}

/* Cart product price */
.woocommerce table.shop_table td.product-price,
.woocommerce table.shop_table td.product-subtotal {
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 15px;
	color: var(--zesta-grey-900);
}
.woocommerce table.shop_table td.product-subtotal {
	color: var(--zesta-red);
}
.woocommerce table.shop_table td.product-price del {
	color: var(--zesta-grey-500);
	font-weight: 400;
	font-size: 13px;
}
.woocommerce table.shop_table td.product-price ins {
	text-decoration: none;
}

/* Savings badge in cart */
.woocommerce table.shop_table .cart-discount-badge {
	display: inline-block;
	margin-top: 4px;
	padding: 2px 8px;
	background: var(--zesta-green);
	color: white;
	font-size: 11px;
	font-weight: 700;
	border-radius: 4px;
}

/* Cart quantity input */
.woocommerce table.shop_table td.product-quantity .quantity {
	display: inline-flex;
	align-items: center;
	border: 2px solid var(--zesta-grey-200);
	border-radius: 8px;
	overflow: hidden;
}
.woocommerce table.shop_table td.product-quantity .quantity input {
	width: 48px;
	padding: 8px 4px;
	border: none;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 700;
	font-size: 14px;
	background: transparent;
	color: var(--zesta-grey-900);
	-moz-appearance: textfield;
}
.woocommerce table.shop_table td.product-quantity .quantity input::-webkit-outer-spin-button,
.woocommerce table.shop_table td.product-quantity .quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
}

/* Coupon row */
.woocommerce table.shop_table td.actions {
	padding: 20px;
	background: var(--zesta-grey-50);
}
.woocommerce .coupon {
	display: inline-flex;
	gap: 8px;
	align-items: center;
}
.woocommerce .coupon label {
	display: none;
}
.woocommerce .coupon input.input-text {
	padding: 10px 16px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	font-size: 13px;
	font-family: var(--font-body);
	background: var(--zesta-white);
	min-width: 180px;
	transition: var(--transition-fast);
}
.woocommerce .coupon input.input-text:focus {
	outline: none;
	border-color: var(--zesta-red);
}
.woocommerce .coupon button {
	padding: 10px 20px !important;
	font-size: 13px !important;
	border-radius: 8px !important;
}
.woocommerce td.actions button[name="update_cart"] {
	float: right;
	padding: 10px 24px !important;
	font-size: 13px !important;
	border-radius: 8px !important;
	background: var(--zesta-red) !important;
}
.woocommerce td.actions button[name="update_cart"]:hover {
	background: var(--zesta-red-hover) !important;
	color:#000000;
}

/* Cart totals */
.woocommerce .cart-collaterals {
/*	grid-column: 2;
	grid-row: 1 / 3;
	position: sticky;
	top: 140px;*/
}

.woocommerce .cart-collaterals .cart_totals, .woocommerce-page .cart-collaterals .cart_totals
{
    width:100% !important;
}
.woocommerce .cart_totals {
	background: var(--zesta-white);
	border: 1px solid var(--zesta-grey-200);
	border-radius: 12px;
	padding: 0 16px;
}
.woocommerce .cart_totals > h2 {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 20px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--zesta-grey-200);
}
.woocommerce .cart_totals table {
	border: none;
	background: none;
}
.woocommerce .cart_totals table th {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	padding: 12px 0;
	border: none;
	background: none;
	text-align: left;
	width: 40%;
}
.woocommerce .cart_totals table td {
	font-size: 14px;
	color: var(--zesta-grey-900);
	padding: 12px 0;
	border: none;
	background: none;
	text-align: right;
}
.woocommerce .cart_totals table tr {
	border-bottom: 1px solid var(--zesta-grey-100);
}
.woocommerce .cart_totals table tr.order-total {
	border-bottom: none;
	border-top: 2px solid var(--zesta-grey-200);
}
.woocommerce .cart_totals table tr.order-total th {
	font-size: 16px;
	font-weight: 800;
	color: var(--zesta-black);
	padding-top: 16px;
}
.woocommerce .cart_totals table tr.order-total td {
	padding-top: 16px;
}
.woocommerce .cart_totals table tr.order-total td .woocommerce-Price-amount {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--zesta-red);
}

/* Free shipping highlight */
.woocommerce .cart_totals .shipping td {
	font-weight: 600;
}

/* Checkout button */
.woocommerce .cart_totals .wc-proceed-to-checkout {
	margin-top: 10px;
}
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button {
	display: block;
	text-align: center;
	padding: 16px 32px !important;
	font-size: 15px !important;
	font-weight: 700 !important;
	font-family: var(--font-heading) !important;
	border-radius: 10px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition);
}
.woocommerce .cart_totals .wc-proceed-to-checkout a.checkout-button:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}

/* Empty cart */
.woocommerce-cart .cart-empty {
	text-align: center;
	padding: 60px 20px;
	font-size: 16px;
	color: var(--zesta-grey-500);
}
.woocommerce-cart .return-to-shop a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 16px;
}

/* Cart page responsive */
@media (max-width: 1024px) {
	.woocommerce-cart .woocommerce {
		grid-template-columns: 1fr;
	}
	.woocommerce .cart-collaterals {
		grid-column: 1;
		grid-row: auto;
		position: static;
	}
}
@media (max-width: 768px) {
	.woocommerce table.shop_table thead {
		display: none;
	}
	.woocommerce table.shop_table tr {
		display: grid;
		grid-template-columns: 80px 1fr auto;
		grid-template-rows: auto auto;
		gap: 8px 16px;
		padding: 16px;
		border-bottom: 1px solid var(--zesta-grey-200);
	}
	.woocommerce table.shop_table td {
		padding: 0;
		border: none;
	}
	.woocommerce table.shop_table td.product-thumbnail {
		grid-row: 1 / 3;
		width: auto;
		padding: 0;
	}
	.woocommerce table.shop_table td.product-name {
		grid-column: 2;
	}
	.woocommerce table.shop_table td.product-price {
		display: none;
	}
	.woocommerce table.shop_table td.product-quantity {
		grid-column: 2;
	}
	.woocommerce table.shop_table td.product-subtotal {
		grid-column: 3;
		grid-row: 1 / 3;
		align-self: center;
	}
	.woocommerce table.shop_table td.product-remove {
		position: absolute;
		right: 12px;
		top: 12px;
	}
	.woocommerce table.shop_table td.actions {
		grid-column: 1 / -1;
	}
	.woocommerce .coupon {
		flex-direction: column;
		width: 100%;
	}
	.woocommerce .coupon input.input-text {
		min-width: auto;
		width: 100%;
	}
	.woocommerce td.actions button[name="update_cart"] {
		float: none;
		width: 100%;
		margin-top: 8px;
	}
	.woocommerce .cart_totals {
		max-width: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════════
   CHECKOUT PAGE
   ═══════════════════════════════════════════════════════════════════════ */
.woocommerce-checkout .woocommerce {
	max-width: var(--container-max);
	margin: 0 auto;
	padding: 40px var(--container-padding-inline) 60px;
}
.woocommerce-checkout .page-body,
.woocommerce-checkout .entry-content {
	max-width: 100%;
}

/* Page title */
.woocommerce-checkout .entry-title,
.woocommerce-checkout .page-title {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 24px;
}

/* Coupon toggle */
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	background: var(--zesta-grey-50);
	border-top: 3px solid var(--zesta-red);
	padding: 14px 20px;
	font-size: 14px;
	color: var(--zesta-grey-700);
	border-radius: 0 0 8px 8px;
	margin-bottom: 24px;
}
.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
	color: var(--zesta-red);
	font-weight: 600;
}
.woocommerce-checkout .checkout_coupon {
	background: var(--zesta-grey-50);
	border: 1px solid var(--zesta-grey-200);
	border-radius: 10px;
	padding: 20px;
	margin-bottom: 24px;
}
.woocommerce-checkout .checkout_coupon input.input-text {
	padding: 10px 16px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	font-size: 14px;
	font-family: var(--font-body);
	min-width: 220px;
}
.woocommerce-checkout .checkout_coupon input.input-text:focus {
	outline: none;
	border-color: var(--zesta-red);
}

/* ── Two-column layout ── */
.zesta-checkout-layout {
	display: grid;
	grid-template-columns: 0.8fr 620px;
	gap: 40px;
	align-items: start;
}
.zesta-checkout__left {
	min-width: 0;
}
.zesta-checkout__right {
	
	top: 140px;
}

/* Section spacing */
.zesta-checkout__section {
	margin-bottom: 28px;
}
.zesta-checkout__section > h3 {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--zesta-grey-200);
}

/* Right column title */
.zesta-checkout__right-title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 20px;
	padding-bottom: 12px;
	border-bottom: 2px solid var(--zesta-grey-200);
}

/* ── Form fields ── */
.woocommerce-checkout .form-row {
	margin-bottom: 16px;
}
.woocommerce-checkout .form-row label {
	display: block;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-900);
	margin-bottom: 6px;
}
.woocommerce-checkout .form-row label .required {
	color: var(--zesta-red);
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .select2-container .select2-selection--single {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	font-size: 14px;
	font-family: var(--font-body);
	color: var(--zesta-grey-900);
	background: var(--zesta-white);
	transition: var(--transition-fast);
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus {
	outline: none;
	border-color: var(--zesta-red);
	box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}
.woocommerce-checkout .select2-container .select2-selection--single {
	height: 46px;
	display: flex;
	align-items: center;
}
.woocommerce-checkout .select2-container .select2-selection__rendered {
	padding-left: 16px;
	font-size: 14px;
	color: var(--zesta-grey-900);
}
.woocommerce-checkout .select2-container .select2-selection__arrow {
	height: 46px;
	right: 12px;
}
.woocommerce-checkout .form-row textarea {
	min-height: 80px;
	resize: vertical;
}

/* Name fields side by side */
.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
	width: 49% !important;
	display: inline-block;
	vertical-align: top;
}
.woocommerce-checkout .form-row-first {
	float: left;
}
.woocommerce-checkout .form-row-last {
	float: right;
}
.woocommerce-checkout .form-row-wide {
	clear: both;
}

/* Ship to different address */
.woocommerce-checkout #ship-to-different-address label {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	color: var(--zesta-black);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 16px;
}
.woocommerce-checkout #ship-to-different-address input[type="checkbox"] {
	width: 18px;
	height: 18px;
	accent-color: var(--zesta-red);
}

/* Invoice fields */
.woocommerce-checkout .invoice-field label {
	font-weight: 600;
}

/* ── Order review table ── */
.woocommerce-checkout .woocommerce-checkout-review-order-table {
	border: 1px solid var(--zesta-grey-200);
	border-radius: 12px;
	overflow: hidden;
	background: var(--zesta-white);
	margin-bottom: 20px;
	width: 100%;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead {
	background: var(--zesta-grey-50);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table thead th {
	font-family: var(--font-heading);
	font-size: 12px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--zesta-grey-700);
	padding: 12px 16px;
	border-bottom: 2px solid var(--zesta-grey-200);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table td,
.woocommerce-checkout .woocommerce-checkout-review-order-table th {
	padding: 12px 16px;
	font-size: 13px;
	border-bottom: 1px solid var(--zesta-grey-100);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-name {
	font-weight: 600;
	color: var(--zesta-grey-900);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table .cart_item td.product-total {
	font-family: var(--font-heading);
	font-weight: 700;
	text-align: right;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot th {
	font-family: var(--font-heading);
	font-weight: 600;
	color: var(--zesta-grey-700);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
	font-weight: 600;
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th,
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total td {
	padding-top: 14px;
	border-top: 2px solid var(--zesta-grey-200);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total th {
	font-size: 15px;
	font-weight: 800;
	color: var(--zesta-black);
}
.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot .order-total .woocommerce-Price-amount {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 800;
	color: var(--zesta-red);
}

/* Shipping methods */
.woocommerce-checkout .woocommerce-shipping-methods {
	padding: 0;
	margin: 0;
}
.woocommerce-checkout .woocommerce-shipping-methods li {
	list-style: none;
	padding: 5px 0;
	font-size: 13px;
	color: var(--zesta-grey-700);
}
.woocommerce-checkout .woocommerce-shipping-methods li input[type="radio"] {
	accent-color: var(--zesta-red);
	margin-right: 6px;
}

/* ── Payment methods ── */
.woocommerce-checkout #payment {
	background: var(--zesta-grey-50);
	border: 1px solid var(--zesta-grey-200);
	border-radius: 12px;
	overflow: hidden;
}
.woocommerce-checkout #payment ul.payment_methods {
	padding: 0;
	margin: 0;
	border-bottom: 1px solid var(--zesta-grey-200);
}
.woocommerce-checkout #payment ul.payment_methods li {
	list-style: none;
	padding: 0;
	border-bottom: 1px solid var(--zesta-grey-100);
}
.woocommerce-checkout #payment ul.payment_methods li:last-child {
	border-bottom: none;
}
.woocommerce-checkout #payment ul.payment_methods li label {
/*	display: flex;
	align-items: center;
	gap: 10px;
	padding: 14px 16px;*/
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-grey-900);
	transition: var(--transition-fast);
}
.woocommerce-checkout #payment ul.payment_methods li label:hover {
	background: var(--zesta-white);
}
.woocommerce-checkout #payment ul.payment_methods li input[type="radio"] {
	accent-color: var(--zesta-red);
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

#add_payment_method #payment ul.payment_methods li input, .woocommerce-cart #payment ul.payment_methods li input, .woocommerce-checkout #payment ul.payment_methods li input {
    margin: 1em 0 1em 1em;
}
.woocommerce-checkout #payment ul.payment_methods li img {
	max-height: 24px;
	margin-left: auto;
}
.woocommerce-checkout #payment div.payment_box {
	background: var(--zesta-white);
	padding: 14px 16px;
	font-size: 13px;
	color: var(--zesta-grey-700);
	line-height: 1.6;
	border-top: 1px solid var(--zesta-grey-200);
}
.woocommerce-checkout #payment div.payment_box::before {
	display: none;
}


#box_now_delivery_button, #box_now_delivery_button_blocks {
    border-radius: 0 ! important;
    box-shadow: none !important;
    padding: 4px !important;
}

.woocommerce-billing-fields__field-wrapper {
    border-top: 2px solid #e5e5e5;
    
}

.woocommerce-cart .page-body {
max-width: 100%
}

/* Place order */
.woocommerce-checkout #payment .place-order {
	padding: 16px;
	background: var(--zesta-white);
}
.woocommerce-checkout #place_order {
	display: block;
	width: 100%;
	padding: 16px 32px !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	font-family: var(--font-heading) !important;
	border-radius: 10px !important;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	transition: var(--transition);
}
.woocommerce-checkout #place_order:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(204, 0, 0, 0.3);
}

/* Terms */
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	padding: 0 16px 4px;
	font-size: 12px;
	color: var(--zesta-grey-500);
}
.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper a {
	color: var(--zesta-red);
}

/* Validation */
.woocommerce-checkout .woocommerce-invalid input.input-text {
	border-color: var(--zesta-red);
}
.woocommerce-checkout .woocommerce-validated input.input-text {
	border-color: var(--zesta-green);
}

/* ── Checkout responsive ── */
@media (max-width: 1024px) {
	.zesta-checkout-layout {
		grid-template-columns: 1fr 360px;
		gap: 28px;
	}
}
@media (max-width: 768px) {
	.zesta-checkout-layout {
		grid-template-columns: 1fr;
	}
	.zesta-checkout__right {
		position: static;
	}
	.woocommerce-checkout .form-row-first,
	.woocommerce-checkout .form-row-last {
		width: 100% !important;
		float: none;
	}
}


/* ═══════════════════════════════════════════════════════════════════════
   BREADCRUMBS (shared)
   ═══════════════════════════════════════════════════════════════════════ */
.sp-breadcrumbs {
	padding: 16px 0;
	background: var(--zesta-grey-50);
	border-bottom: 1px solid var(--zesta-grey-200);
}
.sp-breadcrumb-nav {
	font-size: 13px;
	color: var(--zesta-grey-500);
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.sp-breadcrumb-nav a {
	color: var(--zesta-grey-700);
}
.sp-breadcrumb-nav a:hover {
	color: var(--zesta-red);
}
.sp-breadcrumb-nav i {
	font-size: 8px;
	color: var(--zesta-grey-300);
}
.sp-breadcrumb-nav span {
	color: var(--zesta-grey-900);
	font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════════════════════ */
.sp-main {
	padding: 40px 0;
}
.sp-layout {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 48px;
	align-items: start;
}

/* Gallery */
.sp-gallery {
	position: relative;
}
.sp-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-heading);
    border: 1px solid var(--zesta-red);
}

.sp-badge--sale {
	background: var(--zesta-white);
	color: var(--zesta-red);
}
.sp-badge--shipping {
	position: absolute;
	top: 12px;
	right: 12px;
	left: auto !important;
	z-index: 5;
	padding: 6px 14px;
	border-radius: 6px;
    font-size: 14px;
    font-weight: 300;
    font-family: var(--font-heading);
    border: 1px solid var(--zesta-red);
    color: var(--zesta-red);
}

.sp-badge--shipping i {
	margin-right: 4px;
	font-size: 11px;
}
.sp-gallery__main {
	background: var(--zesta-white);
	border-radius: 12px;
	border: 1px solid var(--zesta-grey-200);
	overflow: hidden;
	position: relative;
	margin-bottom: 16px;
}
.sp-gallery__main img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: contain;
	padding: 24px;
}
.sp-gallery__zoom {
	display: block;
	position: relative;
	cursor: zoom-in;
}
.sp-gallery__zoom-icon {
	position: absolute;
	bottom: 16px;
	right: 16px;
	width: 40px;
	height: 40px;
	background: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	color: var(--zesta-grey-700);
	opacity: 0;
	transition: var(--transition);
}
.sp-gallery__zoom:hover .sp-gallery__zoom-icon {
	opacity: 1;
}
/* GLightbox overrides */
.goverlay { background: rgba(0, 0, 0, 0.88) !important; }
.glightbox-clean .gnext, .glightbox-clean .gprev {
	background: var(--zesta-red) !important;
	border-radius: 50% !important;
	width: 44px !important;
	height: 44px !important;
}
.glightbox-clean .gnext:hover, .glightbox-clean .gprev:hover {
	background: var(--zesta-red-hover) !important;
}
.glightbox-clean .gclose {
	background: none !important;
	opacity: 0.8;
}
.glightbox-clean .gclose:hover { opacity: 1; }
.glightbox-clean .gslide-image img {
	border-radius: 8px;
}
.sp-gallery__thumbs {
	display: flex;
	gap: 10px;
	overflow-x: auto;
	padding-bottom: 4px;
}
.sp-thumb {
	width: 72px;
	height: 72px;
	border-radius: 8px;
	border: 2px solid var(--zesta-grey-200);
	overflow: hidden;
	cursor: pointer;
	flex-shrink: 0;
	transition: var(--transition);
	background: var(--zesta-grey-50);
	padding: 4px;
}
.sp-thumb:hover,
.sp-thumb.active {
	border-color: var(--zesta-red);
}
.sp-thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Details */
.sp-details__cats {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--zesta-grey-500);
	margin-bottom: 8px;
}
.sp-details__cats a {
	color: var(--zesta-grey-500);
}
.sp-details__cats a:hover {
	color: var(--zesta-red);
}
.sp-details__title {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	line-height: 1.3;
	color: var(--zesta-black);
	margin-bottom: 12px;
}
.sp-details__rating {
	display: flex;
	align-items: center;
	gap: 4px;
	margin-bottom: 16px;
}
.sp-details__rating i {
	font-size: 14px;
	color: var(--zesta-yellow);
}
.sp-details__rating span {
	font-size: 13px;
	color: var(--zesta-grey-500);
	margin-left: 6px;
}
.sp-details__price {
	margin-bottom: 16px;
}

.sp-details__price ins {
    text-decoration:none;
}
.sp-details__price .price {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 800;
	color: var(--zesta-red);
}
.sp-details__price .price del {
	font-size: 22px;
	color: var(--zesta-grey-500);
	font-weight: 400;
}
.sp-details__price .price ins {
	text-decoration: none;
}
.sp-details__stock {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	font-weight: 600;
	padding: 8px 16px;
	border-radius: 6px;
	margin-bottom: 20px;
}
.sp-details__stock--in-stock {
	background: #e8f5e9;
	color: #2e7d32;
}
.sp-details__stock--on-backorder {
	background: #fff3e0;
	color: #e65100;
}
.sp-details__stock--out-of-stock {
	background: #ffebee;
	color: #c62828;
}
/* Cart / Checkout backorder notice */
.backorder_notification {
	font-size: 13px;
	font-weight: 600;
	color: #e65100;
	margin-top: 4px;
}
.sp-details__short-desc {
	font-size: 15px;
	line-height: 1.7;
	color: var(--zesta-grey-700);
	margin-bottom: 24px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--zesta-grey-200);
}
.sp-details__short-desc p:last-child {
	margin-bottom: 0;
}

/* Add to cart form override */
.sp-details__cart {
	margin-bottom: 2px;
	padding-bottom: 24px;
	border-bottom: 1px solid var(--zesta-grey-200);
}
.sp-details__cart .cart {
	display: flex;
	/* align-items: center; */
	gap: 12px;
}
.sp-details__cart .quantity {
	display: flex;
	align-items: center;
	border: 2px solid var(--zesta-grey-200);
	border-radius: 8px;
	overflow: hidden;
	transition: var(--transition);
}
.sp-details__cart .quantity:focus-within {
	border-color: var(--zesta-red);
}
.sp-details__cart .quantity input {
	width: 52px;
	padding: 12px 4px;
	border: none;
	font-size: 16px;
	text-align: center;
	font-family: var(--font-heading);
	font-weight: 700;
	background: transparent;
	color: var(--zesta-black);
	-moz-appearance: textfield;
}
.sp-details__cart .quantity input::-webkit-outer-spin-button,
.sp-details__cart .quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.sp-details__cart .single_add_to_cart_button {
	flex: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 14px 32px;
	background: var(--zesta-red);
	border: none;
	color: white;
	font-size: 15px;
	font-weight: 700;
	font-family: var(--font-heading);
	border-radius: 8px;
	cursor: pointer;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	white-space: nowrap;
}
.sp-details__cart .single_add_to_cart_button:hover {
	background: var(--zesta-red-hover);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
}
.sp-details__cart .single_add_to_cart_button:active {
	transform: translateY(0);
	box-shadow: 0 2px 8px rgba(204, 0, 0, 0.2);
}
.sp-details__cart .single_add_to_cart_button:disabled,
.sp-details__cart .single_add_to_cart_button.disabled {
	background: var(--zesta-grey-300);
	cursor: not-allowed;
	transform: none;
	box-shadow: none;
}
[data-theme='dark'] .sp-details__cart .quantity {
	border-color: var(--zesta-grey-700);
}
/* [data-theme='dark'] .sp-details__cart .quantity input {
	color: var(--zesta-white);
} */
[data-theme='dark'] .sp-details__cart {
	border-bottom-color: var(--zesta-grey-700);
}

/* Wishlist heart button (YITH) inside cart form */
.sp-details__cart .yith-wcwl-add-to-wishlist {
	display: flex;
	align-items: stretch;
}
.sp-details__cart .yith-wcwl-add-to-wishlist a,
.sp-details__cart .yith-wcwl-add-to-wishlist span.feedback {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	border: 2px solid var(--zesta-grey-200);
	border-radius: 8px;
	background: var(--zesta-white);
	cursor: pointer;
	transition: var(--transition);
	font-size: 20px;
	color: var(--zesta-grey-500);
}
.sp-details__cart .yith-wcwl-add-to-wishlist a:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
}
.sp-details__cart .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse a,
.sp-details__cart .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistaddedbrowse a {
	color: var(--zesta-red);
	border-color: var(--zesta-red);
}
.sp-details__cart .yith-wcwl-add-to-wishlist a span,
.sp-details__cart .yith-wcwl-add-to-wishlist .yith-wcwl-add-button--text {
	display: none !important;
}
.sp-details__cart .yith-wcwl-add-to-wishlist .feedback {
	font-size: 0;
}
.sp-details__cart .yith-wcwl-add-to-wishlist .feedback::before {
	font-size: 20px;
}

/* Meta */
.sp-details__meta {
	margin-bottom: 24px;
}
.sp-meta-row {
	font-size: 13px;
	color: var(--zesta-grey-700);
	padding: 6px 0;
	display: flex;
	gap: 8px;
}
.sp-meta-label {
	font-weight: 700;
	color: var(--zesta-grey-900);
	min-width: 80px;
}
.sp-meta-row a {
	color: var(--zesta-grey-700);
}
.sp-meta-row a:hover {
	color: var(--zesta-red);
}

.sp-meta-row--desc-snippet {
	display: block;
	font-size: 13px;
	line-height: 1.5;
	color: var(--zesta-grey-700);
	padding-bottom: 10px;
	margin-bottom: 4px;
	border-bottom: 1px solid var(--zesta-grey-200, #e5e7eb);
}
.sp-desc-more-link {
	color: var(--zesta-red);
	font-weight: 600;
	text-decoration: none;
	margin-left: 4px;
	white-space: nowrap;
}
.sp-desc-more-link:hover {
	text-decoration: underline;
}

/* Trust mini badges */
.sp-details__trust {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	padding: 20px;
	background: var(--zesta-grey-50);
	border-radius: 10px;
	border: 1px solid var(--zesta-grey-200);
}
.sp-trust-item {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-700);
}
.sp-trust-item i {
	font-size: 16px;
	color: var(--zesta-red);
	width: 20px;
	text-align: center;
}

/* Product sections below gallery */
.sp-section {
	padding: 48px 0;
	border-top: 1px solid var(--zesta-grey-200);
}
.sp-section--description {
	background: var(--zesta-white);
}
.sp-section--specs {
	background: var(--zesta-grey-50);
}
.sp-section--reviews {
	background: var(--zesta-white);
}
.sp-section--related {
	background: var(--zesta-grey-50);
	padding-bottom: 60px;
}
.sp-section--upsells {
	background: var(--zesta-white);
}
.sp-section__title {
	font-family: var(--font-heading);
	font-size: 22px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 28px;
	padding-bottom: 16px;
	border-bottom: 3px solid var(--zesta-red);
	display: inline-block;
}
.sp-section__content {
	font-size: 15px;
	line-height: 1.8;
	color: var(--zesta-grey-700);
}
.sp-section__content h2,
.sp-section__content h3 {
	font-family: var(--font-heading);
	color: var(--zesta-black);
	margin: 28px 0 12px;
}
.sp-section__content img {
	border-radius: 8px;
	margin: 20px 0;
}
.sp-section__content table {
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
.sp-section__content table th,
.sp-section__content table td {
	padding: 10px 16px;
	border: 1px solid var(--zesta-grey-200);
	font-size: 14px;
}
.sp-section__content table th {
	background: var(--zesta-grey-100);
	font-weight: 700;
	text-align: left;
}

.sp-section__content a:link {
    color: var(--zesta-red);
}

.sp-section__content ul li a:link {
    color: var(--zesta-red);
}

/* Specs table */
.sp-specs-table {
	width: 100%;
	border-collapse: collapse;
}
.sp-specs-table tr:nth-child(even) {
	background: var(--zesta-white);
}
.sp-specs-table tr:nth-child(odd) {
	background: var(--zesta-grey-50);
}
.sp-specs-table th,
.sp-specs-table td {
	padding: 14px 20px;
	font-size: 14px;
	border: 1px solid var(--zesta-grey-200);
}
.sp-specs-table th {
	font-weight: 700;
	color: var(--zesta-grey-900);
	width: 35%;
	background: var(--zesta-grey-100);
}
.sp-specs-table td {
	color: var(--zesta-grey-700);
}

/* Share buttons */
.sp-details__share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	padding-top: 20px;
	border-top: 1px solid var(--zesta-grey-200);
}
.sp-share-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-700);
}
.sp-share-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	border: 1px solid var(--zesta-grey-200);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--zesta-grey-700);
	font-size: 14px;
	transition: var(--transition);
}
.sp-share-btn:hover {
	background: var(--zesta-red);
	border-color: var(--zesta-red);
	color: white;
}

/* Section tab navigation */
.sp-tabs {
	position: sticky;
	top: 80px;
	z-index: 20;
	background: var(--zesta-white);
	border-top: 1px solid var(--zesta-grey-200);
	border-bottom: 1px solid var(--zesta-grey-200);
}
.sp-tabs__inner {
	display: flex;
	gap: 0;
	overflow-x: auto;
}
.sp-tabs__link {
	padding: 16px 24px;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	white-space: nowrap;
	position: relative;
	transition: var(--transition-fast);
}
.sp-tabs__link:hover {
	color: var(--zesta-red);
}
.sp-tabs__link.active {
	color: var(--zesta-red);
}
.sp-tabs__link.active::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	background: var(--zesta-red);
}

/* Sticky add-to-cart bar */
.sp-sticky-bar {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--zesta-white);
	border-top: 1px solid var(--zesta-grey-200);
	box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
	z-index: 90;
	padding: 12px 0;
	transform: translateY(100%);
	transition: transform 0.3s ease;
}
.sp-sticky-bar.visible {
	transform: translateY(0);
}
.sp-sticky-bar__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
}
.sp-sticky-bar__product {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}
.sp-sticky-bar__img {
	width: 44px;
	height: 44px;
	object-fit: contain;
	border-radius: 6px;
	background: var(--zesta-grey-50);
	border: 1px solid var(--zesta-grey-200);
	flex-shrink: 0;
}
.sp-sticky-bar__info {
	min-width: 0;
}
.sp-sticky-bar__name {
	display: block;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: var(--zesta-black);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 340px;
}
.sp-sticky-bar__price {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 800;
	color: var(--zesta-red);
}
.sp-sticky-bar__price del {
	font-size: 12px;
	color: var(--zesta-grey-500);
	font-weight: 400;
}
.sp-sticky-bar__price ins {
	text-decoration: none;
}
.sp-sticky-bar__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 28px;
	background: var(--zesta-red);
	color: white;
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	border-radius: 8px;
	white-space: nowrap;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 0.5px;
}
.sp-sticky-bar__btn:hover {
	background: var(--zesta-red-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(204, 0, 0, 0.3);
	color: white;
}

/* Related / upsell grids */
.products-grid--related {
	grid-template-columns: repeat(5, 1fr);
}

/* ═══════════════════════════════════════════════════════════════════════
   ARCHIVE / CATEGORY PAGE
   ═══════════════════════════════════════════════════════════════════════ */
.archive-header {
	padding: 32px 0;
	background: var(--zesta-white);
}
.archive-header__title {
	font-family: var(--font-heading);
	font-size: 28px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 8px;
}
.archive-header__desc {
	font-size: 14px;
	color: var(--zesta-grey-700);
	line-height: 1.7;
	margin-bottom: 20px;
	max-width: 800px;
}
.archive-header__desc p:last-child {
	margin-bottom: 0;
}

/* Subcategory cards */
.archive-subcats {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 16px;
}
.archive-subcat {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px 8px 8px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	background: var(--zesta-grey-50);
	transition: var(--transition);
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-900);
}
.archive-subcat:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
}
.archive-subcat img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 4px;
	background: white;
}
.archive-subcat small {
	font-weight: 400;
	color: var(--zesta-grey-500);
}

/* Layout */
.archive-main {
	padding: 32px 0 60px;
}
.archive-layout {
	display: grid;
	grid-template-columns: 270px 1fr;
	gap: 32px;
	align-items: start;
}

/* Sidebar */
.archive-sidebar {
	position: sticky;
	top: 148px;
	max-height: 80vh;
	overflow-y: scroll;
	padding-inline-end: 0.5em;
	scrollbar-gutter: stable;
}
.archive-sidebar__heading {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.archive-sidebar__heading i {
	color: var(--zesta-red);
}
.archive-sidebar__block {
	background: var(--zesta-white);
	border-radius: 12px;
	padding: 20px 15px;
	border: 1px solid var(--zesta-grey-200);
	margin-bottom: 16px;
	max-height: 70vh;
	overflow: hidden;
}
.archive-sidebar__block h4 {
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	color: var(--zesta-black);
	margin-bottom: 16px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--zesta-grey-200);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.archive-sidebar__block h4 i {
	font-size: 12px;
	color: var(--zesta-red);
	width: 16px;
	text-align: center;
}

/* Category filter */
.sidebar-cat-list {
	padding: 0;
	margin: 0;
}
.sidebar-cat-item {
	list-style: none;
	position: relative;
}
.sidebar-cat-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 9px 12px;
	font-size: 13px;
	color: var(--zesta-grey-700);
	border-radius: 8px;
	transition: var(--transition-fast);
	gap: 8px;
}
.sidebar-cat-link:hover {
	background: var(--zesta-grey-50);
	color: var(--zesta-red);
}
.sidebar-cat-item.active > .sidebar-cat-link {
	background: var(--zesta-red-light);
	color: var(--zesta-red);
	font-weight: 700;
}
.sidebar-cat-name {
	flex: 1;
	min-width: 0;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.sidebar-cat-count {
	font-size: 11px;
	color: var(--zesta-grey-500);
	background: var(--zesta-grey-100);
	padding: 2px 7px;
	border-radius: 10px;
	font-weight: 600;
	flex-shrink: 0;
}
.sidebar-cat-item.active > .sidebar-cat-link .sidebar-cat-count {
	background: var(--zesta-red);
	color: white;
}
.sidebar-cat-toggle {
	/* position: absolute;
	top: 5px;
	right: 4px; */
	width: 28px;
	height: 28px;
	border: none;
	background: none;
	cursor: pointer;
	color: var(--zesta-grey-500);
	font-size: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
	transition: var(--transition-fast);
	z-index: 2;
}
.sidebar-cat-toggle:hover {
	background: var(--zesta-grey-100);
	color: var(--zesta-red);
}
.sidebar-cat-item.open > .sidebar-cat-toggle i {
	transform: rotate(180deg);
}
.sidebar-cat-children {
	padding: 0 0 0 12px;
	margin: 0;
	display: none;
	border-left: 2px solid var(--zesta-grey-200);
	margin-left: 16px;
}
.sidebar-cat-item.open > .sidebar-cat-children {
	display: block;
}
.sidebar-cat-children .sidebar-cat-link {
	padding: 7px 10px;
	font-size: 12px;
}

/* Price filter */
.sidebar-price-slider {
	position: relative;
	height: 36px;
	margin-bottom: 4px;
}
.sidebar-price-track {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 6px;
	background: var(--zesta-grey-200);
	border-radius: 3px;
	transform: translateY(-50%);
}
.sidebar-price-range {
	position: absolute;
	height: 100%;
	background: var(--zesta-red);
	border-radius: 3px;
}
.sidebar-price-input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	-webkit-appearance: none;
	appearance: none;
	background: none;
	pointer-events: none;
	margin: 0;
}
.sidebar-price-input::-webkit-slider-thumb {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--zesta-white);
	border: 3px solid var(--zesta-red);
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
	transition: box-shadow 0.15s ease;
}
.sidebar-price-input::-webkit-slider-thumb:hover {
	box-shadow: 0 2px 8px rgba(204, 0, 0, 0.3);
}
.sidebar-price-input::-moz-range-thumb {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--zesta-white);
	border: 3px solid var(--zesta-red);
	cursor: pointer;
	pointer-events: auto;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}
.sidebar-price-values {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	margin-bottom: 14px;
}
.sidebar-price-label {
	font-family: var(--font-heading);
	font-size: 15px;
	font-weight: 700;
	color: var(--zesta-black);
	background: var(--zesta-grey-50);
	padding: 6px 14px;
	border-radius: 6px;
	border: 1px solid var(--zesta-grey-200);
}
.sidebar-price-sep {
	color: var(--zesta-grey-300);
	font-size: 14px;
}
.sidebar-price-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px;
	background: var(--zesta-red);
	color: white;
	border: none;
	border-radius: 8px;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 700;
	cursor: pointer;
	transition: var(--transition);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.sidebar-price-btn:hover {
	background: var(--zesta-red-hover);
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(204, 0, 0, 0.25);
}

/* Stock / Sale toggle */
.sidebar-stock-toggle {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	font-size: 13px;
	color: var(--zesta-grey-700);
	padding: 4px 0;
	user-select: none;
}
.sidebar-stock-toggle input {
	display: none;
}
.sidebar-stock-check {
	width: 38px;
	height: 22px;
	background: var(--zesta-grey-200);
	border-radius: 11px;
	position: relative;
	transition: var(--transition-fast);
	flex-shrink: 0;
}
.sidebar-stock-check::after {
	content: '';
	position: absolute;
	top: 3px;
	left: 3px;
	width: 16px;
	height: 16px;
	background: white;
	border-radius: 50%;
	transition: var(--transition-fast);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}
.sidebar-stock-toggle input:checked + .sidebar-stock-check {
	background: var(--zesta-red);
}
.sidebar-stock-toggle input:checked + .sidebar-stock-check::after {
	transform: translateX(16px);
}

/* Reset filters button */
.sidebar-reset-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	width: 100%;
	padding: 10px;
	background: none;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 8px;
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	transition: var(--transition-fast);
	margin-bottom: 16px;
}
.sidebar-reset-btn:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
	background: var(--zesta-red-light);
}

.archive-sidebar__close {
	display: none;
	position: absolute;
	top: 12px;
	right: 12px;
	width: 32px;
	height: 32px;
	border: none;
	background: var(--zesta-grey-100);
	border-radius: 50%;
	cursor: pointer;
	font-size: 14px;
	color: var(--zesta-grey-700);
	align-items: center;
	justify-content: center;
}
.archive-sidebar__overlay {
	display: none;
}
.archive-sidebar__promo {
	margin-top: 20px;
}
.archive-sidebar__promo img {
	border-radius: 12px;
	width: 100%;
}

/* Toolbar */
.archive-toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	padding: 12px 16px;
	background: var(--zesta-grey-50);
	border-radius: 8px;
	border: 1px solid var(--zesta-grey-200);
	gap: 12px;
}
.archive-toolbar__filter {
	display: none;
	align-items: center;
	gap: 6px;
	padding: 8px 14px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 6px;
	background: transparent;
	font-family: var(--font-heading);
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-900);
	cursor: pointer;
	transition: var(--transition-fast);
}
.archive-toolbar__filter:hover {
	border-color: var(--zesta-red);
	color: var(--zesta-red);
}
.archive-toolbar__filter i {
	font-size: 12px;
}
.archive-toolbar__count {
	font-size: 13px;
	color: var(--zesta-grey-500);
}
.archive-toolbar__count .woocommerce-result-count {
	margin: 0;
}

/* Active filters */
.archive-active-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin-bottom: 16px;
}
.archive-filter-tag {
	display: inline-flex;
	align-items: center;
	padding: 4px 12px;
	background: var(--zesta-red-light);
	color: var(--zesta-red);
	font-size: 12px;
	font-weight: 600;
	border-radius: 20px;
}
.archive-filter-clear {
	font-size: 12px;
	color: var(--zesta-grey-500);
	text-decoration: underline;
}
.archive-filter-clear:hover {
	color: var(--zesta-red);
}

/* No products state */
.archive-no-products {
	text-align: center;
	padding: 80px 20px;
}
.archive-no-products i {
	font-size: 48px;
	color: var(--zesta-grey-300);
	margin-bottom: 20px;
}
.archive-no-products h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	color: var(--zesta-black);
	margin-bottom: 8px;
}
.archive-no-products p {
	color: var(--zesta-grey-500);
	margin-bottom: 24px;
}

/* Archive product grid — 4 cols to match sidebar layout */
.products-grid--archive {
	grid-template-columns: repeat(4, 1fr);
}
.archive-toolbar__sort select {
	color: var(--zesta-grey-900);
	background: var(--zesta-white);
	padding: 8px 12px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 6px;
	font-size: 13px;
	font-family: var(--font-body);
}
.archive-toolbar__sort .woocommerce-ordering {
	margin: 0;
}

/* Pagination */
.archive-pagination {
	margin-top: 32px;
}
.archive-pagination .woocommerce-pagination {
	text-align: center;
}

/* ═══════════════════════════════════════════════════════════════════════
   SINGLE BLOG POST
   ═══════════════════════════════════════════════════════════════════════ */
.single-post-page .container {
	padding-top: 40px;
	padding-bottom: 40px;
}
.post-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	align-items: start;
}
.post-content {
	min-width: 0;
}

/* Meta */
.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--zesta-grey-500);
	margin-bottom: 16px;
}
.post-meta a {
	color: var(--zesta-grey-500);
}
.post-meta a:hover {
	color: var(--zesta-red);
}
.post-meta__sep {
	color: var(--zesta-grey-300);
}
.post-meta i {
	margin-right: 4px;
}

/* Title */
.post-title {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 800;
	line-height: 1.25;
	color: var(--zesta-black);
	margin-bottom: 24px;
}

/* Featured image */
.post-featured-image {
	margin-bottom: 32px;
	border-radius: 12px;
	overflow: hidden;
}
.post-featured-image img {
	width: 80%;
	display: block;
	margin:0 auto;
}

/* Body */
.post-body {
	font-size: 16px;
	line-height: 1.85;
	color: var(--zesta-grey-900);
}
.post-body h2 {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 800;
	margin: 36px 0 16px;
	color: var(--zesta-black);
}
.post-body h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	margin: 28px 0 12px;
	color: var(--zesta-black);
}
.post-body p {
	margin-bottom: 16px;
}
.post-body img {
	border-radius: 8px;
	margin: 20px 0;
}
.post-body blockquote {
	border-left: 4px solid var(--zesta-red);
	background: var(--zesta-grey-50);
	padding: 20px 24px;
	margin: 24px 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
	color: var(--zesta-grey-700);
}
.post-body ul,
.post-body ol {
	padding-left: 24px;
	margin-bottom: 16px;
}
.post-body li {
	margin-bottom: 6px;
}
.post-body a {
	color: var(--zesta-red);
	text-decoration: underline;
}
.post-body a:hover {
	color: var(--zesta-red-hover);
}
.post-body table {
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
.post-body table th,
.post-body table td {
	padding: 10px 16px;
	border: 1px solid var(--zesta-grey-200);
	font-size: 14px;
}
.post-body table th {
	background: var(--zesta-grey-100);
	font-weight: 700;
}
.post-body pre,
.post-body code {
	background: var(--zesta-grey-100);
	border-radius: 6px;
	font-size: 14px;
}
.post-body pre {
	padding: 16px 20px;
	overflow-x: auto;
	margin: 20px 0;
}
.post-body code {
	padding: 2px 6px;
}

/* Tags */
.post-tags {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 8px;
	margin: 32px 0;
	padding: 20px 0;
	border-top: 1px solid var(--zesta-grey-200);
	border-bottom: 1px solid var(--zesta-grey-200);
}
.post-tags__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--zesta-grey-900);
}
.post-tag {
	display: inline-block;
	padding: 4px 12px;
	background: var(--zesta-grey-100);
	border-radius: 20px;
	font-size: 12px;
	font-weight: 600;
	color: var(--zesta-grey-700);
	transition: var(--transition);
	border: 1px solid var(--zesta-grey-200);
}
.post-tag:hover {
	background: var(--zesta-red);
	color: white;
	border-color: var(--zesta-red);
}

/* Share */
.post-share {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 32px;
}
.post-share__label {
	font-size: 13px;
	font-weight: 700;
	color: var(--zesta-grey-900);
}
.post-share__btn {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 14px;
	transition: var(--transition);
}
.post-share__btn:hover {
	transform: translateY(-3px);
}
.post-share__btn--fb {
	background: #1877f2;
}
.post-share__btn--tw {
	background: #1da1f2;
}
.post-share__btn--li {
	background: #0a66c2;
}
.post-share__btn--email {
	background: var(--zesta-grey-700);
}

/* Author box */
.post-author-box {
	display: flex;
	gap: 20px;
	padding: 24px;
	background: var(--zesta-grey-50);
	border-radius: 12px;
	border: 1px solid var(--zesta-grey-200);
	margin-bottom: 32px;
}
.post-author-box__avatar img {
	width: 80px;
	height: 80px;
	border-radius: 50%;
}
.post-author-box__label {
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: 1px;
	color: var(--zesta-grey-500);
}
.post-author-box__name {
	font-family: var(--font-heading);
	font-size: 16px;
	font-weight: 700;
	margin: 4px 0 8px;
}
.post-author-box__bio {
	font-size: 13px;
	color: var(--zesta-grey-700);
	line-height: 1.6;
}

/* Post navigation */
.post-navigation {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-bottom: 32px;
}
.post-nav-item {
	padding: 20px;
	background: var(--zesta-grey-50);
	border-radius: 10px;
	border: 1px solid var(--zesta-grey-200);
	transition: var(--transition);
}
.post-nav-item:hover {
	border-color: var(--zesta-red);
}
.post-nav-item--next {
	text-align: right;
}
.post-nav-item__label {
	font-size: 12px;
	color: var(--zesta-grey-500);
	text-transform: uppercase;
	letter-spacing: 0.5px;
	display: block;
	margin-bottom: 6px;
}
.post-nav-item__title {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: var(--zesta-black);
	line-height: 1.4;
}
.post-nav-item__title:hover {
	color: var(--zesta-red);
}

/* Comments wrapper in single post */
.post-comments {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

/* Blog sidebar */
.post-sidebar {
	position: sticky;
	top: 148px;
}
.post-sidebar__block {
	background: var(--zesta-grey-50);
	border-radius: 12px;
	padding: 20px;
	border: 1px solid var(--zesta-grey-200);
	margin-bottom: 20px;
}
.post-sidebar__block h4 {
	font-family: var(--font-heading);
	font-size: 14px;
	font-weight: 700;
	color: var(--zesta-black);
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--zesta-grey-200);
	text-transform: uppercase;
	letter-spacing: 0.3px;
}
.post-sidebar__search {
	display: flex;
	gap: 6px;
}
.post-sidebar__search input {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid var(--zesta-grey-200);
	border-radius: 6px;
	font-size: 14px;
	font-family: var(--font-body);
}
.post-sidebar__search button {
	width: 40px;
	background: var(--zesta-red);
	border: none;
	border-radius: 6px;
	color: white;
	cursor: pointer;
}
.post-sidebar__search button:hover {
	background: var(--zesta-red-hover);
}
.post-sidebar__block ul {
	padding: 0;
}
.post-sidebar__block li {
	list-style: none;
}
.post-sidebar__block li a {
	display: block;
	padding: 6px 0;
	font-size: 13px;
	color: var(--zesta-grey-700);
	border-bottom: 1px solid var(--zesta-grey-100);
}
.post-sidebar__block li a:hover {
	color: var(--zesta-red);
}
.post-sidebar__recent {
	display: flex;
	gap: 12px;
	padding: 10px 0;
	border-bottom: 1px solid var(--zesta-grey-100);
	align-items: center;
}
.post-sidebar__recent:last-child {
	border-bottom: none;
}
.post-sidebar__recent img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}
.post-sidebar__recent-title {
	font-size: 13px;
	font-weight: 600;
	color: var(--zesta-grey-900);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	line-height: 1.3;
}
.post-sidebar__recent-date {
	font-size: 11px;
	color: var(--zesta-grey-500);
	display: block;
	margin-top: 4px;
}
.post-sidebar__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

/* Related posts section */
.related-posts {
	padding: 48px 0;
	background: var(--zesta-grey-50);
	border-top: 1px solid var(--zesta-grey-200);
}

/* ═══════════════════════════════════════════════════════════════════════
   INFORMATION PAGE
   ═══════════════════════════════════════════════════════════════════════ */
.page-main {
	padding: 40px 0 60px;
}
.page-header {
	margin-bottom: 32px;
}
.page-header__title {
	font-family: var(--font-heading);
	font-size: 34px;
	font-weight: 800;
	color: var(--zesta-black);
	margin-bottom: 8px;
}
.page-header__subtitle {
	font-size: 16px;
	color: var(--zesta-grey-500);
	line-height: 1.6;
}
.page-featured-image {
	margin-bottom: 32px;
	border-radius: 12px;
	overflow: hidden;
}
.page-featured-image img {
	width: 100%;
	display: block;
}
.page-body {
	font-size: 16px;
	line-height: 1.85;
	color: var(--zesta-grey-900);
	max-width: 1100px;
}
.page-body h2 {
	font-family: var(--font-heading);
	font-size: 24px;
	font-weight: 800;
	margin: 36px 0 16px;
	color: var(--zesta-black);
}
.page-body h3 {
	font-family: var(--font-heading);
	font-size: 20px;
	font-weight: 700;
	margin: 28px 0 12px;
	color: var(--zesta-black);
}
.page-body p {
	margin-bottom: 16px;
}
.page-body a {
	color: var(--zesta-red);
}
.page-body a:hover {
	color: var(--zesta-red-hover);
	text-decoration: underline;
}
.page-body img {
	border-radius: 8px;
	margin: 20px 0;
}
.page-body blockquote {
	border-left: 4px solid var(--zesta-red);
	background: var(--zesta-grey-50);
	padding: 20px 24px;
	margin: 24px 0;
	border-radius: 0 8px 8px 0;
	font-style: italic;
}
.page-body ul,
.page-body ol {
	padding-left: 24px;
	margin-bottom: 16px;
}
.page-body li {
	margin-bottom: 6px;
}
.page-body table {
	border-collapse: collapse;
	width: 100%;
	margin: 20px 0;
}
.page-body table th,
.page-body table td {
	padding: 10px 16px;
	border: 1px solid var(--zesta-grey-200);
	font-size: 14px;
}
.page-body table th {
	background: var(--zesta-grey-100);
	font-weight: 700;
}
.page-children {
	margin-top: 48px;
	padding-top: 32px;
	border-top: 1px solid var(--zesta-grey-200);
}
.page-children__title {
	font-family: var(--font-heading);
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 16px;
}
.page-children__list {
	padding: 0;
}
.page-children__list li {
	list-style: none;
}
.page-children__list a {
	display: block;
	padding: 10px 16px;
	font-size: 14px;
	color: var(--zesta-grey-700);
	border-bottom: 1px solid var(--zesta-grey-100);
	border-radius: 6px;
	transition: var(--transition);
}
.page-children__list a:hover {
	color: var(--zesta-red);
	background: var(--zesta-grey-50);
}

/* ═══════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.products-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.category-cards__grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-archive-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.blog-featured {
		grid-template-columns: 1fr 1fr;
		gap: 28px;
		padding: 24px;
	}
	.blog-featured__image {
		height: 260px;
	}
	.blog-featured__title {
		font-size: 20px;
	}
	.footer-links .container {
		grid-template-columns: repeat(3, 1fr);
	}
	.sp-layout {
		grid-template-columns: 1fr;
		gap: 32px;
	}
	.sp-details__trust {
		grid-template-columns: 1fr 1fr;
	}
	.products-grid--related {
		grid-template-columns: repeat(3, 1fr);
	}
	.products-grid--archive {
		grid-template-columns: repeat(3, 1fr);
	}
	.archive-layout {
		grid-template-columns: 220px 1fr;
		gap: 24px;
	}
	.sp-sticky-bar__name {
		max-width: 200px;
	}
	.post-layout {
		grid-template-columns: 1fr 280px;
		gap: 32px;
	}
}
@media (max-width: 768px) {
	.top-bar .container {
		flex-direction: column;
		gap: 4px;
	}
	.header-main .container {
		height: 64px;
	}
	.header-search {
		display: none;
	}
	.nav-bar {
		overflow-x: auto;
	}
	.hero-slider,
	.hero-slide {
		height: 340px;
	}
	.hero-slide__title {
		font-size: 28px;
	}
	.hero-slide__content {
		padding-left: 20px;
	}
	.hero-slide__image {
		display: none;
	}
	.products-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.products-header__link {
		display: none;
	}
	.products-grid .product-card:nth-child(n+5) {
		display: none;
	}
	.category-cards__grid {
		grid-template-columns: 1fr 1fr;
	}
	.cat-card {
		height: 180px;
	}
	.blog-grid {
		grid-template-columns: 1fr;
	}
	.blog-archive-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.blog-featured {
		grid-template-columns: 1fr;
		padding: 0;
		gap: 0;
		overflow: hidden;
	}
	.blog-featured__image {
		height: 220px;
		border-radius: 0;
	}
	.blog-featured__image-link {
		border-radius: 0;
	}
	.blog-featured__body {
		padding: 24px;
	}
	.blog-featured__title {
		font-size: 18px;
	}
	.archive-hero__title {
		font-size: 28px;
	}
	.zesta-comments__form-wrap {
		padding: 20px;
	}
	.zesta-comments__fields-row {
		grid-template-columns: 1fr;
	}
	.zesta-comment__inner {
		padding: 16px;
	}
	.zesta-comment .children {
		padding-left: 20px;
	}
	.blog-carousel__nav {
		display: none;
	}
	.trust-badges .container {
		grid-template-columns: 1fr;
	}
	.partner-box {
		grid-template-columns: 1fr;
	}
	.footer-top .container {
		grid-template-columns: 1fr;
	}
	.footer-links .container {
		grid-template-columns: repeat(2, 1fr);
	}
	.cart-drawer {
		width: 100%;
		right: -100%;
	}
	/* Single product */
	.sp-layout {
		grid-template-columns: 1fr;
		gap: 24px;
	}
	.sp-details__title {
		font-size: 22px;
	}
	.sp-details__price .price {
		font-size: 28px;
	}
	.sp-details__trust {
		grid-template-columns: 1fr;
	}
	.sp-gallery__thumbs {
		gap: 12px;
	}
	.sp-thumb {
		width: 40px;
		height: 40px;
	}
	.sp-tabs {
		top: 64px;
	}
	.sp-tabs__link {
		padding: 12px 16px;
		font-size: 13px;
	}
	.products-grid--related {
		grid-template-columns: repeat(2, 1fr);
	}
	.sp-sticky-bar__name {
		max-width: 140px;
		font-size: 13px;
	}
	.sp-sticky-bar__price {
		font-size: 14px;
	}
	.sp-sticky-bar__btn {
		padding: 10px 16px;
		font-size: 12px;
	}
	.sp-details__cart .cart {
		flex-wrap: wrap;
	}
	.sp-details__cart .single_add_to_cart_button {
		width: 100%;
		padding: 14px 20px;
		font-size: 14px;
	}
	/* Archive */
	.archive-layout {
		grid-template-columns: 1fr;
	}
	.archive-toolbar__filter {
		display: flex;
	}
	.archive-sidebar {
		position: fixed;
		top: 0;
		left: 0;
		bottom: 0;
		width: 300px;
		z-index: 100;
		background: var(--zesta-white);
		overflow-y: auto;
		padding: 48px 20px 20px;
		transform: translateX(-100%);
		transition: transform 0.3s ease;
		box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
	}
	.archive-sidebar.open {
		transform: translateX(0);
		z-index: 99999;
	}
	.archive-sidebar__close {
		display: flex;
	}
	.archive-sidebar__overlay {
		position: fixed;
		inset: 0;
		background: rgba(0, 0, 0, 0.5);
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition);
	}
	.archive-sidebar__overlay.active {
		opacity: 1;
		visibility: visible;
	}
	.products-grid--archive {
		grid-template-columns: repeat(2, 1fr);
	}
	.archive-subcats {
		overflow-x: auto;
		flex-wrap: nowrap;
	}
	/* Blog post */
	.post-layout {
		grid-template-columns: 1fr;
	}
	.post-sidebar {
		position: static;
	}
	.post-title {
		font-size: 26px;
	}
	.post-navigation {
		grid-template-columns: 1fr;
	}
	.post-author-box {
		flex-direction: column;
		text-align: center;
	}
	/* Info page */
	.page-header__title {
		font-size: 26px;
	}
	
	.header-actions {
    gap: 8px;
    }
    .woocommerce-result-count
    {
        display:none;
    }
    
    .archive-toolbar__sort select {
   
    padding: 8px 2px;

    }
    
    .product-card__badge--shipping {
    font-size: 11px;
    }
    
    .product-card__badge {
    font-size: 11px;
    }
    
    .product-card__badge--shipping {
    margin-top: 110px;
}

    }
@media (max-width: 540px) {
	.blog-archive-grid {
		grid-template-columns: 1fr;
	}
	
	.brands-strip {
	    display:none;
}
	
	/* ===== Footer: logo on top, links centered below ===== */
.footer-main .footer-links .container {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 32px 48px;
  text-align: center;
}

/* Logo gets its own full-width row, centered */
.footer-main .footer-brand {
  flex: 0 0 100%;
  display: flex !important;
  justify-content: center;
  margin-bottom: 8px;
}

/* Link columns sit in a centered row beneath the logo */
.footer-main .footer-col,
.footer-main .footer-contact {
  flex: 0 1 200px;   /* base width per column; wraps on narrow screens */
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Center the contact rows (icon + text) too */
.footer-main .footer-contact > * {
  justify-content: center;
}

.header-action__auth-links {
    display: none;
}

.header-action span {
    display:none;
    
}

.header-action {
 padding: 4px;   
}

.cat-card__overlay {
    background: none;
}

.cat-card__name {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 400;
    color: var(--zesta-red);
    text-shadow: 1px 1px 1px #00000;
}

    .cat-card__name {
        font-family: var(--font-heading);
        font-size: 16px;
        font-weight: 600;
        color: var(--zesta-red);
        text-shadow: 1px 1px 2px #fbfbfb;
    }

}

/* ═══════════════════════════════════════════════════════════════════════
   MAX MEGA MENU OVERRIDES
   ═══════════════════════════════════════════════════════════════════════ */

/* Nav bar with MMM: remove our manual nav styling, let MMM control layout */
.nav-bar #mega-menu-wrap-mega_menu {
	width: 100%;
}
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu {
	display: flex;
	align-items: stretch;
}

/* "Κατηγορίες" button — first item, red bg with white text */
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item:first-child > a.mega-menu-link,
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item:first-child:hover > a.mega-menu-link,
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item:first-child > a.mega-menu-link:focus {
	background: var(--zesta-red) !important;
	color: #ffffff !important;
	padding: 0 24px !important;
}
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item:first-child:hover > a.mega-menu-link {
	background: var(--zesta-red-hover) !important;
	color: #ffffff !important;
}

/* "Προσφορές" / highlight button — add CSS class 'zesta-highlight' to menu item */
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item.zesta-highlight > a.mega-menu-link {
	color: var(--zesta-red) !important;
	font-weight: 700 !important;
}

/* Top-level items — match static .nav-item > a */
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item > a.mega-menu-link {
	font-family: var(--font-heading) !important;
	font-size: 14px !important;
	font-weight: 600 !important;
	height: 48px !important;
	line-height: 48px !important;
	padding: 0 28px !important;
	color: var(--zesta-grey-900);
	white-space: nowrap;
	display: flex !important;
	align-items: center !important;
	gap: 6px !important;
	transition: var(--transition-fast) !important
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item:hover > a.mega-menu-link {
	color: var(--zesta-red) !important;
}

/* Chevron arrows — match static .nav-item > a i.fa-chevron-down */
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item > a.mega-menu-link > span.mega-indicator {
	font-size: 16px !important;
	color: var(--zesta-grey-500) !important;
}
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item:first-child > a.mega-menu-link > span.mega-indicator {
	color: #ffffff !important;
}

/* Mega panel (dropdown) — match static .mega-dropdown */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup {
	background: var(--zesta-white) !important;
	border-top: 3px solid var(--zesta-red) !important;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
	padding: 32px !important;
	border-radius: 0 !important;
	z-index: 999 !important;
}
/* Let the plugin handle its own column layout — only clean up spacing */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup > .mega-menu-row {
	padding: 0 !important;
	margin: 0 !important;
}
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup > .mega-menu-row > .mega-menu-column {
	padding: 0 16px !important;
	margin: 0 !important;
}

/* Panel headings — match static .mega-col h4 */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .widget_nav_menu .widgettitle,
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup h4.mega-block-title {
	font-family: var(--font-heading) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: var(--zesta-red) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	border-bottom: 2px solid var(--zesta-grey-100) !important;
	padding-bottom: 8px !important;
	margin-bottom: 12px !important;
}



/* Sub-menu items in panel — match static .mega-col a */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .mega-menu-column a,
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .widget_nav_menu a {
	display: block !important;
	font-size: 13px !important;
	color: var(--zesta-grey-700);
	padding: 5px 0 !important;
	transition: var(--transition-fast) !important;
	background: none !important;
}
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .mega-menu-column a:hover,
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .widget_nav_menu a:hover {
	color: var(--zesta-red) !important;
	padding-left: 6px !important;
	background: none !important;
}

/* Sub-menu headings inside columns — match static .mega-col h4 */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .mega-menu-column > .mega-sub-menu > li.mega-menu-item > a.mega-menu-link {
	font-family: var(--font-heading) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: var(--zesta-red) !important;
	text-transform: uppercase !important;
	letter-spacing: 0.5px !important;
	border-bottom: 2px solid var(--zesta-grey-100) !important;
	padding-bottom: 8px !important;
	margin-bottom: 12px !important;
}

/* Sub-menu list reset */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup ul.mega-sub-menu {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup ul.mega-sub-menu li {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .widget_nav_menu ul {
	list-style: none !important;
	padding: 0 !important;
	margin: 0 !important;
}
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .widget_nav_menu ul li {
	margin: 0 !important;
	padding: 0 !important;
}

/* Remove any default backgrounds / borders on items */
.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item {
	background: none !important;
	border: none !important;
	margin: 0 !important;
}
/* Reset mega-menu-line items inside dropdown */
.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup li.mega-menu-line {
	background: none !important;
	border: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

/* Mobile toggle */
@media (max-width: 768px) {
	.nav-bar #mega-menu-wrap-mega_menu .mega-menu-toggle {
		background: var(--zesta-white) !important;
		height: 48px;
	}
	.nav-bar #mega-menu-wrap-mega_menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner,
	.nav-bar #mega-menu-wrap-mega_menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::before,
	.nav-bar #mega-menu-wrap-mega_menu .mega-menu-toggle .mega-toggle-block-0 .mega-toggle-animated-inner::after {
		background-color: var(--zesta-black) !important;
	}
	.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item > a.mega-menu-link,
	.nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .mega-menu-column a,
    .nav-bar #mega-menu-wrap-mega_menu .mega-menu-popup .widget_nav_menu a {
		padding: 0 16px !important;
	    color: var(--zesta-grey-100) !important;

	}
	
	 #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item.mega-current-menu-item > a.mega-menu-link, 
    #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item.mega-current-menu-ancestor > a.mega-menu-link, 
    #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item.mega-current-page-ancestor > a.mega-menu-link {
        background-color: #000000 !important;
    }
}

/* ===== Brands grid ("Προμηθευτές") ===== */
.zesta-brands{
    display:grid;
    grid-template-columns:repeat(var(--zesta-brands-cols,4),1fr);
    gap:20px;
    margin:24px 0;
}
@media (max-width:1024px){ .zesta-brands{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:768px) { .zesta-brands{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:420px) { .zesta-brands{ grid-template-columns:1fr; } }

.zesta-brand-card{
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:120px;
    padding:20px;
    border:1px solid #e7e7e7;
    border-radius:12px;
    background:#fff;
    text-decoration:none;
    transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.zesta-brand-card:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    border-color:#d0d0d0;
}
.zesta-brand-logo{
    max-width:100%;
    max-height:64px;
    width:auto;
    height:auto;
    object-fit:contain;
    filter:grayscale(100%);
    opacity:.85;
    transition:filter .18s ease, opacity .18s ease;
}
.zesta-brand-card:hover .zesta-brand-logo{
    filter:grayscale(0);
    opacity:1;
}
.zesta-brand-name{
    font-size:18px;
    font-weight:600;
    color:#333;
    text-align:center;
}
.zesta-brands-empty{
    text-align:center;
    color:#777;
    padding:32px 0;
}
.yith-wcwl-add-to-wishlist-button__label
{
    display:none;
}

@media (max-width:768px) {

.nav-bar #mega-menu-wrap-mega_menu #mega-menu-mega_menu > li.mega-menu-item > a.mega-menu-link

{
    color: var(--zesta-grey-100) !important
}
}