


  /* ─── CSS Variables ─────────────────────────────────── */
  :root {
    --teal:        #4a9e95;
    --teal-dark:   #357970;
    --text-dark:   #1a1a1a;
    --text-mid:    #444444;
    --text-light:  #777777;
    --border:      #e8e8e8;
    --bg-light:    #fafafa;
    --white:       #ffffff;
    --order:       #4caf50;
    --radius:      16px;
    --gap:         24px;
    --shadow:      0 8px 40px rgba(0,0,0,0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body:   'DM Sans', sans-serif;
  }

  /* ─── Reset & Base ──────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

  /* ─── Modal Overlay ─────────────────────────────────── */
  .w3-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  padding: 20px 16px;
  overflow-y: auto;
  align-items: flex-start;      /* ← change from center to flex-start */
  justify-content: center;      /* ← keep this */
}
  .w3-modal.w3-show { display: flex; }

  /* ─── Modal Card ─────────────────────────────────────── */
  .modal-card {
    margin: auto; 
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: modalIn 0.25s ease;
  }

  @keyframes modalIn {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── Modal Header ───────────────────────────────────── */
  .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--white);
    z-index: 10;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .modal-header-text {
    display: flex;
    flex-direction: column;
    gap: 1.5px;
  }

  .modal-brand {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
  }

  .modal-product-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.2;
  }

  .modal-close {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--text-mid);
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
  }
  .modal-close:hover { background: #f0f0f0; color: var(--text-dark); }

  /* ─── Modal Body ─────────────────────────────────────── */
  .modal-body {
    display: flex;
    flex-direction: row;
    gap: var(--gap);
    padding: var(--gap);
    align-items: flex-start;
  }

  /* ─── Product Image ──────────────────────────────────── */
  .modal-image-wrap {
    flex: 0 0 240px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }

  .modal-image-wrap img {
    width: 100%;
    max-width: 240px;
    height: 280px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
    background: var(--bg-light);
  }

  /* ─── Product Content ────────────────────────────────── */
  .modal-content-wrap {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5.5px;
  }

  .content-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 3px;
  }

  .content-text {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-mid);
  }

  .content-divider {
    height: 1px;
    background: var(--border);
    border: none;
  }

  /* ─── Modal Footer ───────────────────────────────────── */
  .modal-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    padding: 16px 24px 20px;
    border-top: 1px solid var(--border);
    background: var(--bg-light);
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .price-tag {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    flex: 0 0 auto;
    margin-right: auto;
  }

  .btn-order {
    background: var(--order);
    color: var(--white);
    border: none;
    border-radius: 8px;
    padding: 10px 28px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .btn-order:hover { background: #3d9140; }

  /* ─── Responsive — Tablet ────────────────────────────── */
  @media (max-width: 768px) {
    .modal-body {
      flex-direction: column;
      padding: 16px;
      gap: 16px;
    }
    .modal-image-wrap {
      flex: none;
      width: 100%;
    }
    .modal-image-wrap img {
      max-width: 200px;
      height: 220px;
      margin: 0 auto;
    }
  }

  /* ─── Responsive — Mobile ────────────────────────────── */
  @media (max-width: 480px) {
    .modal-header { padding: 16px; }
    .modal-product-name { font-size: 1.1rem; }
    .modal-footer {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
    }
    .price-tag { text-align: center; margin-right: 0; }
    .btn-order { width: 100%; text-align: center; }
  }


body, h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Sans', sans-serif;
  text-align: justify;
}

p{ text-align: center;
    font-family: 'DM Sans', sans-serif;
	font-size:  20px;
}

.w3-bar-item{
color: rgb(255, 255, 255);
}

.w3-bar.navbar-bar {
  height: 65px;
  display: flex;
  align-items: flex-end;    /* ← pulls everything to bottom */
  padding-bottom: 12px;     /* ← breathing room from bottom edge */
}

/* ── Zhuri Wordmark ── */
.navbar-bar .navbar-logo-link {
  padding: 8px 16px 0 16px;  /* top right bottom left — 0 bottom keeps it flush */
  text-decoration: none;
  display: inline-flex;
  align-items: flex-end;
  overflow: visible;
}

.navbar-bar .w3-right {
  margin-left: auto;
}

.zhuri-wordmark {
  display: flex;
  flex-direction: column;     /* ← row puts Naturals beside Zhuri */
   line-height: 1;
  align-items: flex-end;       /* ← right-aligns the stacked words */
}

.zhuri-word {
   font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight:950;
  color: #ffffff;
  letter-spacing: 0.05em;
 
  white-space: nowrap;   /* ← prevents word breaking */
}

.zhuri-naturals {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 900;
  font-style: italic;
  color: #f2c78a;
  letter-spacing: 0.05em;
  margin-top: 1px;
  white-space: nowrap;   /* ← prevents "Naturals" from wrapping */
  overflow: visible;     /* ← ensures full text shows */
}

.tagline div {
font-family: 'DM Sans', sans-serif;
font-size: 20px;
padding-left: 5px;
color: #656262;
}

 /* Hero Wrapper */
.zhuri-hero-wrapper {
  width: 100%;
  overflow: hidden;
}

/* Hero Container — positions image and text together */
.zhuri-hero-container {
  position: relative;
  width: 100%;
}

/* Hero Image — full width on all screens */
.zhuri-hero-img {
  width: 100%;
  height: auto;
  display: block;
}

/* DESKTOP text — overlaid on right empty space */
.zhuri-hero-text-desktop {
  position: absolute;
  top:48%;
  right: 4%;
  transform: translateY(-50%);
  width:35%;
  text-align: right;
}

/* TABLET text — overlaid bottom centre with dark fade */
.zhuri-hero-text-tablet {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding:20px 60px;
  background: linear-gradient(transparent, rgba(0,0,0,0.35));
  text-align: left;
  color: #ffffff;
}

/* MOBILE text — below image, not overlaid */
.zhuri-hero-text-mobile {
  padding: 24px 20px;
  text-align: center;
  background-color: #faf8f5;
}

/* Shared text styles */
.zhuri-hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #a0845c;
  margin-bottom: 8px;
}

