/* Generated Zydak CSS bundle: custom styles first, theme overrides second. */
/* ==========================================================================
   ZYDAK.SHOP — Smart Essentials for Family, Home & Pets
   Custom CSS for Blocksy Theme
   Version: 2.0.0
   Last Updated: 2026-06-23
   ========================================================================== */
/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   -------------------------------------------------------------------------- */
:root {
  /* ── Color Palette ── */
  --clr-primary:       #2D6A4F;
  --clr-primary-hover: #245840;
  --clr-secondary:     #40916C;
  --clr-secondary-hover:#358a5f;
  --clr-accent:        #E76F51;
  --clr-accent-hover:  #D4593D;
  --clr-accent-light:  rgba(231, 111, 81, 0.12);
  --clr-dark:          #1B2D2A;
  --clr-light-bg:      #F8F9F0;
  --clr-surface:       #EEF2E6;
  --clr-text:          #2B2B2B;
  --clr-text-light:    #6B7280;
  --clr-white:         #FFFFFF;
  --clr-success:       #059669;
  --clr-warning:       #F59E0B;
  --clr-border:        #E5E7EB;
  --clr-overlay:       rgba(27, 45, 42, 0.55);

  /* ── Typography ── */
  --ff-heading:  'Outfit', sans-serif;
  --ff-body:     'Inter', sans-serif;

  --fs-xs:   0.75rem;    /* 12px */
  --fs-sm:   0.875rem;   /* 14px */
  --fs-base: 1rem;       /* 16px */
  --fs-md:   1.125rem;   /* 18px */
  --fs-lg:   1.25rem;    /* 20px */
  --fs-xl:   1.5rem;     /* 24px */
  --fs-2xl:  2rem;       /* 32px */
  --fs-3xl:  2.5rem;     /* 40px */
  --fs-4xl:  3rem;       /* 48px */
  --fs-5xl:  3.5rem;     /* 56px */

  --fw-light:    300;
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-extrabold:800;

  --lh-tight:  1.2;
  --lh-snug:   1.35;
  --lh-normal: 1.6;
  --lh-relaxed:1.75;

  --ls-tight:  -0.02em;
  --ls-normal:  0;
  --ls-wide:    0.02em;
  --ls-wider:   0.06em;

  /* ── Spacing Scale ── */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* ── Borders & Radius ── */
  --radius-sm:   0.375rem;
  --radius-md:   0.625rem;
  --radius-lg:   1rem;
  --radius-xl:   1.5rem;
  --radius-full: 9999px;
  --border-width: 1px;

  /* ── Shadows ── */
  --shadow-xs:  0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm:  0 2px 6px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 14px rgba(0,0,0,0.08);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.10);
  --shadow-xl:  0 20px 50px rgba(0,0,0,0.14);
  --shadow-glow:0 0 20px rgba(45,106,79,0.15);
  --shadow-accent-glow: 0 0 24px rgba(231,111,81,0.25);

  /* ── Transitions ── */
  --ease-out:   cubic-bezier(0.33, 1, 0.68, 1);
  --ease-in-out:cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration-fast:   150ms;
  --duration-normal: 300ms;
  --duration-slow:   500ms;

  /* ── Z-Index Scale ── */
  --z-base:     1;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-overlay:  300;
  --z-modal:    400;
  --z-toast:    500;

  /* ── Glassmorphism ── */
  --glass-bg:   rgba(255, 255, 255, 0.65);
  --glass-blur: 14px;
  --glass-border:rgba(255, 255, 255, 0.30);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESET & BASE STYLES
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background-color: var(--clr-light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* ── Headings ── */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--clr-dark);
  margin-top: 0;
}

h1, .has-huge-font-size   { font-size: var(--fs-4xl); font-weight: var(--fw-extrabold); }
h2, .has-large-font-size  { font-size: var(--fs-3xl); }
h3, .has-medium-font-size { font-size: var(--fs-2xl); }
h4 { font-size: var(--fs-xl); }
h5 { font-size: var(--fs-lg); }
h6 { font-size: var(--fs-md); }

p {
  margin-top: 0;
  margin-bottom: var(--sp-4);
  color: var(--clr-text);
  line-height: var(--lh-normal);
}

/* ── Links ── */
a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}
a:hover {
  color: var(--clr-accent);
}

/* ── Selection ── */
::selection {
  background: var(--clr-primary);
  color: var(--clr-white);
}

/* ── Images ── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   3. BUTTONS — GLOBAL
   -------------------------------------------------------------------------- */
.wp-block-button__link,
.wp-element-button,
button,
input[type="submit"],
.zydak-btn {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  transition: all var(--duration-normal) var(--ease-out);
  text-transform: uppercase;
  line-height: 1;
  position: relative;
  overflow: hidden;
}

/* Primary CTA */
.wp-block-button__link,
.wp-element-button,
.zydak-btn-primary {
  background: var(--clr-accent);
  color: var(--clr-white) !important;
  box-shadow: 0 4px 14px rgba(231, 111, 81, 0.30);
}
.wp-block-button__link:hover,
.wp-element-button:hover,
.zydak-btn-primary:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-glow);
}
.wp-block-button__link:active,
.wp-element-button:active {
  transform: translateY(0);
}

/* Secondary Button */
.is-style-outline .wp-block-button__link,
.zydak-btn-secondary {
  background: transparent;
  color: var(--clr-primary) !important;
  border: 2px solid var(--clr-primary);
  box-shadow: none;
}
.is-style-outline .wp-block-button__link:hover,
.zydak-btn-secondary:hover {
  background: var(--clr-primary);
  color: var(--clr-white) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* Button shimmer effect */
.wp-block-button__link::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left var(--duration-slow) var(--ease-out);
}
.wp-block-button__link:hover::after {
  left: 100%;
}

/* --------------------------------------------------------------------------
   4. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */

/* Blocksy header container */
header[data-id="type-1"],
.ct-header {
  background: var(--clr-white) !important;
  border-bottom: 1px solid var(--clr-border);
  transition: all var(--duration-normal) var(--ease-out);
}

/* Sticky header shrink & shadow */
.ct-header[data-sticky="yes"],
header[data-id="type-1"].ct-sticky {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
}

/* Logo sizing */
.ct-header .site-logo-container img {
  max-height: 48px;
  width: auto;
  transition: max-height var(--duration-normal) var(--ease-out);
}

/* Navigation Links */
.ct-header nav[id="header-menu"] > ul > li > a,
[data-id="menu"] > ul > li > a {
  font-family: var(--ff-heading);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  color: var(--clr-dark) !important;
  padding: var(--sp-2) var(--sp-4);
  position: relative;
  transition: color var(--duration-fast) var(--ease-out);
}

/* Nav link underline animation */
[data-id="menu"] > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
  transition: all var(--duration-normal) var(--ease-out);
  transform: translateX(-50%);
}
[data-id="menu"] > ul > li > a:hover::after,
[data-id="menu"] > ul > li.current-menu-item > a::after {
  width: 70%;
}
[data-id="menu"] > ul > li > a:hover {
  color: var(--clr-primary) !important;
}
[data-id="menu"] > ul > li.current-menu-item > a {
  color: var(--clr-primary) !important;
  font-weight: var(--fw-semibold);
}

/* Dropdown menus */
.ct-header .sub-menu,
[data-id="menu"] .sub-menu {
  background: var(--clr-white);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: var(--sp-2) 0;
  min-width: 220px;
}
[data-id="menu"] .sub-menu li a {
  font-size: var(--fs-sm);
  padding: var(--sp-2) var(--sp-5);
  transition: all var(--duration-fast) var(--ease-out);
}
[data-id="menu"] .sub-menu li a:hover {
  background: var(--clr-surface);
  color: var(--clr-primary) !important;
  padding-left: var(--sp-6);
}

/* Cart icon badge */
.ct-header .ct-cart-count,
.ct-header-cart .ct-count {
  background: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  min-width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
}

/* Search form in header */
.ct-header .ct-search-form input {
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-border);
  padding: var(--sp-2) var(--sp-5);
  font-family: var(--ff-body);
  transition: border-color var(--duration-fast) var(--ease-out);
}
.ct-header .ct-search-form input:focus {
  border-color: var(--clr-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

/* Mobile menu */
#offcanvas {
  background: var(--clr-white) !important;
}
#offcanvas .ct-mobile-menu a {
  font-family: var(--ff-heading);
  font-weight: var(--fw-medium);
  color: var(--clr-dark) !important;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--clr-border);
}
#offcanvas .ct-mobile-menu a:hover {
  color: var(--clr-primary) !important;
}

/* Mobile menu hamburger */
.ct-header .ct-hamburger .ct-hamburger-icon {
  color: var(--clr-dark);
}

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.zydak-hero,
.hero-section {
  position: relative;
  width: 100%;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Hero gradient overlay */
.zydak-hero::before,
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(27, 45, 42, 0.72) 0%,
    rgba(45, 106, 79, 0.50) 50%,
    rgba(27, 45, 42, 0.68) 100%
  );
  z-index: 1;
}

.zydak-hero .hero-content,
.hero-section .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: var(--sp-8);
}

.zydak-hero h1,
.hero-section h1 {
  font-size: var(--fs-5xl);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  text-shadow: 0 2px 20px rgba(0,0,0,0.25);
  line-height: var(--lh-tight);
}

.zydak-hero p,
.hero-section p {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.90);
  margin-bottom: var(--sp-8);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA button with pulse */
.zydak-hero .wp-block-button__link,
.hero-section .hero-cta {
  font-size: var(--fs-base);
  padding: 1rem 2.5rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(231, 111, 81, 0.30);
  }
  50% {
    box-shadow: 0 4px 30px rgba(231, 111, 81, 0.55), 0 0 60px rgba(231, 111, 81, 0.15);
  }
}

/* Subtle hero background animation */
.zydak-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(64,145,108,0.15) 0%, transparent 60%);
  z-index: 1;
  animation: hero-shimmer 8s ease-in-out infinite alternate;
}

@keyframes hero-shimmer {
  0%   { opacity: 0.4; transform: scale(1); }
  100% { opacity: 0.8; transform: scale(1.05); }
}

/* --------------------------------------------------------------------------
   6. SECTION TITLES & LAYOUT
   -------------------------------------------------------------------------- */
.zydak-section {
  padding: var(--sp-16) 0;
}

.zydak-section-alt {
  padding: var(--sp-16) 0;
  background: var(--clr-surface);
}

.zydak-section-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  text-align: center;
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
  position: relative;
}

.zydak-section-subtitle {
  text-align: center;
  color: var(--clr-text-light);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Decorative line under section title */
.zydak-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: var(--radius-full);
  margin: var(--sp-4) auto 0;
}

/* --------------------------------------------------------------------------
   7. CATEGORY GRID (5-card responsive)
   -------------------------------------------------------------------------- */
.zydak-categories {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-5);
  padding: 0 var(--sp-4);
}

.zydak-category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all var(--duration-normal) var(--ease-out);
}

.zydak-category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.zydak-category-card:hover img {
  transform: scale(1.08);
}

.zydak-category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27,45,42,0.75) 0%, transparent 55%);
  transition: background var(--duration-normal) var(--ease-out);
}

.zydak-category-card:hover::after {
  background: linear-gradient(to top, rgba(45,106,79,0.80) 0%, rgba(45,106,79,0.10) 65%);
}

.zydak-category-card .category-label {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: var(--sp-5);
  z-index: 2;
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
  transition: transform var(--duration-normal) var(--ease-out);
}

.zydak-category-card:hover .category-label {
  transform: translateY(-4px);
}

.zydak-category-card .category-count {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  font-family: var(--ff-body);
  opacity: 0.85;
  margin-top: var(--sp-1);
}

.zydak-category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

/* --------------------------------------------------------------------------
   8. PRODUCT CARDS — WOOCOMMERCE
   -------------------------------------------------------------------------- */

/* Product grid container */
.woocommerce ul.products,
.wc-block-grid__products {
  display: grid !important;
  gap: var(--sp-6);
}

.woocommerce ul.products[class*="columns-4"] {
  grid-template-columns: repeat(4, 1fr);
}
.woocommerce ul.products[class*="columns-3"] {
  grid-template-columns: repeat(3, 1fr);
}

/* Individual product card */
.woocommerce ul.products li.product,
.wc-block-grid__product {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border);
  transition: all var(--duration-normal) var(--ease-out);
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
  width: 100% !important;
  position: relative;
}

.woocommerce ul.products li.product:hover,
.wc-block-grid__product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 79, 0.20);
}

/* Product image container */
.woocommerce ul.products li.product a img,
.wc-block-grid__product .wc-block-grid__product-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.05);
}

/* Product image wrapper to clip overflow */
.woocommerce ul.products li.product > a:first-child {
  display: block;
  overflow: hidden;
  position: relative;
}

/* Quick view overlay on hover */
.woocommerce ul.products li.product > a:first-child::after {
  content: 'Quick View';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(27, 45, 42, 0.85);
  color: var(--clr-white);
  text-align: center;
  padding: var(--sp-2);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform var(--duration-normal) var(--ease-out);
}
.woocommerce ul.products li.product:hover > a:first-child::after {
  transform: translateY(0);
}

/* Product title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.wc-block-grid__product .wc-block-grid__product-title {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--clr-dark);
  padding: var(--sp-4) var(--sp-4) var(--sp-1);
  margin: 0;
  line-height: var(--lh-snug);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--duration-fast) var(--ease-out);
}
.woocommerce ul.products li.product:hover .woocommerce-loop-product__title {
  color: var(--clr-primary);
}

/* Product price */
.woocommerce ul.products li.product .price,
.wc-block-grid__product .wc-block-grid__product-price {
  padding: var(--sp-1) var(--sp-4) var(--sp-2);
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--clr-primary);
}

.woocommerce ul.products li.product .price del {
  color: var(--clr-text-light);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  opacity: 0.6;
  margin-right: var(--sp-2);
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
  color: var(--clr-accent);
  font-weight: var(--fw-bold);
}

/* Star ratings */
.woocommerce ul.products li.product .star-rating,
.woocommerce .star-rating {
  color: var(--clr-warning);
  font-size: var(--fs-sm);
  margin: 0 var(--sp-4);
}

.woocommerce .star-rating::before {
  color: var(--clr-border);
}

/* Add to Cart button in product grid */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.wc-block-grid__product .wp-block-button__link {
  background: var(--clr-primary) !important;
  color: var(--clr-white) !important;
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  border: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  margin: var(--sp-3) 0 0 !important;
  width: 100%;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-out);
}

.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  background: var(--clr-accent) !important;
  transform: none;
  box-shadow: none;
}

/* Sale badge */
.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
  background: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius-sm);
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 3;
  min-width: auto;
  min-height: auto;
  line-height: 1.4;
  box-shadow: 0 2px 8px rgba(231, 111, 81, 0.35);
}

/* Out of stock overlay */
.woocommerce ul.products li.product.outofstock > a:first-child::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.60);
  z-index: 2;
}
.woocommerce ul.products li.product.outofstock .button {
  background: var(--clr-text-light) !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   9. TRUST BADGES SECTION
   -------------------------------------------------------------------------- */
.zydak-trust-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  padding: var(--sp-12) var(--sp-4);
  max-width: 1100px;
  margin: 0 auto;
}

.zydak-trust-badge {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--clr-border);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}

.zydak-trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
  transform: scaleX(0);
  transition: transform var(--duration-normal) var(--ease-out);
}

.zydak-trust-badge:hover::before {
  transform: scaleX(1);
}

.zydak-trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.zydak-trust-badge .badge-icon {
  font-size: 2.5rem;
  margin-bottom: var(--sp-4);
  display: block;
  transition: transform var(--duration-normal) var(--ease-spring);
}

.zydak-trust-badge:hover .badge-icon {
  transform: scale(1.15);
}

.zydak-trust-badge h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}

.zydak-trust-badge p {
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
  margin: 0;
  line-height: var(--lh-normal);
}

/* --------------------------------------------------------------------------
   10. PROMOTIONAL BANNER
   -------------------------------------------------------------------------- */
.zydak-promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-dark) 100%);
  box-shadow: var(--shadow-lg);
}

.zydak-promo-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--sp-12) var(--sp-10);
  color: var(--clr-white);
}

.zydak-promo-content h2 {
  color: var(--clr-white);
  font-size: var(--fs-3xl);
  margin-bottom: var(--sp-4);
}

.zydak-promo-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-6);
}

.zydak-promo-image {
  overflow: hidden;
}

.zydak-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.zydak-promo-banner:hover .zydak-promo-image img {
  transform: scale(1.04);
}

/* --------------------------------------------------------------------------
   11. NEWSLETTER SECTION
   -------------------------------------------------------------------------- */
.zydak-newsletter {
  background: linear-gradient(135deg, var(--clr-surface) 0%, var(--clr-light-bg) 100%);
  padding: var(--sp-16) var(--sp-4);
  text-align: center;
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.zydak-newsletter h2 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-2);
}

.zydak-newsletter p {
  color: var(--clr-text-light);
  margin-bottom: var(--sp-8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.zydak-newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  gap: var(--sp-3);
}

.zydak-newsletter-form input[type="email"] {
  flex: 1;
  padding: var(--sp-3) var(--sp-5);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-full);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  background: var(--clr-white);
  transition: all var(--duration-fast) var(--ease-out);
  outline: none;
}

.zydak-newsletter-form input[type="email"]:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.10);
}

.zydak-newsletter-form input[type="email"]::placeholder {
  color: var(--clr-text-light);
}

.zydak-newsletter-form button {
  padding: var(--sp-3) var(--sp-8);
  background: var(--clr-accent);
  color: var(--clr-white);
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  white-space: nowrap;
}

.zydak-newsletter-form button:hover {
  background: var(--clr-accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-glow);
}

/* --------------------------------------------------------------------------
   12. FOOTER
   -------------------------------------------------------------------------- */
footer.ct-footer,
footer[data-id] {
  background: var(--clr-dark) !important;
  color: rgba(255, 255, 255, 0.75);
  padding-top: var(--sp-16);
}

footer .ct-container {
  max-width: 1200px;
}

footer h3,
footer .widget-title,
footer .ct-widget h2 {
  color: var(--clr-white) !important;
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  text-transform: uppercase;
  letter-spacing: var(--ls-wider);
  margin-bottom: var(--sp-5);
  position: relative;
  padding-bottom: var(--sp-3);
}

footer h3::after,
footer .widget-title::after,
footer .ct-widget h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: var(--radius-full);
}

footer a,
footer .ct-widget a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: var(--fs-sm);
  transition: all var(--duration-fast) var(--ease-out);
  display: inline-block;
}

footer a:hover,
footer .ct-widget a:hover {
  color: var(--clr-white) !important;
  transform: translateX(3px);
}

footer .ct-widget li {
  margin-bottom: var(--sp-2);
}

footer p,
footer .ct-widget p {
  color: rgba(255, 255, 255, 0.55);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* Footer bottom bar / copyright */
.ct-footer-bottom,
footer .ct-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: var(--sp-5) 0;
  margin-top: var(--sp-12);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.40);
}

/* Footer social icons */
footer .ct-social-box a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--sp-2);
  transition: all var(--duration-normal) var(--ease-out);
}

footer .ct-social-box a:hover {
  background: var(--clr-primary);
  transform: translateY(-3px) translateX(0);
}

/* --------------------------------------------------------------------------
   13. WOOCOMMERCE — SINGLE PRODUCT
   -------------------------------------------------------------------------- */

/* Single product gallery */
.woocommerce div.product div.images {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Single product title */
.woocommerce div.product .product_title {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-3xl);
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
}

/* Single product price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
  color: var(--clr-primary);
}

.woocommerce div.product p.price del {
  color: var(--clr-text-light);
  font-size: var(--fs-lg);
  opacity: 0.5;
}

.woocommerce div.product p.price ins {
  text-decoration: none;
  color: var(--clr-accent);
}

/* Quantity selector */
.woocommerce .quantity .qty,
.woocommerce div.product form.cart .quantity input.qty {
  width: 70px;
  padding: var(--sp-3);
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  text-align: center;
  transition: border-color var(--duration-fast) var(--ease-out);
}

.woocommerce .quantity .qty:focus {
  border-color: var(--clr-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.12);
}

/* Single product Add to Cart button */
.woocommerce div.product form.cart .button,
.woocommerce div.product .single_add_to_cart_button {
  background: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-10);
  border-radius: var(--radius-full);
  border: none;
  box-shadow: 0 4px 18px rgba(231, 111, 81, 0.30);
  transition: all var(--duration-normal) var(--ease-out);
}

.woocommerce div.product .single_add_to_cart_button:hover {
  background: var(--clr-accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-glow);
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  border: 1px solid var(--clr-border);
  border-bottom: none;
  background: var(--clr-surface);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: var(--clr-white);
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--ff-heading);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
}

/* Related products section */
.woocommerce div.product .related.products h2,
.woocommerce div.product .upsells.products h2 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-2xl);
}