.zhuri-hero-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 400;
  line-height: 1.5;
  color: #232222;
  margin-bottom: 20px;
}

.zhuri-hero-text-desktop .zhuri-hero-title {
  font-size: 2.8rem;        /* 2rem × 1.5 = 3rem */
  font-weight: 700;       /* lighter weight looks more luxury/editorial */
  line-height: 1.2;       /* tightens line spacing for large text */
  letter-spacing: 0.05em; /* slight spacing adds premium feel */
}

/* Tablet hero text — already white from gradient overlay */
.zhuri-hero-text-tablet .zhuri-hero-title {
  color: #ffffff;
}

/* Mobile hero text — keep DARK since it sits below the image */
.zhuri-hero-text-mobile .zhuri-hero-title {
  color: #2c2c2c;
   font-size: 1.8rem;        /* 2rem × 1.5 = 3rem */
  font-weight: 600;       /* lighter weight looks more luxury/editorial */
}



/* Tablet title overrides to white */
.zhuri-hero-text-tablet .zhuri-hero-title,
.zhuri-hero-text-tablet .zhuri-hero-sub {
  color: #000000;
  font-size: 1.8rem;        /* 2rem × 1.5 = 3rem */
  font-weight: 600;       /* lighter weight looks more luxury/editorial */
  line-height: 1.2;       /* tightens line spacing for large text */
}

/* CTA Button */
.zhuri-hero-btn {
  display: inline-block;
  padding: 8px 32px;
  background-color: transparent;    /* ← changed from #a0845c */
  color: #ffffff;                   /* ← keep white for hero overlay */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1.5px solid #ffffff;        /* ← thin white border on hero */
  cursor: pointer;
  transition: background-color 0.3s ease, 
  border-color 0.3s ease;  /* ← added border to transition */
}

.zhuri-hero-btn:hover {
  background-color: rgba(255,255,255,0.15);  /* ← subtle white fill on hover */
  border-color: #ffffff;

}
.zhuri-hero-text-mobile .zhuri-hero-btn {
  color: #2c2c2c;              /* ← dark text on light background */
  border: 1px solid #2c2c2c;  /* ← thin black border */
}

.zhuri-hero-text-mobile .zhuri-hero-btn:hover {
  background-color: #757372;
  color: #ffffff;
}
.mySlides {display: none;
	
  }

  .SlidesCol div{
	padding: 30px;
}



.Production {display: none;
  }


.skintype div {
  font-family: 'DM Sans', sans-serif, cursive;
	color:#000000;
	font-size:20px;
	padding: 10px;
}

.skintype p {
	position: absolute; 
	bottom: 2px; 
	left: 143px; 
	text-decoration: none; 
	font-size: 16px;
	color: #ffffff;
}


h1{color:rgb(255, 255, 255);
   letter-spacing: 3px;
  font-weight: 900;
}

h2{color:rgb(255, 255, 255);  letter-spacing: 2px;
}
h3{ color:rgb(58, 59, 57);
	font-weight: 700;
}

h4 {color:rgb(255, 255,255);
}

.MyFont{color:#FFFFFF;
}

/* Navbar links keep the warm beige hover color */
.navbar-bar a:link,
.navbar-bar a:visited {
  color: #ffffff;
}
.navbar-bar a:hover {
  color: #C4B69C;
}