/* --------------------------------------------------------------------------
   14. WOOCOMMERCE — CART & CHECKOUT
   -------------------------------------------------------------------------- */

/* Cart table */
.woocommerce table.shop_table {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border-collapse: separate;
}

.woocommerce table.shop_table th {
  background: var(--clr-surface);
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: var(--ls-wide);
  color: var(--clr-dark);
  padding: var(--sp-4);
}

.woocommerce table.shop_table td {
  padding: var(--sp-4);
  vertical-align: middle;
  border-color: var(--clr-border);
}

/* Coupon field */
.woocommerce .coupon .input-text {
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-full);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--ff-body);
  transition: border-color var(--duration-fast) var(--ease-out);
}

.woocommerce .coupon .input-text:focus {
  border-color: var(--clr-primary);
  outline: none;
}

/* Checkout form */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row textarea,
.woocommerce-checkout .form-row select,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-md);
  padding: var(--sp-3) var(--sp-4);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  transition: all var(--duration-fast) var(--ease-out);
  background: var(--clr-white);
}

.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row textarea:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: var(--clr-primary);
  outline: none;
  box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.08);
}

.woocommerce-checkout .form-row label {
  font-family: var(--ff-heading);
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

/* Place Order button */
.woocommerce #place_order {
  background: var(--clr-accent) !important;
  color: var(--clr-white) !important;
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-10);
  border-radius: var(--radius-full);
  border: none;
  width: 100%;
  box-shadow: 0 4px 18px rgba(231, 111, 81, 0.30);
  transition: all var(--duration-normal) var(--ease-out);
}

.woocommerce #place_order:hover {
  background: var(--clr-accent-hover) !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-glow);
}

/* Order summary */
.woocommerce-checkout #order_review {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
}

/* --------------------------------------------------------------------------
   15. WOOCOMMERCE — NOTICES
   -------------------------------------------------------------------------- */
.woocommerce-message {
  border-top-color: var(--clr-success) !important;
  background: rgba(5, 150, 105, 0.06);
  border-radius: var(--radius-md);
}

.woocommerce-message::before {
  color: var(--clr-success) !important;
}

.woocommerce-info {
  border-top-color: var(--clr-primary) !important;
  background: rgba(45, 106, 79, 0.06);
  border-radius: var(--radius-md);
}

.woocommerce-error {
  border-top-color: var(--clr-accent) !important;
  background: rgba(231, 111, 81, 0.06);
  border-radius: var(--radius-md);
}

/* --------------------------------------------------------------------------
   16. BREADCRUMBS
   -------------------------------------------------------------------------- */
.woocommerce .woocommerce-breadcrumb,
.ct-breadcrumbs {
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
  padding: var(--sp-4) 0;
}

.ct-breadcrumbs a {
  color: var(--clr-text-light);
  transition: color var(--duration-fast) var(--ease-out);
}

.ct-breadcrumbs a:hover {
  color: var(--clr-primary);
}

/* --------------------------------------------------------------------------
   17. ANIMATIONS
   -------------------------------------------------------------------------- */

/* Fade In on scroll — apply via JS or Stackable */
.zydak-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.zydak-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered entrance for grids */
.zydak-stagger > *:nth-child(1) { transition-delay: 0ms; }
.zydak-stagger > *:nth-child(2) { transition-delay: 80ms; }
.zydak-stagger > *:nth-child(3) { transition-delay: 160ms; }
.zydak-stagger > *:nth-child(4) { transition-delay: 240ms; }
.zydak-stagger > *:nth-child(5) { transition-delay: 320ms; }

/* Hover scale for generic elements */
.zydak-hover-scale {
  transition: transform var(--duration-normal) var(--ease-out);
}
.zydak-hover-scale:hover {
  transform: scale(1.03);
}

/* Float animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.zydak-float {
  animation: float 4s ease-in-out infinite;
}

/* Spin animation for loading */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.zydak-spin {
  animation: spin 1s linear infinite;
}

/* Slide up */
@keyframes slide-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.zydak-slide-up {
  animation: slide-up 0.6s var(--ease-out) forwards;
}

/* --------------------------------------------------------------------------
   18. GLASSMORPHISM CARDS
   -------------------------------------------------------------------------- */
.zydak-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.zydak-glass-dark {
  background: rgba(27, 45, 42, 0.70);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   19. LOADING SKELETONS
   -------------------------------------------------------------------------- */
@keyframes skeleton-pulse {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.zydak-skeleton {
  background: linear-gradient(
    90deg,
    var(--clr-border) 25%,
    var(--clr-surface) 50%,
    var(--clr-border) 75%
  );
  background-size: 200% 100%;
  animation: skeleton-pulse 1.8s ease-in-out infinite;
  border-radius: var(--radius-md);
}

.zydak-skeleton-text {
  height: 14px;
  margin-bottom: var(--sp-2);
  width: 80%;
}

.zydak-skeleton-title {
  height: 22px;
  margin-bottom: var(--sp-3);
  width: 60%;
}

.zydak-skeleton-image {
  height: 200px;
  width: 100%;
  border-radius: var(--radius-lg);
}

/* --------------------------------------------------------------------------
   20. ACCESSIBILITY & SEO
   -------------------------------------------------------------------------- */

/* Skip to content link */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--clr-dark);
  color: var(--clr-white);
  padding: var(--sp-3) var(--sp-6);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  z-index: var(--z-toast);
  transition: top var(--duration-fast) var(--ease-out);
}
.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--clr-accent);
  outline-offset: 2px;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Screen reader only class */
.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --------------------------------------------------------------------------
   21. BLOCKSY-SPECIFIC OVERRIDES
   -------------------------------------------------------------------------- */

/* Blocksy container width */
.ct-container {
  max-width: 1280px;
}

/* Blocksy sidebar */
.ct-sidebar {
  border-left: 1px solid var(--clr-border);
  padding-left: var(--sp-8);
}

/* Blocksy widgets */
.ct-widget {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  border: 1px solid var(--clr-border);
  margin-bottom: var(--sp-6);
}

.ct-widget .widget-title {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--clr-dark);
  border-bottom: 2px solid var(--clr-surface);
  padding-bottom: var(--sp-3);
  margin-bottom: var(--sp-4);
}

/* Blocksy pagination */
.ct-pagination {
  margin-top: var(--sp-10);
}

.ct-pagination .page-numbers {
  font-family: var(--ff-heading);
  font-weight: var(--fw-medium);
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  border: 2px solid var(--clr-border);
  color: var(--clr-text);
  transition: all var(--duration-fast) var(--ease-out);
}

.ct-pagination .page-numbers.current,
.ct-pagination .page-numbers:hover {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: var(--clr-white);
}

/* --------------------------------------------------------------------------
   22. BLOG POSTS CARD STYLES
   -------------------------------------------------------------------------- */
.zydak-blog-card,
article.post {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  box-shadow: var(--shadow-xs);
  transition: all var(--duration-normal) var(--ease-out);
}

.zydak-blog-card:hover,
article.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

article.post .entry-title a {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  transition: color var(--duration-fast) var(--ease-out);
}

article.post .entry-title a:hover {
  color: var(--clr-primary);
}

article.post .entry-meta {
  font-size: var(--fs-sm);
  color: var(--clr-text-light);
}

/* --------------------------------------------------------------------------
   23. MOBILE RESPONSIVE
   -------------------------------------------------------------------------- */

/* ── Tablet (≤ 768px) ── */
@media (max-width: 768px) {

  /* Typography scale down */
  h1, .has-huge-font-size   { font-size: var(--fs-3xl); }
  h2, .has-large-font-size  { font-size: var(--fs-2xl); }
  h3, .has-medium-font-size { font-size: var(--fs-xl); }
  h4 { font-size: var(--fs-lg); }

  /* Hero */
  .zydak-hero,
  .hero-section {
    min-height: 55vh;
  }

  .zydak-hero h1,
  .hero-section h1 {
    font-size: var(--fs-3xl);
  }

  .zydak-hero p,
  .hero-section p {
    font-size: var(--fs-base);
  }

  /* Category grid */
  .zydak-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }

  /* Product grid */
  .woocommerce ul.products[class*="columns-4"],
  .woocommerce ul.products[class*="columns-3"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: var(--sp-4);
  }

  /* Trust badges */
  .zydak-trust-badges {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }

  /* Promo banner */
  .zydak-promo-banner {
    grid-template-columns: 1fr;
  }

  .zydak-promo-content {
    padding: var(--sp-8) var(--sp-6);
  }

  .zydak-promo-image {
    height: 250px;
  }

  /* Newsletter */
  .zydak-newsletter-form {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .zydak-newsletter-form button {
    width: 100%;
  }

  /* Section spacing */
  .zydak-section,
  .zydak-section-alt {
    padding: var(--sp-10) 0;
  }

  /* Sidebar below */
  .ct-sidebar {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--clr-border);
    padding-top: var(--sp-8);
    margin-top: var(--sp-8);
  }
}

/* ── Mobile (≤ 480px) ── */
@media (max-width: 480px) {

  body {
    font-size: var(--fs-sm);
  }

  h1, .has-huge-font-size   { font-size: var(--fs-2xl); }
  h2, .has-large-font-size  { font-size: var(--fs-xl); }
  h3, .has-medium-font-size { font-size: var(--fs-lg); }

  /* Hero */
  .zydak-hero,
  .hero-section {
    min-height: 50vh;
  }

  .zydak-hero h1,
  .hero-section h1 {
    font-size: var(--fs-2xl);
  }

  .zydak-hero .hero-content,
  .hero-section .hero-content {
    padding: var(--sp-4);
  }

  /* Category grid – 2 columns on smallest screens */
  .zydak-categories {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-2);
  }

  /* Product grid */
  .woocommerce ul.products[class*="columns-4"],
  .woocommerce ul.products[class*="columns-3"],
  .woocommerce ul.products[class*="columns-2"] {
    grid-template-columns: 1fr !important;
    gap: var(--sp-4);
  }

  /* Trust badges - single column */
  .zydak-trust-badges {
    grid-template-columns: 1fr;
  }

  /* Buttons */
  .wp-block-button__link,
  .wp-element-button {
    padding: 0.75rem 1.5rem;
    font-size: var(--fs-xs);
  }

  /* Product card image */
  .woocommerce ul.products li.product a img {
    height: 200px;
  }

  /* Section title */
  .zydak-section-title {
    font-size: var(--fs-xl);
  }

  /* Section spacing */
  .zydak-section,
  .zydak-section-alt {
    padding: var(--sp-8) 0;
  }

  /* Quick view hidden on mobile */
  .woocommerce ul.products li.product > a:first-child::after {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   24. DARK MODE SUPPORT (optional — Blocksy has built-in)
   -------------------------------------------------------------------------- */
[data-color-mode="dark"] {
  --clr-light-bg: #111917;
  --clr-surface:  #1A2723;
  --clr-white:    #1E2D29;
  --clr-text:     #E5E7EB;
  --clr-text-light:#9CA3AF;
  --clr-dark:     #F0F2F0;
  --clr-border:   #2D3B36;
  --glass-bg:     rgba(30, 45, 41, 0.70);
  --glass-border: rgba(255, 255, 255, 0.06);
  --shadow-sm:  0 2px 6px rgba(0,0,0,0.25);
  --shadow-md:  0 4px 14px rgba(0,0,0,0.35);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.45);
}