.w3-col {
border: none;
}
 .learn-more-btn {
    position: absolute;
    bottom: 8px; /* Adjust as needed */
    right: 8px; /* Adjust as needed */
    padding: 6px 12px; /* Controls button size */
    font-size: 12px; /* Makes text small but readable */
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    z-index: 1; /* Ensures it's on top of the image */
  }

  .learn-more-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }

     /* Custom styles to ensure consistent video display */
    .video-slider {
      /* Set a fixed height for the entire video slider area */
      height: 400px; /* Adjust this value as needed to fit well within your layout */
      width: 66.666%; /* Make the slider fill two-thirds of the viewport/parent */
      max-width: 1200px; /* Optional cap to prevent excessive width on very large screens */
      position: relative; /* Necessary for absolute positioning of slides */
      overflow: hidden; /* Hides any content that goes beyond this height */
      border-radius: 8px; /* Added rounded corners for aesthetics */
      margin: 0 auto; /* Center the slider within its parent */
    }

    /* The 'Production' class is used by your JavaScript for display toggling */
    .Production {
        /* Each video slide should take the full dimensions of its parent slider */
        width: 100%;
        height: 100%;
        position: absolute; /* Allows slides to overlap for transitioning */
        top: 0;
        left: 0;
        display: none; /* Hidden by default, JavaScript will show the active one */
        justify-content: center; /* Center video horizontally */
        align-items: center; /* Center video vertically */
        background-color: #ffffff; /* Black background for letterboxing if object-fit: contain */
        transition: opacity 0.5s ease-in-out; /* Smooth transition for slide changes */
    }

  

    /* Style for the video element itself */
    .Production video {
        /* Make the video fill its container while maintaining aspect ratio */
        width: 100%;
        height: 100%;
        object-fit: contain; /* Ensures the entire video is visible, adds letterboxing if aspect ratios differ */
        display: block; /* Removes any extra space below the video */
        border-radius: 6px; /* Rounded corners for the video player */
    }

    /* Adjust positioning of titles to ensure they are visible over the video */
    .Production .w3-display-topleft,
    .Production .w3-display-topright {
        z-index: 10; /* Ensure titles are on top of the video */
        border-radius: 4px; /* Rounded corners for title boxes */
    }

    /* Style the navigation buttons */
    .video-slider .w3-button {
        background-color: rgba(0, 0, 0, 0.2); /* Semi-transparent background */
        color: white;
        border: none;
        padding: 12px 16px;
        cursor: pointer;
        border-radius: 50%; /* Make buttons circular */
        font-size: 24px;
        z-index: 15; /* Ensure buttons are above titles and videos */
        transition: background-color 0.3s ease;
    }

    .video-slider .w3-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

	.infographic {
  display: grid;
  grid-template-columns: 500px 500px;
  grid-template-rows: 300px 300px;
  row-gap: 30px;
  column-gap: 30px;
  justify-content: center;
  
}


.logo {
	 background-image: url('index_files/Zlogo2.jpg');
	height: 50px;
	width: 50px; 
	z-index: 1;
}

.Blog {
	background-image: url(index_files/ZHURi_Blog.png);
	background-size: cover; /* Ensures the image covers the entire element */
	
	

}
.Blog div {
	font-size: 3em;
	color: #ffffff;
	position: absolute;
	left: 100px;
}

.Clean {
  display: grid;
  grid-template-columns: 1fr; /* single column containing the videos */
  grid-auto-rows: auto;
  align-items: center;
  justify-items: center;
  row-gap: 40px;
  width: 100%;
  max-width: 1200px; /* constrain overall width */
  margin: 0 auto; /* center the grid on the page */
}

  .bestsellers  {
  width: 100%;
  margin: 25px;
  }


/* Push slideshow buttons to the bottom on mobile screens */
@media (max-width: 768px) {
  .slider-nav-btn {
    top: auto !important;          /* Overrides the w3-display top 50% rule */
    bottom: 40px !important;       /* Pins them 40px from the bottom (above your tagline) */
    transform: none !important;    /* Overrides the w3-display centering shift */
    padding: 8px 16px !important;  /* Makes the buttons slightly smaller for mobile */
  }
  
  .w3-display-left.slider-nav-btn {
    left: 10px !important;         /* Neatly spaces it from the left edge */
  }
  
  .w3-display-right.slider-nav-btn {
    right: 10px !important;        /* Neatly spaces it from the right edge */
  }
}


/* ============================================================
   SKIN TYPE MODALS — Hydrating / Sensitive / Actives
   ============================================================ */

/* Widen the modal content box */
.skintype-modal .modal-inner {
  width: min(860px, 96vw);
  border-radius: 0px;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  background: #fff;
}

/* ── Header banner ── */
.skintype-modal .modal-banner {
  padding: 28px 32px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}