/* --------------------------------------------------------------------------
   25. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  header, footer, .zydak-hero, .zydak-trust-badges,
  .zydak-promo-banner, .zydak-newsletter {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }

  a {
    color: #000;
    text-decoration: underline;
  }

  .woocommerce ul.products li.product {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }
}

/* --------------------------------------------------------------------------
   26. SCROLL-TRIGGERED ANIMATION (IntersectionObserver helper)
   Paste this JS snippet in Blocksy → Customize → Custom JS:
   --------------------------------------------------------------------------

   document.addEventListener('DOMContentLoaded', function() {
     const observer = new IntersectionObserver((entries) => {
       entries.forEach(entry => {
         if (entry.isIntersecting) {
           entry.target.classList.add('is-visible');
           observer.unobserve(entry.target);
         }
       });
     }, { threshold: 0.1, rootMargin: '0px 0px -40px 0px' });

     document.querySelectorAll('.zydak-fade-in').forEach(el => observer.observe(el));
   });

   -------------------------------------------------------------------------- */

/* --------------------------------------------------------------------------
   27. FLOATING WHATSAPP BUTTON
   -------------------------------------------------------------------------- */
.zydak-whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25D366;
  color: #FFFFFF !important;
  border-radius: 50px;
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  text-decoration: none;
  font-family: var(--ff-heading), sans-serif;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  transition: all var(--duration-normal) var(--ease-out);
}

.zydak-whatsapp-float:hover {
  background-color: #20BA5A;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  color: #FFFFFF !important;
}

.zydak-whatsapp-float svg {
  display: block;
}

.zydak-whatsapp-float span {
  display: inline-block;
}

@media (max-width: 768px) {
  .zydak-whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    padding: 0.75rem;
    border-radius: 50%;
  }
  .zydak-whatsapp-float span {
    display: none;
  }
}

/* ==========================================================================
   END OF CUSTOM CSS — ZYDAK.SHOP
   ========================================================================== */

/* Template layout styles */
/* Mock Header & Layout Fixes for Preview */
    .zydak-mock-header {
      background: #FFFFFF;
      border-bottom: 1px solid #E5E7EB;
      position: sticky;
      top: 0;
      z-index: 999;
      font-family: 'Inter', sans-serif;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }
    .announcement-bar {
      background: #2D6A4F;
      color: #FFFFFF;
      text-align: center;
      padding: 0.5rem 1rem;
      font-size: 0.8125rem;
      font-weight: 500;
      letter-spacing: 0.05em;
    }
    .header-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .header-logo {
      cursor: pointer;
    }
    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid #E5E7EB;
      border-radius: 50%;
      background: #FFFFFF;
      color: #1B2D2A;
      font-size: 1.25rem;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
    }
    .header-logo img {
      height: 42px;
      width: auto;
    }
    .header-nav {
      display: flex;
      gap: 1.5rem;
    }
    .header-nav a {
      color: #1B2D2A;
      font-family: 'Outfit', sans-serif;
      font-weight: 500;
      font-size: 0.9375rem;
      transition: color 0.2s;
      cursor: pointer;
    }
    .header-nav a:hover, .header-nav a.active {
      color: #E76F51;
    }
    .header-icons {
      display: flex;
      gap: 1.25rem;
      font-size: 1.25rem;
      color: #1B2D2A;
      cursor: pointer;
      align-items: center;
    }
    .header-icons .cart-icon {
      position: relative;
    }
    .header-icons .cart-count {
      position: absolute;
      top: -6px;
      right: -10px;
      background: #E76F51;
      color: #FFFFFF;
      font-size: 0.6875rem;
      font-weight: 700;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Outfit', sans-serif;
    }

    /* Page Switcher Containers */
    .page-container {
      display: none;
    }
    .page-container.active {
      display: block;
    }

    /* Override WP Container limits */
    .ct-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }
    .zydak-section, .zydak-section-alt {
      padding: 2.5rem 0;
    }
    .zydak-section-alt {
      background-color: #EEF2E6;
    }

    /* WooCommerce Empty State Alert */
    .woocommerce-info {
      background-color: #EEF2E6;
      color: #2D6A4F;
      padding: 1.25rem 2rem;
      border-left: 4px solid #2D6A4F;
      border-radius: var(--radius-md);
      font-family: 'Inter', sans-serif;
      font-size: 0.9375rem;
      margin: 2rem 0;
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    /* Blog Grid List Styles */
    .blog-section-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.75rem;
      color: #2D6A4F;
      margin-top: 3rem;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #EEF2E6;
      padding-bottom: 0.5rem;
    }
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
    }
    .blog-card {
      background: #FFFFFF;
      border: 1px solid #E5E7EB;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .blog-card:focus-visible {
      outline: 2px solid #2D6A4F;
      outline-offset: 3px;
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .blog-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .blog-card-content {
      padding: 1.5rem;
      font-family: 'Inter', sans-serif;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    .blog-tag {
      font-size: 0.75rem;
      color: #E76F51;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }
    .blog-card-content h3 {
      font-size: 1.15rem;
      margin-top: 0;
      margin-bottom: 0.75rem;
      font-family: 'Outfit', sans-serif;
      font-weight: 700;
      color: #1B2D2A;
      line-height: 1.3;
    }
    .blog-card-content p {
      font-size: 0.875rem;
      color: #6B7280;
      line-height: 1.5;
      margin: 0 0 1rem 0;
      flex-grow: 1;
    }
    /* Mock Footer */
    .zydak-mock-footer {
      background: #1B2D2A;
      color: #FFFFFF;
      padding: 4rem 1.5rem 2rem;
      font-family: 'Inter', sans-serif;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      padding-bottom: 3rem;
    }
    .footer-col h4 {
      color: #FFFFFF;
      font-family: 'Outfit', sans-serif;
      margin-bottom: 1.25rem;
      font-size: 1.125rem;
    }
    .footer-col p {
      color: rgba(255,255,255,0.7);
      font-size: 0.875rem;
      line-height: 1.6;
    }
    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .footer-links li {
      margin-bottom: 0.75rem;
    }
    .footer-links a {
      color: rgba(255,255,255,0.7);
      font-size: 0.875rem;
      transition: color 0.2s;
      cursor: pointer;
    }
    .footer-links a:hover {
      color: #E76F51;
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 2rem auto 0;
      display: flex;
      justify-content: space-between;
      color: rgba(255,255,255,0.5);
      font-size: 0.75rem;
    }

    /* Standard Policy Page Style */
    .policy-page {
      max-width: 800px;
      margin: 4rem auto;
      padding: 0 1.5rem;
      font-family: 'Inter', sans-serif;
      color: #2B2B2B;
      line-height: 1.75;
    }
    .policy-page h1 {
      font-family: 'Outfit', sans-serif;
      font-size: 2.5rem;
      color: #1B2D2A;
      margin-bottom: 2rem;
      border-bottom: 2px solid #EEF2E6;
      padding-bottom: 1rem;
    }
    .policy-page h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.5rem;
      color: #1B2D2A;
      margin-top: 2rem;
      margin-bottom: 1rem;
    }
    .policy-page h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.2rem;
      color: #2D6A4F;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }
    .policy-page ul {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
    }
    .policy-page li {
      margin-bottom: 0.5rem;
    }
    .policy-page table {
      width: 100%;
      border-collapse: collapse;
      margin: 1.5rem 0;
    }
    .policy-page th, .policy-page td {
      border: 1px solid #E5E7EB;
      padding: 0.75rem 1rem;
      text-align: left;
    }
    .policy-page th {
      background-color: #EEF2E6;
      font-weight: 600;
    }

    /* Article Reader Layout */
    .article-hero {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      margin-bottom: 2rem;
    }

    @media (max-width: 768px) {
      .header-main {
        position: relative;
        gap: 1rem;
        padding: 0.85rem 1rem;
      }
      .mobile-menu-toggle {
        display: inline-flex;
        order: 3;
      }
      .header-icons {
        margin-left: auto;
      }
      .header-nav {
        position: absolute;
        top: 100%;
        left: 1rem;
        right: 1rem;
        display: none;
        flex-direction: column;
        gap: 0;
        background: #FFFFFF;
        border: 1px solid #E5E7EB;
        border-radius: 0.75rem;
        box-shadow: 0 14px 35px rgba(0,0,0,0.12);
        overflow: hidden;
      }
      .header-nav.is-open {
        display: flex;
      }
      .header-nav a {
        padding: 0.9rem 1rem;
        border-bottom: 1px solid #F3F4F6;
      }
      .header-nav a:last-child {
        border-bottom: none;
      }
    }

/* Deferred template styles */
.blog-filters {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
          }
          .filter-btn {
            background-color: #EEF2E6;
            color: #1B2D2A;
            border: 1px solid #E5E7EB;
            padding: 0.625rem 1.25rem;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
          }
          .filter-btn:hover {
            background-color: #40916C;
            color: #FFFFFF;
            border-color: #40916C;
          }
          .filter-btn.active {
            background-color: #2D6A4F;
            color: #FFFFFF;
            border-color: #2D6A4F;
            box-shadow: 0 4px 10px rgba(45, 106, 79, 0.2);
          }
          
          .blog-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            margin-top: 3rem;
            flex-wrap: wrap;
          }
          .blog-pagination .page-btn {
            background-color: #FFFFFF;
            color: #1B2D2A;
            border: 1px solid #E5E7EB;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'Outfit', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
          }
          .blog-pagination .page-btn:hover:not(:disabled) {
            background-color: #EEF2E6;
            border-color: #2D6A4F;
            color: #2D6A4F;
          }
          .blog-pagination .page-btn.active {
            background-color: #2D6A4F;
            color: #FFFFFF;
            border-color: #2D6A4F;
          }
          .blog-pagination .page-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
          }
          .blog-pagination .page-nav-btn {
            background-color: #EEF2E6;
            color: #2D6A4F;
            border: 1px solid #EEF2E6;
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-family: 'Outfit', sans-serif;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s ease;
          }
          .blog-pagination .page-nav-btn:hover:not(:disabled) {
            background-color: #2D6A4F;
            color: #FFFFFF;
            border-color: #2D6A4F;
          }
          .blog-pagination .page-nav-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
          }

/*
Theme Name: Zydak Smart Essentials
Theme URI: https://zydak.shop/
Author: Zydak
Author URI: https://zydak.shop/
Description: A complete storefront and editorial theme for Zydak, including the homepage, category views, blog, policy pages, contact details, and bundled image assets.
Version: 2.3.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: zydak-smart-essentials
*/

:root {
	--zydak-green: #2d6a4f;
	--zydak-dark: #1b2d2a;
	--zydak-coral: #e76f51;
	--zydak-soft: #eef2e6;
	--zydak-border: #e5e7eb;
	--zydak-muted: #53605c;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	color: var(--zydak-dark);
	background: #fff;
	font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	line-height: 1.6;
}

.zydak-hero {
	position: relative;
	overflow: hidden;
}

.zydak-hero::before {
	position: absolute;
	inset: 0;
	z-index: 1;
	background: rgba(27, 45, 42, 0.42);
	content: "";
}

.zydak-hero-media {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zydak-hero .hero-content {
	position: relative;
	z-index: 2;
}

a {
	color: var(--zydak-green);
}

img {
	max-width: 100%;
	height: auto;
}

.zydak-site-header {
	position: sticky;
	top: 0;
	z-index: 999;
	background: #fff;
	border-bottom: 1px solid var(--zydak-border);
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.zydak-announcement {
	padding: 8px 20px;
	color: #fff;
	background: var(--zydak-green);
	text-align: center;
	font-size: 13px;
	font-weight: 600;
}

.zydak-header-inner {
	display: flex;
	align-items: center;
	gap: 30px;
	width: min(1200px, calc(100% - 40px));
	min-height: 76px;
	margin: 0 auto;
}

.zydak-logo {
	display: block;
	flex: 0 0 auto;
}

.zydak-logo img {
	display: block;
	width: auto;
	height: 44px;
}

.zydak-main-nav {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-left: auto;
}

.zydak-main-nav a {
	color: var(--zydak-dark);
	text-decoration: none;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 600;
}

.zydak-main-nav a:hover,
.zydak-main-nav .current {
	color: var(--zydak-coral);
}

.zydak-cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 42px;
	height: 42px;
	padding: 0 12px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	color: var(--zydak-dark);
	text-decoration: none;
	font-weight: 700;
}

.zydak-menu-toggle {
	display: none;
	width: 42px;
	height: 42px;
	margin-left: auto;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	background: #fff;
	font-size: 22px;
	cursor: pointer;
}

.zydak-store-main {
	width: min(1320px, calc(100% - 40px));
	min-height: 60vh;
	margin: 0 auto;
	padding: 32px 0 80px;
}

.zydak-store-heading {
	display: grid;
	grid-template-columns: minmax(0, 1.45fr) minmax(240px, 0.55fr);
	gap: 30px;
	align-items: stretch;
	position: relative;
	margin: 0 0 24px;
	padding: 42px 44px;
	overflow: hidden;
	border-left: 5px solid var(--zydak-coral);
	border-radius: 6px;
	background: var(--zydak-soft);
}

.zydak-page-content .zydak-store-heading {
	display: block;
}

.zydak-category-visual {
	min-height: 190px;
	border-radius: 5px;
	background-position: center;
	background-size: cover;
}

.zydak-category-offer-link {
	display: inline-block;
	margin-top: 8px;
	color: var(--zydak-green);
	font-weight: 800;
	text-decoration: none;
}

.zydak-store-heading-copy {
	position: relative;
	z-index: 1;
	max-width: 800px;
}

.zydak-store-eyebrow {
	display: block;
	margin-bottom: 8px;
	color: var(--zydak-coral);
	font-family: "Outfit", sans-serif;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-store-heading h1,
.zydak-page-content h1,
.woocommerce-products-header__title,
.product_title {
	margin: 0 0 12px;
	font-family: "Outfit", sans-serif;
	line-height: 1.15;
	font-size: clamp(30px, 4vw, 46px);
}

.zydak-category-nav {
	display: flex;
	gap: 8px;
	margin: 0 0 28px;
	padding-bottom: 4px;
	overflow-x: auto;
	scrollbar-width: thin;
}

.zydak-category-nav a {
	flex: 0 0 auto;
	padding: 9px 14px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	color: var(--zydak-dark);
	background: #fff;
	text-decoration: none;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	font-weight: 700;
}

.zydak-category-nav a:hover {
	border-color: var(--zydak-coral);
	color: var(--zydak-coral);
}

.zydak-category-nav a.is-active {
	border-color: var(--zydak-green);
	color: #fff;
	background: var(--zydak-green);
}

.zydak-shop-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

.zydak-shop-results {
	min-width: 0;
}

.zydak-shop-filters {
	position: sticky;
	top: 110px;
	padding: 22px 20px;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 8px 28px rgba(27, 45, 42, 0.06);
}

.zydak-filter-header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	padding-bottom: 16px;
	border-bottom: 2px solid var(--zydak-soft);
}

.zydak-filter-header span {
	display: block;
	margin-bottom: 2px;
	color: var(--zydak-coral);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-filter-header h2 {
	margin: 0;
	font-family: "Outfit", sans-serif;
	font-size: 22px;
}

.zydak-filter-close,
.zydak-filter-toggle {
	display: none;
}

.zydak-filter-group {
	padding: 22px 0;
	border-bottom: 1px solid var(--zydak-border);
}

.zydak-filter-group:last-child {
	padding-bottom: 0;
	border-bottom: 0;
}

.zydak-filter-group h3 {
	margin: 0 0 13px;
	font-family: "Outfit", sans-serif;
	font-size: 14px;
	text-transform: uppercase;
}

.zydak-filter-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.zydak-filter-list ul {
	margin: 2px 0 6px 13px;
	padding: 0 0 0 10px;
	border-left: 1px solid var(--zydak-border);
	list-style: none;
}

.zydak-filter-list ul a {
	min-height: 32px;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 12px;
}

.zydak-filter-list li + li {
	margin-top: 2px;
}

.zydak-filter-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	min-height: 40px;
	padding: 7px 8px;
	border-radius: 3px;
	color: var(--zydak-dark);
	text-decoration: none;
	font-size: 13px;
}

.zydak-filter-list a::before {
	flex: 0 0 auto;
	width: 5px;
	height: 5px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	content: "";
	transform: rotate(-45deg);
}

.zydak-filter-list a span {
	flex: 1 1 auto;
}

.zydak-filter-list a small {
	color: #9ca3af;
	font-size: 11px;
}

.zydak-filter-list a:hover,
.zydak-filter-list a.is-active {
	color: var(--zydak-green);
	background: var(--zydak-soft);
}

.zydak-price-values {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--zydak-dark);
	font-size: 12px;
	font-weight: 700;
}

.zydak-price-values .woocommerce-Price-amount {
	font-weight: 700;
}

.zydak-range {
	--range-start: 0%;
	--range-end: 100%;
	position: relative;
	height: 24px;
	margin: 0 4px 18px;
}

.zydak-range::before {
	position: absolute;
	top: 10px;
	right: 0;
	left: 0;
	height: 4px;
	border-radius: 3px;
	background: linear-gradient(
		to right,
		#d1d5db 0 var(--range-start),
		var(--zydak-green) var(--range-start) var(--range-end),
		#d1d5db var(--range-end) 100%
	);
	content: "";
}

.zydak-range input[type="range"] {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 24px;
	margin: 0;
	pointer-events: none;
	appearance: none;
	background: transparent;
}

.zydak-range input[type="range"]::-webkit-slider-thumb {
	width: 16px;
	height: 16px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--zydak-green);
	box-shadow: 0 0 0 1px var(--zydak-green);
	pointer-events: auto;
	appearance: none;
	cursor: grab;
}

.zydak-range input[type="range"]::-moz-range-thumb {
	width: 10px;
	height: 10px;
	border: 3px solid #fff;
	border-radius: 50%;
	background: var(--zydak-green);
	box-shadow: 0 0 0 1px var(--zydak-green);
	pointer-events: auto;
	cursor: grab;
}

.zydak-range input[type="range"]::-moz-range-track {
	background: transparent;
}

.zydak-filter-actions {
	display: flex;
	align-items: center;
	gap: 12px;
}

.zydak-filter-actions button {
	min-height: 40px;
	padding: 9px 16px;
	border: 0;
	border-radius: 4px;
	color: #fff;
	background: var(--zydak-green);
	font-weight: 700;
	cursor: pointer;
}

.zydak-filter-actions button:hover {
	background: var(--zydak-coral);
}

.zydak-filter-actions a {
	color: var(--zydak-muted);
	font-size: 12px;
	font-weight: 700;
}

.zydak-page-content {
	max-width: 100%;
}

.zydak-page-content .entry-content {
	min-width: 0;
}

.woocommerce-cart-form,
.woocommerce-checkout,
.woocommerce-account .woocommerce {
	font-size: 15px;
}

.woocommerce table.shop_table {
	border-color: var(--zydak-border);
	border-radius: 4px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
	min-height: 44px;
	padding: 10px 12px;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	background: #fff;
}

.term-description {
	max-width: 800px;
	color: var(--zydak-muted);
}

.woocommerce .woocommerce-breadcrumb {
	margin-bottom: 18px;
	color: var(--zydak-muted);
	font-size: 14px;
}

.zydak-shop-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-height: 70px;
	margin: 0 0 26px;
	padding: 12px 16px 12px 20px;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 8px 26px rgba(27, 45, 42, 0.06);
}

.woocommerce .zydak-shop-toolbar .woocommerce-result-count,
.woocommerce .zydak-shop-toolbar .woocommerce-ordering,
.zydak-product-count {
	float: none;
	margin: 0;
}

.woocommerce .zydak-shop-toolbar .woocommerce-result-count,
.zydak-product-count {
	color: var(--zydak-muted);
	font-size: 14px;
	font-weight: 600;
}

.woocommerce .woocommerce-ordering {
	position: relative;
}

.woocommerce .woocommerce-ordering select {
	width: 250px;
	min-height: 48px;
	padding: 8px 38px 8px 14px;
	border: 1px solid #cfd8d3;
	border-radius: 4px;
	color: var(--zydak-dark);
	background: #fff;
	font-family: "Inter", sans-serif;
	font-size: 14px;
	font-weight: 700;
}