.skintype-modal .modal-banner img.banner-icon {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}
.skintype-modal .modal-banner .banner-text h2 {
  margin: 0 0 4px;
  font-size: 1.45em;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #595858;
}
.skintype-modal .modal-banner .banner-text p {
  margin: 0;
  font-size: 0.9em;
  opacity: 0.88;
  max-width: 480px;
  line-height: 1.5;
  color:#1a1a1a;
  text-align: left;
}
.skintype-modal .close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255, 255, 255, 0.25);
  border: 3px solid #000;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.3em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  color: #565252;
  line-height: 1;
}
.skintype-modal .close-btn:hover {
  background: rgba(220, 0, 0, 0.6);
}

/* ── Ingredient pill strip ── */
.skintype-modal .ingredient-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 28px;
  background: #f9f9f6;
  border-bottom: 1px solid #eee;
}
.skintype-modal .ingredient-strip span {
  font-size: 0.72em;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 5px 14px;
  border-radius: 20px;
  background: #fff;
  border: 1.5px solid #ddd;
  color: #2c2c2c;
  text-transform: uppercase;
}

/* ── Section label ── */
.skintype-modal .section-label {
  padding: 10px 18px 6px;
  font-size: 0.7em;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2c2c2c;
}

/* ── Product card grid ── */
.skintype-modal .product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 10px 10px;
}
@media (max-width: 600px) {
  .skintype-modal .product-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


/* ── skintype-modal mobile responsiveness ── */
@media (max-width: 480px) {
  .skintype-modal .modal-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 10px;
  }
  .skintype-modal .modal-banner img.banner-icon {
    width: 52px;
    height: 52px;
  }
  .skintype-modal .modal-banner .banner-text h2 {
    font-size: 1.1em;
  }
  .skintype-modal .modal-banner .banner-text p {
    font-size: 0.82em;
   
  }
  .skintype-modal .ingredient-strip {
    padding: 10px 14px;
  }
  .skintype-modal .section-label {
    padding: 10px 14px 4px;
  }
  .skintype-modal .modal-footer-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px;
  }
  .skintype-modal .footer-cta {
    text-align: center;
  }
}