.zydak-native-sort {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.zydak-sort {
	position: relative;
	width: 250px;
}

.zydak-sort-button {
	position: relative;
	display: grid;
	width: 100%;
	min-height: 48px;
	padding: 7px 42px 7px 14px;
	border: 1px solid #cfd8d3;
	border-radius: 4px;
	color: var(--zydak-dark);
	background: #fff;
	text-align: left;
	cursor: pointer;
}

.zydak-sort-button::after {
	position: absolute;
	top: 50%;
	right: 16px;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--zydak-green);
	border-bottom: 2px solid var(--zydak-green);
	content: "";
	transform: translateY(-70%) rotate(45deg);
	transition: transform 0.2s ease;
}

.zydak-sort.is-open .zydak-sort-button {
	border-color: var(--zydak-green);
	box-shadow: 0 0 0 3px rgba(45, 106, 79, 0.1);
}

.zydak-sort.is-open .zydak-sort-button::after {
	transform: translateY(-20%) rotate(225deg);
}

.zydak-sort-label {
	color: var(--zydak-muted);
	font-size: 11px;
	font-weight: 700;
	line-height: 1.1;
	text-transform: uppercase;
}

.zydak-sort-current {
	overflow: hidden;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.zydak-sort-menu {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 30;
	display: none;
	width: 100%;
	padding: 6px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	background: #fff;
	box-shadow: 0 16px 40px rgba(27, 45, 42, 0.16);
}

.zydak-sort.is-open .zydak-sort-menu {
	display: block;
}

.zydak-sort-option {
	display: block;
	width: 100%;
	min-height: 40px;
	padding: 9px 10px;
	border: 0;
	border-radius: 3px;
	color: var(--zydak-dark);
	background: transparent;
	text-align: left;
	font-size: 14px;
	cursor: pointer;
}

.zydak-sort-option:hover,
.zydak-sort-option[aria-selected="true"] {
	color: #fff;
	background: var(--zydak-green);
}

.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px 20px;
	clear: both;
	margin: 0;
	padding: 0;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	display: flex;
	flex-direction: column;
	width: auto;
	margin: 0;
	padding: 0 0 20px;
	overflow: hidden;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 6px 20px rgba(27, 45, 42, 0.05);
	transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.woocommerce ul.products li.product:hover {
	border-color: rgba(231, 111, 81, 0.5);
	box-shadow: 0 14px 34px rgba(27, 45, 42, 0.12);
	transform: translateY(-4px);
}

.woocommerce ul.products li.product .woocommerce-LoopProduct-link {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
}

.woocommerce ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1;
	margin: 0 0 16px;
	object-fit: cover;
	background: #f7f7f7;
	transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover a img {
	transform: scale(1.025);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
	margin-right: 16px;
	margin-left: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
	flex-grow: 1;
	padding: 0;
	color: var(--zydak-dark);
	font-family: "Outfit", sans-serif;
	font-size: 17px;
	line-height: 1.35;
}

.woocommerce ul.products li.product .price {
	color: var(--zydak-green);
	font-weight: 700;
}

.woocommerce ul.products li.product .onsale {
	top: 12px;
	right: 12px;
	left: auto;
	min-width: auto;
	min-height: auto;
	margin: 0;
	padding: 5px 10px;
	border-radius: 3px;
	background: var(--zydak-coral);
	line-height: 1.4;
}

.woocommerce ul.products li.product .button {
	align-self: flex-start;
	margin-top: 14px;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	padding: 12px 18px;
	border-radius: 4px;
	color: #fff;
	background: var(--zydak-green);
	font-weight: 700;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
	color: #fff;
	background: var(--zydak-coral);
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	padding: 18px 22px;
	border-top-color: var(--zydak-green);
	background: var(--zydak-soft);
}

.woocommerce nav.woocommerce-pagination {
	margin-top: 40px;
}

.woocommerce div.product {
	display: flow-root;
}

.zydak-site-footer {
	padding: 54px 20px 24px;
	color: rgba(255, 255, 255, 0.82);
	background: var(--zydak-dark);
}

.zydak-footer-inner {
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 40px;
	width: min(1200px, 100%);
	margin: 0 auto;
}

.zydak-site-footer h2,
.zydak-site-footer h3 {
	margin-top: 0;
	color: #fff;
	font-family: "Outfit", sans-serif;
}

.zydak-site-footer a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.zydak-footer-links {
	margin: 0;
	padding: 0;
	list-style: none;
}

.zydak-footer-links li {
	margin: 8px 0;
}

.zydak-copyright {
	width: min(1200px, 100%);
	margin: 36px auto 0;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.14);
	font-size: 13px;
}

@media (max-width: 1120px) {
	.woocommerce ul.products {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.zydak-menu-toggle {
		display: inline-flex;
		align-items: center;
		justify-content: center;
	}

	.zydak-main-nav {
		position: absolute;
		top: 100%;
		right: 0;
		left: 0;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 10px 20px 20px;
		border-bottom: 1px solid var(--zydak-border);
		background: #fff;
	}

	.zydak-main-nav.is-open {
		display: flex;
	}

	.zydak-main-nav a {
		padding: 12px 0;
		border-bottom: 1px solid #f1f1f1;
	}

	.zydak-shop-layout {
		display: block;
	}

	.zydak-filter-toggle {
		display: inline-flex;
		align-items: center;
		gap: 8px;
		min-height: 44px;
		margin: 0 0 18px;
		padding: 9px 16px;
		border: 1px solid var(--zydak-green);
		border-radius: 4px;
		color: var(--zydak-green);
		background: #fff;
		font-weight: 800;
		cursor: pointer;
	}

	.zydak-shop-filters {
		position: fixed;
		top: 0;
		bottom: 0;
		left: 0;
		z-index: 1100;
		width: min(340px, calc(100% - 42px));
		padding: 24px;
		overflow-y: auto;
		border: 0;
		border-radius: 0;
		transform: translateX(-105%);
		transition: transform 0.25s ease;
	}

	.zydak-shop-filters.is-open {
		transform: translateX(0);
	}

	.zydak-filter-close {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 38px;
		height: 38px;
		padding: 0;
		border: 1px solid var(--zydak-border);
		border-radius: 4px;
		background: #fff;
		font-size: 24px;
		cursor: pointer;
	}

	.zydak-filter-overlay {
		position: fixed;
		inset: 0;
		z-index: 1090;
		background: rgba(27, 45, 42, 0.46);
	}

	body.zydak-filters-open {
		overflow: hidden;
	}

	.woocommerce ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.zydak-store-heading {
		grid-template-columns: 1fr;
		padding: 34px 30px;
	}

	.zydak-category-visual {
		min-height: 170px;
	}
}

@media (max-width: 560px) {
	.zydak-header-inner,
	.zydak-store-main {
		width: min(100% - 28px, 1200px);
	}

	.zydak-logo img {
		height: 36px;
	}

	.zydak-cart-link {
		display: none;
	}

	.woocommerce ul.products {
		grid-template-columns: 1fr;
	}

	.zydak-shop-toolbar {
		align-items: stretch;
		flex-direction: column;
		padding: 14px;
	}

	.zydak-sort {
		width: 100%;
	}

	.zydak-store-heading {
		padding: 28px 22px;
	}

	.zydak-footer-inner {
		grid-template-columns: 1fr;
	}
}

/* Storefront 2.0 */
.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.zydak-site-header {
	top: 0;
}

.admin-bar .zydak-site-header {
	top: 32px;
}

.zydak-header-inner {
	gap: 24px;
	width: min(1320px, calc(100% - 40px));
	min-height: 82px;
}

.zydak-logo img {
	height: 46px;
}

.zydak-header-search {
	position: relative;
	display: flex;
	flex: 1 1 540px;
	max-width: 680px;
	height: 48px;
	margin-left: auto;
}

.zydak-header-search input[type="search"] {
	width: 100%;
	min-width: 0;
	padding: 0 56px 0 18px;
	border: 2px solid var(--zydak-green);
	border-radius: 6px;
	color: var(--zydak-dark);
	background: #fff;
	font: 500 14px "Inter", sans-serif;
	outline: 0;
}

.zydak-header-search input[type="search"]:focus {
	box-shadow: 0 0 0 4px rgba(45, 106, 79, 0.12);
}

.zydak-header-search > button {
	position: absolute;
	top: 4px;
	right: 4px;
	width: 42px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 4px;
	color: #fff;
	background: var(--zydak-green);
	cursor: pointer;
}

.zydak-search-results {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	left: 0;
	z-index: 1200;
	max-height: min(560px, 70vh);
	padding: 10px;
	overflow-y: auto;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 18px 44px rgba(27, 45, 42, 0.18);
}

.zydak-search-group + .zydak-search-group {
	margin-top: 8px;
	padding-top: 8px;
	border-top: 1px solid var(--zydak-border);
}

.zydak-search-group > strong {
	display: block;
	padding: 7px 10px;
	color: var(--zydak-muted);
	font-size: 11px;
	text-transform: uppercase;
}

.zydak-search-group > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 9px 10px;
	border-radius: 4px;
	color: var(--zydak-dark);
	text-decoration: none;
}

.zydak-search-group > a:hover {
	background: var(--zydak-soft);
}

.zydak-search-group small {
	display: block;
	color: var(--zydak-muted);
	font-size: 12px;
}

.zydak-search-product {
	justify-content: flex-start !important;
}

.zydak-search-product img {
	flex: 0 0 54px;
	width: 54px;
	height: 54px;
	object-fit: cover;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
}

.zydak-search-product > span {
	min-width: 0;
	font-weight: 700;
}

.zydak-search-loading,
.zydak-search-empty {
	margin: 0;
	padding: 20px;
	color: var(--zydak-muted);
	text-align: center;
}

.zydak-header-actions {
	display: flex;
	align-items: center;
	gap: 6px;
}

.zydak-header-action {
	position: relative;
	display: grid;
	place-items: center;
	min-width: 58px;
	height: 54px;
	padding: 5px 8px;
	border: 0;
	border-radius: 4px;
	color: var(--zydak-dark);
	background: transparent;
	text-decoration: none;
	cursor: pointer;
}

.zydak-header-action:hover {
	color: var(--zydak-green);
	background: var(--zydak-soft);
}

.zydak-header-action > span:first-child {
	font-size: 21px;
	line-height: 1;
}

.zydak-header-action small {
	font-size: 11px;
	font-weight: 700;
}

.zydak-cart-count {
	position: absolute;
	top: 2px;
	right: 4px;
	display: grid;
	place-items: center;
	min-width: 18px;
	height: 18px;
	padding: 0 4px;
	border-radius: 9px;
	color: #fff;
	background: var(--zydak-coral);
	font-size: 10px;
	font-weight: 800;
}

.zydak-main-nav {
	position: relative;
	display: block;
	margin: 0;
	border-top: 1px solid #f0f2f1;
}

.zydak-nav-inner {
	display: flex;
	align-items: center;
	gap: 28px;
	width: min(1320px, calc(100% - 40px));
	min-height: 46px;
	margin: 0 auto;
}

.zydak-nav-inner > a,
.zydak-mega-trigger {
	padding: 13px 0;
	border: 0;
	color: var(--zydak-dark);
	background: transparent;
	text-decoration: none;
	font: 700 14px "Outfit", sans-serif;
	cursor: pointer;
}

.zydak-nav-inner > a:hover,
.zydak-mega-trigger:hover {
	color: var(--zydak-coral);
}

.zydak-mega-trigger {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--zydak-green);
}

.zydak-mega-menu {
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 1100;
	padding: 28px 20px 34px;
	border-top: 1px solid var(--zydak-border);
	background: #fff;
	box-shadow: 0 20px 42px rgba(27, 45, 42, 0.16);
}

.zydak-mega-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 28px;
	width: min(1320px, 100%);
	margin: 0 auto;
}

.zydak-mega-column {
	padding-right: 24px;
	border-right: 1px solid var(--zydak-border);
}

.zydak-mega-title {
	display: block;
	margin-bottom: 12px;
	color: var(--zydak-dark);
	text-decoration: none;
	font: 800 20px "Outfit", sans-serif;
}

.zydak-mega-column ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.zydak-mega-column li {
	margin: 7px 0;
}

.zydak-mega-column li a,
.zydak-mega-column p {
	color: var(--zydak-muted);
	text-decoration: none;
	font-size: 13px;
}

.zydak-mega-column li a:hover {
	color: var(--zydak-coral);
}

.zydak-mega-promo {
	align-self: stretch;
	padding: 26px;
	border-left: 5px solid var(--zydak-coral);
	border-radius: 6px;
	background: var(--zydak-soft);
}

.zydak-mega-promo span {
	color: var(--zydak-coral);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-mega-promo h2 {
	margin: 10px 0 20px;
	font: 800 28px/1.15 "Outfit", sans-serif;
}

.zydak-mega-promo a {
	display: inline-block;
	padding: 10px 14px;
	border-radius: 4px;
	color: #fff;
	background: var(--zydak-green);
	text-decoration: none;
	font-weight: 800;
}

.zydak-global-overlay,
.zydak-filter-overlay {
	background: rgba(27, 45, 42, 0.48);
}

.zydak-blog-index .blog-grid {
	margin-top: 32px;
}

.zydak-blog-index .blog-card {
	overflow: hidden;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: #fff;
}

.zydak-blog-index .blog-card > a {
	display: block;
	height: 100%;
	color: inherit;
	text-decoration: none;
}

.zydak-blog-index .blog-card img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.zydak-blog-index .blog-card h2 {
	font-size: 20px;
	line-height: 1.3;
}

.zydak-single-post,
.zydak-single-post .entry-content {
	max-width: 900px;
}

.zydak-post-featured img {
	width: 100%;
	height: auto;
}

.zydak-cart-drawer {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	z-index: 1400;
	width: min(430px, calc(100% - 24px));
	background: #fff;
	box-shadow: -18px 0 50px rgba(27, 45, 42, 0.2);
	transform: translateX(105%);
	transition: transform 0.25s ease;
}

.zydak-cart-drawer.is-open {
	transform: translateX(0);
}

.zydak-global-overlay {
	position: fixed;
	inset: 0;
	z-index: 1390;
}

body.zydak-drawer-open {
	overflow: hidden;
}

.zydak-cart-drawer-inner {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.zydak-cart-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 22px 24px;
	border-bottom: 1px solid var(--zydak-border);
}

.zydak-cart-drawer-header span {
	color: var(--zydak-coral);
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-cart-drawer-header h2 {
	margin: 2px 0 0;
	font: 800 24px "Outfit", sans-serif;
}

.zydak-cart-close {
	width: 44px;
	height: 44px;
	padding: 0;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	background: #fff;
	font-size: 26px;
	cursor: pointer;
}

.zydak-newsletter p[style*="#9CA3AF"] {
	color: #56635f !important;
}

.policy-page > h2:first-child {
	margin-top: 0;
	color: var(--zydak-dark);
	font-family: Outfit, ui-sans-serif, system-ui, sans-serif;
	font-size: clamp(32px, 5vw, 48px);
	line-height: 1.15;
}

.zydak-shipping-progress {
	padding: 16px 24px;
	background: var(--zydak-soft);
}

.zydak-shipping-progress p {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
}

.zydak-shipping-progress > div {
	height: 6px;
	overflow: hidden;
	border-radius: 3px;
	background: #d8dfd4;
}

.zydak-shipping-progress > div span {
	display: block;
	height: 100%;
	background: var(--zydak-coral);
}

.zydak-mini-cart-items {
	padding: 18px 24px;
	overflow-y: auto;
}

.zydak-mini-cart-items .woocommerce-mini-cart {
	margin: 0;
	padding: 0;
}

.zydak-mini-cart-items .mini_cart_item {
	min-height: 82px;
	padding: 0 26px 16px 74px !important;
}

.zydak-mini-cart-items .mini_cart_item img {
	position: absolute;
	left: 0;
	width: 62px !important;
	height: 62px;
	object-fit: cover;
}

.zydak-empty-cart {
	padding: 48px 24px;
	text-align: center;
}

.zydak-empty-cart a {
	display: inline-block;
	padding: 11px 18px;
	border-radius: 4px;
	color: #fff;
	background: var(--zydak-green);
	text-decoration: none;
	font-weight: 800;
}

.zydak-subcategory-section {
	margin: 0 0 28px;
}

.zydak-subcategory-section h2 {
	margin: 0 0 14px;
	font: 800 22px "Outfit", sans-serif;
}

.zydak-subcategory-row {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 14px;
}

.zydak-subcategory-tile {
	display: grid;
	justify-items: center;
	padding: 12px 8px;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	color: var(--zydak-dark);
	background: #fff;
	text-align: center;
	text-decoration: none;
}

.zydak-subcategory-tile:hover {
	border-color: var(--zydak-coral);
	box-shadow: 0 10px 24px rgba(27, 45, 42, 0.08);
}

.zydak-subcategory-tile img {
	width: 86px;
	height: 86px;
	margin-bottom: 9px;
	border-radius: 50%;
	object-fit: cover;
	background: #f7f8f7;
}

.zydak-subcategory-tile span {
	font: 700 13px "Outfit", sans-serif;
}

.zydak-subcategory-tile small {
	color: var(--zydak-muted);
	font-size: 10px;
}

.zydak-filter-checks,
.zydak-rating-filter {
	margin: 0;
	padding: 0;
	list-style: none;
}

.zydak-filter-checks li,
.zydak-rating-filter li {
	margin: 5px 0;
}

.zydak-filter-checks a,
.zydak-rating-filter a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--zydak-dark);
	text-decoration: none;
	font-size: 12px;
}

.zydak-filter-checks a > span {
	width: 16px;
	height: 16px;
	border: 1px solid #b8c1bc;
	border-radius: 3px;
	background: #fff;
}

.zydak-filter-checks a.is-active > span {
	border-color: var(--zydak-green);
	background: var(--zydak-green);
	box-shadow: inset 0 0 0 3px #fff;
}

.zydak-filter-checks small {
	margin-left: auto;
	color: var(--zydak-muted);
}

.zydak-rating-filter a span {
	color: #e8a317;
	letter-spacing: 0;
}

.zydak-shop-results.is-loading {
	opacity: 0.45;
	pointer-events: none;
}

.woocommerce ul.products li.product {
	position: relative;
}

.zydak-wishlist-button {
	position: absolute;
	top: 12px;
	right: 12px;
	z-index: 8;
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--zydak-border);
	border-radius: 50%;
	color: var(--zydak-dark);
	background: rgba(255, 255, 255, 0.94);
	font-size: 23px;
	cursor: pointer;
}

.zydak-wishlist-button.is-active {
	border-color: var(--zydak-coral);
	color: #fff;
	background: var(--zydak-coral);
}

.single-product .summary .zydak-wishlist-button {
	position: static;
	display: inline-grid;
	margin: 8px 0 16px;
}

.zydak-product-badges {
	position: absolute;
	top: 12px;
	left: 12px;
	z-index: 7;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	max-width: calc(100% - 104px);
}

.single-product .summary .zydak-product-badges {
	position: static;
	margin-bottom: 10px;
}