/* ── Individual product card ── */
.skintype-modal .product-card {
  border-radius: 14px;
  border: 1.5px solid #ececec;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.skintype-modal .product-card:hover {
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.11);
  transform: translateY(-3px);
}
.skintype-modal .product-card .card-img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  background: #ffffff;
  padding: 6px;
}
.skintype-modal .product-card .card-body {
  padding: 5px 5px 5px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.skintype-modal .product-card .card-brand {
  font-size: 0.65em;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.skintype-modal .product-card .card-name {
  font-size: 1em;
  font-weight: 600;
  line-height: 1;
  padding: 10px 10px;
  color: #222;
  margin-bottom:8px;
}
.skintype-modal .product-card .card-Description {
  font-size: 0.9em;
  font-weight:300;
  padding: 8px 8px;
  color: #616161;
  margin-bottom: 25px;
}
.skintype-modal .product-card .card-btn {
  display: block;
  width: 60%;
   margin-top: auto;      /* ← pushes to bottom */
  margin-left: auto;     /* ← centres horizontally */
  margin-right: auto;    /* ← centres horizontally */
  text-align: center;
  padding: 5px 10px;
  border-radius: 0px;
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 1px solid #1a1a1a;
  transition: opacity 0.15s;
  text-decoration: none;
  color: #242323;
}
.skintype-modal .product-card .card-btn:hover {
  opacity: 0.82;
  color: #ffcc00;
}

/* ── Footer CTA bar ── */
.skintype-modal .modal-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: #f4f4f0;
  border-top: 1px solid #e8e8e8;
  gap: 12px;
  flex-wrap: wrap;
}
.skintype-modal .modal-footer-bar .footer-note {
  font-size: 0.78em;
  color: #888;
}
.skintype-modal .footer-cta {
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: opacity 0.15s;
  text-decoration: none;
  display: inline-block;
  color: #fff;
}
.skintype-modal .footer-cta:hover {
  opacity: 0.85;
  color: #fff;
}




/* ══════════════════════════════════════════
   BEST SELLERS SECTION (moved from HTML)
   ══════════════════════════════════════════ */
.bs-section { max-width:1100px; margin:0 auto; padding:56px 24px 64px; }
.bs-header { text-align:center; margin-bottom:40px; }
.bs-header .bs-eyebrow { display:inline-block; font-size:.7em; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:#2bbbac; margin-bottom:10px; }
.bs-header p { font-size:.95em; color:#777; max-width:480px; margin:0 auto; line-height:1.6; text-align:center; }
.bs-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
@media(max-width:640px){ .bs-grid{grid-template-columns:1fr;gap:16px;} }
.bs-card { background:#fff; border-radius:18px; border:1.5px solid #ececec; overflow:hidden; display:flex; flex-direction:row; cursor:pointer; transition:box-shadow .25s,transform .25s; position:relative; }
.bs-card:hover { box-shadow:0 10px 32px rgba(0,0,0,.10); transform:translateY(-4px); }
.bs-badge { position:absolute; top:14px; left:14px; background:#1a1a1a; color:#fff; font-size:.6em; font-weight:800; letter-spacing:.12em; text-transform:uppercase; padding:4px 10px; border-radius:20px; z-index:2; }
.bs-card .bs-img-wrap { width:170px; min-width:170px; background:#ffffff; display:flex; align-items:center; justify-content:center; padding:16px; flex-shrink:0; }
.bs-card .bs-img-wrap img { width:100%; height:160px; object-fit:contain; }
@media(max-width:480px){ .bs-card .bs-img-wrap{width:120px;min-width:120px;} }
.bs-card .bs-body { padding:20px 18px; display:flex; flex-direction:column; justify-content:center; flex:1; }
.bs-card .bs-brand { font-size:.65em; font-weight:800; letter-spacing:.1em; text-transform:uppercase; color:#2bbbac; margin-bottom:5px; }
.bs-card .bs-name { font-size:.95em; font-weight:700; color:#1a1a1a; line-height:1.35; margin-bottom:8px; }
.bs-card .bs-desc { font-size:.78em; color:#888; line-height:1.5; margin-bottom:14px; }
.bs-card .bs-footer { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.bs-card .bs-price { font-size:1em; font-weight:800; color:#1a1a1a; }
.bs-card .bs-buy-btn { padding:8px 18px; border-radius:10px; background:#1a1a1a; color:#fff; font-size:.75em; font-weight:700; letter-spacing:.05em; border:none; cursor:pointer; transition:background .2s; text-transform:uppercase; }
.bs-card .bs-buy-btn:hover { background:#2bbbac; }
.bs-viewall { text-align:center; margin-top:36px; }
.bs-viewall a { display:inline-block; padding:13px 36px; border-radius:12px; border:2px solid #1a1a1a; font-size:.82em; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:#1a1a1a; text-decoration:none; transition:background .2s,color .2s; }
.bs-viewall a:hover { background:#1a1a1a; color:#fff; }



/* ══════════════════════════════════════════
   PAGE LAYOUT
   ══════════════════════════════════════════ */
.page-content { width: 100%; max-width: 100%; margin: 0; padding: 0; }
.home-section { background-color: #ffffff; height: 550px; }


/* ======= CATEGORY CAROUSEL ======= */
.zhuri-carousel-section {
  padding: 64px 5px;
  background-color: #faf8f5;
  text-align: center;
}

.zhuri-carousel-sub {
  color: #888;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}

/* Wrapper — remove overflow hidden */
.zhuri-carousel-wrapper {
  position: relative;
  display: block; /* Changed from flex to prevent buttons from taking up space */
  max-width: 1400px;
  margin: 0 auto;
}

/* Ensure the container doesn't clip the shadow of the peeking card */
.zhuri-carousel-track-container {
  overflow: hidden;
  width: 100%; /* Take up all available space */
}

/* Update the Track padding to allow space on the right for the peek */
.zhuri-carousel-track {
  display: flex;
  gap: 20px;
  padding: 10px 20px; /* Changed from 60px to 20px to bring cards closer to the left edge */
  transition: transform 0.4s ease;
}



/* Card */
.zhuri-carousel-card {
  min-width: 260px;
  background: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.zhuri-carousel-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.zhuri-carousel-card a {
  text-decoration: none;
  color: inherit;
}

.zhuri-carousel-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: #f5f3f0;
}

.zhuri-carousel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.zhuri-carousel-card:hover .zhuri-carousel-img-wrap img {
  transform: scale(1.04);
}

.zhuri-carousel-body {
  padding: 16px;
  text-align: left;
}

.zhuri-carousel-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #2c2c2c;
  margin-bottom: 4px;
}

.zhuri-carousel-tagline {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
}

/* Arrows */
.zhuri-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Ensure they stay on top of images */
  background: rgba(255, 255, 255, 0.8); /* Semi-transparent so they don't block too much */
  border: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.zhuri-carousel-btn:hover {
  background: #2c2c2c;
  color: #ffffff;
}

/* 4. Position Left and Right specifically */
.zhuri-carousel-prev {
  left: 10px;
}

.zhuri-carousel-next {
  right: 10px; /* This was likely the "wall" blocking your peek */
}
/* Dots */
.zhuri-carousel-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.zhuri-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: background 0.3s ease;
}

.zhuri-carousel-dot.active {
  background: #2c2c2c;
}

/* Mobile — full width cards */
@media (max-width: 600px) {
  .zhuri-carousel-card {
    min-width: 80vw;
  }
}

/* ══════════════════════════════════════════
   TAGLINE
   ══════════════════════════════════════════ */
.tagline-main { padding: 55px 0 30px; font-weight: 700; font-size: 2.5em; letter-spacing: 1.5px; opacity: 0.9; }
.hydration-icon { height: 1.5em; width: auto; vertical-align: middle; }
.hydration-icon-lg { height: 1.8em; width: auto; vertical-align: middle; }
.tagline-sub { display: block; font-size: 0.55em; margin-top: -0.4em; }

/* ══════════════════════════════════════════
   SKIN CONCERNS SECTION
   ══════════════════════════════════════════ */
.skintype-container { max-width: 1200px; }
.pos-relative { position: relative; }
.skintype-img-sm { width: 72%; }
.skintype-img { width: 80%; }
.skintype .zhuri-skintype-label {
  font-size: 1.25rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #5a5959;
  margin-bottom: 4px;
}
.skintype .zhuri-skintype-tagline {
  font-size: 1rem;
  color: #4d4c4c;
  font-weight: 300;
}

.skintype .zhuri-skintype-btn {
  display: inline-block;
  padding: 5px 20px;
  
  /* Fix: Separate these and add a bottom value */
  position: absolute; 
  left: 10px;
  Top: 30px; 
  


  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black looks great over images */
  color: #ffffff;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 550;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}


/* ══════════════════════════════════════════
   CONTACT & FOOTER
   ══════════════════════════════════════════ */
.contact-section { padding: 64px 16px; line-height: 30px; }
.text-brand { color: #a2d13e; }
.modal-logo { width: 20%; }
.footer-copyright { font-size: 13px; }

/* ══════════════════════════════════════════
   SHOP FOOTER
   ══════════════════════════════════════════ */
.shop-footer {
  background-color: #1a1a1a;
  color: #ffffff;
  text-align: center;
  padding: 40px 24px;
  margin-top: 40px;
}

.shop-footer h3 {
  color: #2bbbac;
  font-size: 1.4em;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.shop-footer p {
  color: rgba(255, 255, 255, 0.8);
  margin: 4px 0;
}

.shop-footer a {
  color: #2bbbac;
}

.shop-footer a:hover {
  color: #ffffff;
}

.footer-icons {
  margin: 16px 0;
  font-size: 1.5em;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer-icons a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}

.footer-icons a:hover {
  color: #2bbbac;
}


/* ============================================
   ZHURI FOOTER — Fenty-inspired
   ============================================ */

.zhuri-sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* ---------- Newsletter band ---------- */
.zhuri-newsletter {
  background: #f3ede4;            /* warm cream — botanical feel */
  padding: 64px 24px;
  font-family: 'DM Sans', sans-serif;
  border-top: 1px solid #e6dccc;
}
.zhuri-newsletter-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.zhuri-newsletter-eyebrow {
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8a7a5e;
  margin: 0 0 12px;
  font-weight: 500;
}
.zhuri-newsletter-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.15;
}
.zhuri-newsletter-sub {
  font-size: 15px;
  color: #4a4a4a;
  margin: 0 0 28px;
  line-height: 1.6;
}
.zhuri-newsletter-sub strong { color: #1a1a1a; }

.zhuri-newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto 16px;
  background: #fff;
  border: 1px solid #1a1a1a;
  border-radius: 4px;
  overflow: hidden;
}
.zhuri-newsletter-form input {
  flex: 1;
  border: none;
  padding: 16px 20px;
  font-size: 14px;
  font-family: inherit;
  background: transparent;
  outline: none;
  color: #1a1a1a;
}
.zhuri-newsletter-form input::placeholder { color: #999; }
.zhuri-newsletter-form button {
  background: #1a1a1a;
  color: #fff;
  border: none;
  padding: 0 28px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s ease;
  font-family: inherit;
}
.zhuri-newsletter-form button:hover { background: #8a7a5e; }
.zhuri-newsletter-form button i { margin-left: 6px; }

.zhuri-newsletter-fineprint {
  font-size: 11px;
  color: #8a7a5e;
  line-height: 1.6;
  margin: 16px 0 0;
}
.zhuri-newsletter-fineprint a {
  color: #1a1a1a;
  text-decoration: underline;
}

/* ---------- Footer body ---------- */
.zhuri-footer {
  background: #1a1a1a;
  color: #d4cfc4;
  font-family: 'DM Sans', sans-serif;
  padding: 64px 32px 24px;
  font-size: 14px;
}
.zhuri-footer a {
  color: #d4cfc4;
  text-decoration: none;
  transition: color 0.2s ease;
}
.zhuri-footer a:hover { color: #fff; }

/* ---------- Footer grid ---------- */
.zhuri-footer-grid {
  max-width: 1400px;
  margin: 0 auto 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1.1fr;
  gap: 48px;
}

.zhuri-footer-brand .zhuri-wordmark {
  display: inline-block;
  margin-bottom: 20px;
}
.zhuri-footer-mission {
  font-size: 14px;
  line-height: 1.7;
  color: #b8b0a3;
  margin: 0 0 24px;
  max-width: 360px;
}
.zhuri-footer-badges {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.zhuri-footer-badges li {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  color: #b8b0a3;
}
.zhuri-footer-badges i {
  margin-right: 6px;
  color: #a2d13e;
}

.zhuri-footer-col h4,
.zhuri-footer-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
}
.zhuri-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.zhuri-footer-col li {
  margin-bottom: 12px;
  line-height: 1.5;
}
.zhuri-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.zhuri-footer-contact i {
  color: #a2d13e;
  margin-top: 4px;
  width: 14px;
  flex-shrink: 0;
}

/* ---------- Social + payment rail ---------- */
.zhuri-footer-rail {
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 0;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.zhuri-footer-social,
.zhuri-footer-payments {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.zhuri-footer-social-label,
.zhuri-footer-pay-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #8a7a5e;
  margin-right: 6px;
}
.zhuri-footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid #3a3a3a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.25s ease;
}
.zhuri-footer-social a:hover {
  background: #a2d13e;
  border-color: #a2d13e;
  color: #1a1a1a;
  transform: translateY(-2px);
}

.zhuri-pay-pill {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid #3a3a3a;
  border-radius: 4px;
  color: #b8b0a3;
}
.zhuri-pay-mpesa {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
  font-weight: 600;
}

/* ---------- Legal strip ---------- */
.zhuri-footer-legal {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.zhuri-footer-copy {
  font-size: 12px;
  color: #8a7a5e;
  margin: 0;
}
.zhuri-footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.zhuri-footer-legal-links li { line-height: 1; }
.zhuri-footer-legal-links a {
  font-size: 12px;
  color: #8a7a5e;
}
.zhuri-footer-legal-links a:hover { color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .zhuri-footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .zhuri-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .zhuri-newsletter { padding: 48px 20px; }
  .zhuri-newsletter-form {
    flex-direction: column;
    background: transparent;
    border: none;
  }
  .zhuri-newsletter-form input {
    border: 1px solid #1a1a1a;
    border-radius: 4px;
    margin-bottom: 10px;
    background: #fff;
  }
  .zhuri-newsletter-form button {
    border-radius: 4px;
    padding: 16px;
  }

  .zhuri-footer { padding: 48px 20px 20px; }
  .zhuri-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .zhuri-footer-rail {
    flex-direction: column;
    align-items: flex-start;
  }
  .zhuri-footer-legal {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .zhuri-footer-legal-links { gap: 14px; }
}
/* ════════════════════════════════════════════
   ZHURI FAMILY HUB — Three-State Section
   ════════════════════════════════════════════ */

/* ── Preview-only state switcher (delete in production) ── */
.state-switcher {
  position: sticky;
  top: 0;
  background: #1a1a1a;
  color: white;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  z-index: 100;
  border-bottom: 2px solid var(--teal);
}
.state-switcher span {
  opacity: 0.7;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  margin-right: 6px;
}
.state-switcher button {
  background: transparent;
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.75rem;
  transition: all 0.2s;
}
.state-switcher button:hover { border-color: var(--teal); }
.state-switcher button.active { background: var(--teal); border-color: var(--teal); }
.state-switcher .note { margin-left: auto; opacity: 0.5; font-style: italic; }
/* ── Section base container ── */
.zhuri-family-section {
  padding: 60px 16px 70px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ── Header block ── */
.zhuri-family-header {
  text-align: center;
  margin-bottom: 14px;
}
/* ── Section divider line above the section ── */
.zhuri-family-section::before {
  content: "";
  display: block;
  width: 50%;
  border-top: 1px solid #d4d4d4;
  margin: 0 auto 40px;
}

/* ── Family eyebrow with decorative lines ── */
.zhuri-family-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.zhuri-family-eyebrow::before,
.zhuri-family-eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--teal);
  opacity: 0.5;
}

/* ── Section title H2 styling override ── */
.zhuri-family-section h2 {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-dark);
  margin: 0 0 10px;
  text-transform: uppercase;
}

/* ── Subtitle ── */
.zhuri-family-sub {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  margin: 0 auto;
  max-width: 600px;
  line-height: 1.4;
}

/* ── Cycle progress indicator ── */
.zhuri-family-cycle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 36px 0 32px;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
}

.cycle-step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  position: relative;
  transition: color 0.3s;
}

.cycle-step .cycle-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd;
  border: 2px solid #ddd;
  transition: all 0.3s;
}

.cycle-step.active { color: var(--teal-dark); }
.cycle-step.active .cycle-dot {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(74, 158, 149, 0.15);
}

.cycle-step.complete .cycle-dot {
  background: var(--teal);
  border-color: var(--teal);
}

.cycle-connector {
  width: 36px;
  height: 1px;
  background: #ddd;
}

@media (max-width: 600px) {
  .cycle-step { padding: 0 8px; font-size: 0.6rem; }
  .cycle-connector { width: 18px; }
}

/* ── Two-card grid with arrow ── */
.zhuri-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
}

@media (max-width: 768px) {
  .zhuri-family-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.zhuri-family-grid::after {
  content: "→";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.4rem;
  color: var(--teal);
  background: white;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--teal-soft, #e8f4f3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  font-family: var(--font-body);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

@media (max-width: 768px) {
  .zhuri-family-grid::after {
    content: "↓";
    top: auto;
    bottom: 50%;
    transform: translate(-50%, 50%);
  }
}

/* ── Card base ── */
.zfh-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.zfh-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}

/* ── Card tags (state markers) ── */
.zfh-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 100px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.zfh-card-tag--live {
  background: #1a1a1a;
  color: #ffffff;
}

.zfh-card-tag--live::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse-live 1.6s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.zfh-card-tag--results {
  background: #c89456;
  color: #ffffff;
}

.zfh-card-tag--research {
  background: #e8f4f3;
  color: var(--teal-dark);
}

.zfh-card-tag--next {
  background: #f5f3f0;
  color: var(--text-mid);
  border: 1px dashed #ccc;
}

/* ── Card body ── */
.zfh-card-question {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.3;
  margin: 0 0 14px;
}

.zfh-card-meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}

.zfh-card-meta .dot-sep {
  width: 3px;
  height: 3px;
  background: var(--text-light);
  border-radius: 50%;
  opacity: 0.5;
}

/* ── Poll options preview ── */
.zfh-options-preview {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
}

.zfh-option-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #faf8f5;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  transition: background 0.2s;
}

.zfh-option-row:hover { background: #e8f4f3; }

.zfh-option-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal);
  width: 16px;
}

/* ── Results bars ── */
.zfh-results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.zfh-result-row {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.zfh-result-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-mid);
}

.zfh-result-label-name {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zfh-result-label-pct {
  font-weight: 600;
  color: var(--text-dark);
  font-feature-settings: 'tnum';
}

.zfh-result-track {
  height: 8px;
  background: var(--bg-light);
  border-radius: 4px;
  overflow: hidden;
}

.zfh-result-bar {
  height: 100%;
  border-radius: 4px;
  background: var(--teal);
  transition: width 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.zfh-result-bar--winner { background: #c89456; }

.zfh-result-row--winner .zfh-result-label-name::after {
  content: "★";
  color: #c89456;
  margin-left: 4px;
  font-size: 0.85rem;
}

/* ── Card footer (CTA row) ── */
.zfh-card-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.zfh-vote-count {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-light);
}

.zfh-vote-count strong {
  color: var(--text-dark);
  font-weight: 600;
  font-feature-settings: 'tnum';
}

.zfh-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--text-dark);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.zfh-cta:hover {
  background: var(--teal);
  transform: translateY(-1px);
  color: #ffffff;
}

.zfh-cta--secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1.5px solid var(--text-dark);
}

.zfh-cta--secondary:hover {
  background: var(--text-dark);
  color: #ffffff;
}

.zfh-cta i { font-size: 0.85rem; }

/* ── Article-specific (right card) ── */
.zfh-article-headline {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.25;
  margin: 0 0 12px;
}

.zfh-article-excerpt {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 18px;
  flex-grow: 1;
  text-align: left;
}

.zfh-article-excerpt em {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 600;
}

/* ── Act 3 winner spotlight callout ── */
.zfh-winner-callout {
  background: linear-gradient(135deg, #faf8f5 0%, #fff 100%);
  border-left: 3px solid #c89456;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 18px;
}

.zfh-winner-callout-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c89456;
  margin-bottom: 4px;
}

.zfh-winner-callout-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.3;
}

.zfh-winner-callout-text strong {
  color: #c89456;
  font-weight: 700;
}

/* ── Closing thesis line ── */
.zfh-thesis {
  text-align: center;
  margin-top: 36px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-light);
  letter-spacing: 0.02em;
}

.zfh-thesis strong {
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 600;
}

/* ── State block visibility (the magic switch) ── */
.state-block { display: none; }
.state-block.active { display: contents; }
/* ── Optional editorial image at top of article cards ── */
.zfh-card-image {
  margin: -28px -26px 16px;
  height: 140px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* Mobile — slightly shorter to preserve content visibility */
@media (max-width: 600px) {
  .zfh-card-image { height: 110px; }
}
/* =========================================
   Mobile Menu Fixes 
   ========================================= */

.nav-mobile-menu {
  margin-top: 65px !important; /* Pushes menu down below the 65px main navbar */
}

/* Force mobile links to be white and readable */
.nav-mobile-menu a {
  color: #ffffff !important; 
  font-weight: 500;
  text-decoration: none;
}

/* Add the Zhuri gold color when someone taps a link */
.nav-mobile-menu a:hover, 
.nav-mobile-menu a:active {
  background-color: #222222 !important;
  color: #f2c78a !important; 
}