.zydak-product-badges span {
	padding: 5px 8px;
	border-radius: 3px;
	color: #fff;
	background: var(--zydak-green);
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-product-badges .is-sale,
.zydak-product-badges .is-low {
	background: var(--zydak-coral);
}

.zydak-product-badges .is-out {
	background: #4b5563;
}

.zydak-product-badges .is-new {
	background: #1677a8;
}

.zydak-product-badges .is-best {
	background: #8a5b08;
}

.zydak-interest-section {
	padding: 56px 0;
	background: #fff;
}

.zydak-home-heading {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 28px;
	margin-bottom: 22px;
}

.zydak-home-heading span {
	color: var(--zydak-coral);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-home-heading h2 {
	margin: 6px 0 0;
	font: 800 34px/1.15 "Outfit", sans-serif;
}

.zydak-home-heading p {
	max-width: 430px;
	margin: 0;
	color: var(--zydak-muted);
}

.zydak-interest-switcher {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 20px;
}

.zydak-interest-switcher button {
	padding: 10px 16px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	color: var(--zydak-dark);
	background: #fff;
	font-weight: 800;
	cursor: pointer;
}

.zydak-interest-switcher button.is-active {
	border-color: var(--zydak-green);
	color: #fff;
	background: var(--zydak-green);
}

.zydak-interest-offers {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

.zydak-interest-offers a {
	position: relative;
	display: flex;
	min-height: 250px;
	flex-direction: column;
	justify-content: end;
	padding: 24px;
	overflow: hidden;
	border-radius: 6px;
	color: #fff;
	background-position: center;
	background-size: cover;
	text-decoration: none;
}

.zydak-interest-offers a::before {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(27, 45, 42, 0.9), rgba(27, 45, 42, 0.05));
	content: "";
}

.zydak-interest-offers span,
.zydak-interest-offers strong {
	position: relative;
	z-index: 1;
}

.zydak-interest-offers span {
	color: #f4b39f;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.zydak-interest-offers strong {
	margin-top: 4px;
	font: 800 23px/1.2 "Outfit", sans-serif;
}

.zydak-live-merchandising {
	padding: 54px 0;
	background: #f7f9f7;
}

#trust-badges,
#promo-newsletter,
#blog-tips,
.zydak-interest-section,
.zydak-live-merchandising,
.zydak-site-footer {
	content-visibility: auto;
	contain-intrinsic-size: auto 700px;
}

.zydak-product-rail {
	margin-bottom: 52px;
}

.zydak-lazy-rail {
	min-height: 390px;
	margin-bottom: 52px;
}

.zydak-rail-skeleton h2 {
	margin: 0 0 18px;
	font: 800 30px "Outfit", sans-serif;
}

.zydak-rail-skeleton span {
	display: block;
	height: 320px;
	border-radius: 6px;
	background: linear-gradient(90deg, #edf0ee 25%, #f8f9f8 50%, #edf0ee 75%);
	background-size: 200% 100%;
	animation: zydak-skeleton 1.4s infinite;
}

@keyframes zydak-skeleton {
	to { background-position: -200% 0; }
}

@media (prefers-reduced-motion: reduce) {
	.zydak-rail-skeleton span {
		animation: none;
	}
}

.zydak-product-rail:last-child {
	margin-bottom: 0;
}

.zydak-rail-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 18px;
}

.zydak-rail-heading h2 {
	margin: 0;
	font: 800 30px "Outfit", sans-serif;
}

.zydak-rail-heading button {
	width: 40px;
	height: 40px;
	margin-left: 5px;
	padding: 0;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	color: var(--zydak-dark);
	background: #fff;
	cursor: pointer;
}

.zydak-rail-heading button:hover {
	border-color: var(--zydak-green);
	color: #fff;
	background: var(--zydak-green);
}

.woocommerce .zydak-product-rail ul.products {
	display: flex;
	gap: 16px;
	padding: 2px 2px 18px;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scrollbar-width: thin;
}

.woocommerce .zydak-product-rail ul.products li.product {
	flex: 0 0 245px;
	scroll-snap-align: start;
}

.single-product .zydak-store-main {
	padding-top: 24px;
}

.single-product div.product {
	display: grid !important;
	grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
	gap: 48px;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
	float: none !important;
	width: auto !important;
}

.single-product div.product .woocommerce-product-gallery {
	position: relative !important;
	top: auto;
	align-self: start;
	min-width: 0;
	overflow: hidden;
}

.single-product div.product .woocommerce-product-gallery img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.single-product div.product .summary {
	padding: 28px;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(27, 45, 42, 0.08);
}

.single-product .product_title {
	font-size: clamp(30px, 4vw, 44px);
}

.single-product .summary .price {
	color: var(--zydak-green);
	font: 800 26px "Outfit", sans-serif;
}

.single-product .woocommerce-product-rating {
	margin-bottom: 16px !important;
}

.single-product form.cart {
	margin: 22px 0 !important;
	padding: 20px 0;
	border-top: 1px solid var(--zydak-border);
	border-bottom: 1px solid var(--zydak-border);
}

.zydak-purchase-assurances {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
	margin: 16px 0;
}

.zydak-purchase-assurances > div {
	padding: 11px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	background: #fafbfa;
}

.zydak-purchase-assurances strong,
.zydak-purchase-assurances span {
	display: block;
}

.zydak-purchase-assurances strong {
	font-size: 12px;
}

.zydak-purchase-assurances span {
	margin-top: 3px;
	color: var(--zydak-muted);
	font-size: 10px;
}

.single-product form.cart .single_add_to_cart_button {
	min-height: 52px;
	padding: 14px 24px;
}

.single-product .woocommerce-tabs,
.single-product .related,
.single-product .upsells,
.single-product .zydak-fbt,
.single-product .zydak-product-rail {
	grid-column: 1 / -1;
	clear: both;
	width: 100%;
}

.single-product .woocommerce-tabs {
	margin-top: 34px;
	padding: 0;
	border-top: 1px solid var(--zydak-border);
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 0;
	margin: 0 !important;
	padding: 0 !important;
}

.single-product .woocommerce-tabs ul.tabs::before,
.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	display: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
	padding: 18px 20px !important;
	border-bottom: 3px solid transparent;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	border-color: var(--zydak-coral);
	color: var(--zydak-green) !important;
}

.single-product .woocommerce-Tabs-panel {
	padding: 26px 20px;
}

.zydak-fbt {
	margin: 44px 0;
	padding: 28px;
	border: 1px solid var(--zydak-border);
	border-radius: 6px;
	background: var(--zydak-soft);
}

.zydak-fbt h2 {
	margin-top: 0;
	font: 800 28px "Outfit", sans-serif;
}

.zydak-fbt-products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 20px;
}

.zydak-fbt-products label {
	position: relative;
	display: grid;
	grid-template-columns: 22px 72px 1fr;
	gap: 10px;
	align-items: center;
	padding: 10px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
}

.zydak-fbt-products img {
	width: 72px;
	height: 72px;
	object-fit: cover;
}

.zydak-fbt-products span {
	font-size: 12px;
	font-weight: 700;
}

.zydak-fbt-products strong {
	display: block;
	margin-top: 5px;
	color: var(--zydak-green);
}

.zydak-add-bundle {
	padding: 12px 18px;
	border: 0;
	border-radius: 4px;
	color: #fff;
	background: var(--zydak-green);
	font-weight: 800;
	cursor: pointer;
}

.zydak-review-photo img {
	width: min(240px, 100%);
	margin-top: 12px;
	border-radius: 4px;
}

.zydak-review-sort {
	min-height: 42px;
	margin: 0 0 20px;
	padding: 8px 34px 8px 12px;
	border: 1px solid var(--zydak-border);
	border-radius: 4px;
	background: #fff;
	font-weight: 700;
}

.comment-form-zydak-photo input {
	display: block;
	margin-top: 8px;
}

.zydak-mobile-buybar {
	display: none;
}

@media (max-width: 1050px) {
	.zydak-header-action small {
		display: none;
	}

	.zydak-header-action {
		min-width: 42px;
	}

	.zydak-mega-grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.zydak-mega-promo {
		grid-column: 1 / -1;
	}

	.zydak-subcategory-row {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}

	.zydak-fbt-products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.admin-bar .zydak-site-header {
		top: 46px;
	}

	.zydak-header-inner {
		flex-wrap: wrap;
		gap: 10px;
		padding: 12px 0;
	}

	.zydak-header-search {
		order: 3;
		flex-basis: 100%;
		max-width: none;
	}

	.zydak-main-nav {
		position: absolute;
		top: 100%;
		display: none;
		width: 100%;
	}

	.zydak-main-nav.is-open {
		display: block;
	}

	.zydak-nav-inner {
		display: block;
		width: 100%;
		padding: 8px 20px;
		background: #fff;
	}

	.zydak-nav-inner > a,
	.zydak-mega-trigger {
		display: flex;
		width: 100%;
		justify-content: space-between;
		padding: 12px 0;
		border-bottom: 1px solid var(--zydak-border);
	}

	.zydak-mega-menu {
		position: static;
		padding: 16px 0;
		box-shadow: none;
	}

	.zydak-mega-grid {
		display: block;
	}

	.zydak-mega-column {
		margin-bottom: 18px;
		padding: 0 0 14px;
		border-right: 0;
		border-bottom: 1px solid var(--zydak-border);
	}

	.zydak-interest-offers {
		grid-template-columns: 1fr;
	}

	.zydak-interest-offers a {
		min-height: 210px;
	}

	.single-product div.product {
		display: block !important;
	}

	.single-product div.product .woocommerce-product-gallery {
		position: static !important;
	}
}

@media (max-width: 600px) {
	a,
	button,
	input,
	select {
		touch-action: manipulation;
	}

	.zydak-filter-list a,
	.zydak-filter-checks a,
	.zydak-rating-filter a,
	.zydak-category-nav a,
	.zydak-footer-links a {
		min-height: 44px;
	}

	.zydak-section-subtitle,
	.zydak-home-heading p,
	.zydak-search-group small,
	.zydak-subcategory-tile small {
		color: #4f5b57;
	}

	.zydak-filter-checks a,
	.zydak-rating-filter a,
	.zydak-footer-links a {
		display: flex;
		align-items: center;
	}

	.zydak-header-actions .zydak-header-action:first-child,
	.zydak-wishlist-link {
		display: none;
	}

	.zydak-logo img {
		height: 38px;
	}

	.zydak-subcategory-row {
		display: flex;
		padding-bottom: 10px;
		overflow-x: auto;
	}

	.zydak-subcategory-tile {
		flex: 0 0 130px;
	}

	.zydak-home-heading {
		display: block;
	}

	.zydak-home-heading p {
		margin-top: 12px;
	}

	.zydak-home-heading h2,
	.zydak-rail-heading h2 {
		font-size: 27px;
	}

	.woocommerce .zydak-product-rail ul.products li.product {
		flex-basis: 76vw;
	}

	.single-product div.product .summary {
		padding: 20px;
	}

	.single-product .woocommerce-tabs ul.tabs {
		display: block;
	}

	.single-product .woocommerce-tabs ul.tabs li,
	.single-product .woocommerce-tabs ul.tabs li a {
		display: block;
		width: 100%;
	}

	.zydak-fbt-products {
		grid-template-columns: 1fr;
	}

	.zydak-purchase-assurances {
		grid-template-columns: 1fr;
	}

	.zydak-mobile-buybar {
		position: fixed;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: 1000;
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 12px;
		padding: 10px 14px;
		border-top: 1px solid var(--zydak-border);
		background: #fff;
		box-shadow: 0 -8px 24px rgba(27, 45, 42, 0.12);
	}

	.zydak-mobile-buybar span {
		min-width: 0;
	}

	.zydak-mobile-buybar strong {
		display: block;
		max-width: 48vw;
		overflow: hidden;
		font-size: 12px;
		text-overflow: ellipsis;
		white-space: nowrap;
	}

	.zydak-mobile-buybar .price {
		color: var(--zydak-green);
		font-size: 12px;
		font-weight: 800;
	}

	.zydak-mobile-buybar button {
		flex: 0 0 auto;
		padding: 11px 14px;
		border: 0;
		border-radius: 4px;
		color: #fff;
		background: var(--zydak-green);
		font-weight: 800;
	}
}
