:root{
      --primary: #23523e; /* theme green */
      --accent: #7bd38b; /* light green */
      --offwhite: #f7fdf9; /* off white */
      --text-dark: #123226; /* text dark */
      --hover: #3c7a60; /* hover highlight */

      --max-width: 1200px;
    }

/* -------------------------------------------
   TRUE DARK MODE — OPTION A
------------------------------------------- */
:root.dark {
  --primary: #7bd38b; 
  --accent: #9ff0b0;
  --offwhite: #0d1a16; 
  --text-dark: #e8fff2; 
  --hover: #94e7a8;

  --surface-1: #0f1f19;
  --surface-2: #152822;
  --surface-card: #12241f;
}

:root {
  --text-muted: rgba(18,50,38,0.7);
}

.dark {
  --text-muted: rgba(255,255,255,0.7);
}

    * {
      box-sizing:border-box;
    }

    html,body{
      height:100%;
    }

    body{
      margin:0;
      font-family:Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
      color:var(--text-dark);
      background:var(--offwhite);
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
      line-height:1.45;
    }

    /* Smooth theme transition */
    :root {
      --transition-speed: 0.3s;
    }

    html {
      transition: background-color var(--transition-speed), color var(--transition-speed);
    }

    /* Icon switch animation (optional but looks nice) */
    .theme-toggle {
      transition: opacity 0.2s ease-in-out;
    }

    a{
      color:inherit;
    }

    /* HEADER */
    .site-header{
      position:fixed;
      left:0;right:0;top:0;
      background:rgba(247,253,249,0.9);
      backdrop-filter: blur(6px);
      border-bottom:1px solid rgba(18,50,38,0.05);
      z-index:1000;
    }

    .container{
      width:92%;
      max-width:var(--max-width);
      margin:0 auto;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:14px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      text-decoration:none;
    }

    .brand img{
      height:56px;
      width:auto;
      display:block;
    }

    nav.primary{
      display:flex;
      gap:28px;
      align-items:center;
    }

    nav.primary a{
      font-weight:600;
      font-size:14px;
      color:var(--text-dark);
      text-decoration:none;
      padding:6px 4px;
      border-radius:6px;
      transition:all .18s ease;
    }

    nav.primary a:hover{
      color:var(--primary);
    }

    nav.primary a {
      position: relative;
      font-weight: 600;
      font-size: 14px;
      color: var(--text-dark);
      text-decoration: none;
      padding: 6px 4px;
      border-radius: 6px;
      transition: color .18s ease;
    }

    /* The animated underline */
    nav.primary a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0%;
      height: 2px;
      background: var(--primary);
      border-radius: 2px;
      transition: width .25s ease;
    }

    /* Hover state */
    nav.primary a:hover {
      color: var(--primary);
    }

    nav.primary a:hover::after {
      width: 100%;
    }


    .cta{
      background:var(--primary);
      color:var(--offwhite);
      padding:10px 16px;
      border-radius:10px;
      font-weight:700;
      font-size:14px;
      text-decoration:none;
      box-shadow:0 6px 18px rgba(35,82,62,0.12);
      transition:transform .12s ease,box-shadow .12s ease;
    }

    .cta:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 28px rgba(35,82,62,0.18);
    }

    /* hamburger */
    .hamburger{
      display:none;
      width:46px;
      height:44px;
      align-items:center;
      justify-content:center;
      border-radius:10px;
    }
    .hamburger button{
      appearance:none;
      border:0;
      background:transparent;
      display:flex;
      flex-direction:column;
      gap:6px;
      padding:8px;cursor:pointer;
    }

    .hamburger span{
      display:block;
      width:22px;
      height:2px;
      background:var(--text-dark);
      border-radius:2px;
      transition:all .25s ease;
    }

    .hamburger.open span:nth-child(1){
      transform:translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2){
      opacity:0;
    }

    .hamburger.open span:nth-child(3){
      transform:translateY(-7px) rotate(-45deg);
    }

/* ---------------------------
   Header cart / poof animation
   --------------------------- */
.header-cta-wrapper {
  display:flex;
  gap:12px;
  align-items:center;
  position:relative;
}

/* Keep .cta styling for header-buy (so your existing look stays) */
.header-buy {
  /* no changes: inherits .cta */
  will-change: transform, opacity;
}

/* Cart button that takes the same visual space as .cta */
.header-cart {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:92px;           /* roughly same space as .cta */
  padding:10px 16px;
  border-radius:10px;
  background:var(--primary);
  color:var(--offwhite);
  border:0;
  cursor:pointer;
  font-weight:700;
  font-size:14px;
  box-shadow:0 6px 18px rgba(35,82,62,0.12);
  transition:transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  position:relative;
}

/* Slight hover */
.header-cart:hover { transform: translateY(-2px); box-shadow:0 10px 28px rgba(35,82,62,0.18); }

/* cart icon inherits color */
.header-cart .cart-icon { display:block; color: currentColor; }

/* badge (red circle) for unique item count */
.cart-badge {
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:20px;
  height:20px;
  padding:0 6px;
  border-radius:999px;
  background:#e14b3b;              /* badge red */
  color:white;
  font-size:12px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 8px rgba(0,0,0,0.12);
  transform-origin:center;
}

/* hide badge when zero (JS will toggle display) */
.cart-badge.hidden { display:none; }

/* Poof animations */
@keyframes poofIn {
  0% { transform: scale(0.55); opacity: 0; filter: blur(2px); }
  60% { transform: scale(1.05); opacity: 1; filter: blur(0); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes poofOut {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(0.6); opacity: 0; filter: blur(2px); }
}

.poof-in {
  animation: poofIn .28s cubic-bezier(.2,.9,.2,1) both;
}
.poof-out {
  animation: poofOut .22s cubic-bezier(.2,.9,.2,1) both;
}

/* ensure dark mode contrast — uses your CSS vars */
.dark .header-cart { background: var(--primary); color: var(--text-dark); }
.dark .cart-badge { box-shadow:0 4px 8px rgba(0,0,0,0.25); }

/* Keep layout consistent at small widths */
@media (max-width:760px) {
  .header-cart, .header-buy { padding:8px 12px; min-width:72px; font-size:13px; }
  .cart-badge { top:-4px; right:-4px; min-width:18px; height:18px; font-size:11px; }
}


    /* HERO */
    .hero{
      padding-top:110px; /* header height reserve */
      display:grid;
      place-items:center;
      min-height:72vh;
      background:linear-gradient(180deg, rgba(35,82,62,0.04), rgba(35,82,62,0.02));
    }

    .hero-inner{
      width:92%;
      max-width:var(--max-width);
      display:grid;
      grid-template-columns:1fr 420px;
      gap:48px;align-items:center;
    }

    .hero-copy h1{
      font-size:44px;
      margin:0 0 12px;
      line-height:1.02;
      color:var(--text-dark);
      font-weight:700;
    }

    .hero-copy p{
      margin:0 0 22px;
      color:rgba(18,50,38,0.82);
      font-size:16px;
    }

    .hero-actions{
      display:flex;
      gap:12px;
      align-items:center;
    }

    a.btn-outline{
      padding:10px 16px;
      border-radius:10px;
      background:transparent;
      font-weight:600;
      text-decoration: none;
    }

    /* Default (light mode) */
      :root {
        --btn-outline-border: rgba(18, 50, 38, 0.4);  /* darker border */
      }

      /* Dark mode */
      :root.dark {
        --btn-outline-border: rgba(255, 255, 255, 0.35); /* lighter border */
      }

      /* Apply to all .btn-outline buttons */
      .btn-outline {
        border: 1.6px solid var(--btn-outline-border);
      }

      /* Light mode */
    :root {
      --btn-outline-text: var(--text-dark);   /* normal text color */
      --btn-outline-bg: transparent;          /* normal background */
      --btn-outline-hover-text: var(--offwhite); /* text becomes light */
      --btn-outline-hover-bg: var(--text-dark);  /* bg becomes dark */
    }

    /* Dark mode */
    :root.dark {
      --btn-outline-text: var(--text-dark); 
      --btn-outline-bg: transparent;

      /* stays bright in dark mode — guaranteed */
      --btn-outline-hover-bg: #ffffff;
      --btn-outline-hover-text: #0d1a16;
    }

    a.btn-outline {
      color: var(--btn-outline-text);
      background-color: var(--btn-outline-bg);
      border: 1.6px solid var(--btn-outline-border);
      transition: 0.25s ease;
    }

    a.btn-outline:hover {
      color: var(--btn-outline-hover-text)  !important;
      background-color: var(--btn-outline-hover-bg) !important;
      border-color: var(--btn-outline-hover-bg) !important;
    }

    .btn-primary{
      padding:10px 18px;
      border-radius:10px;
      background:var(--primary);
      color:var(--offwhite);
      font-weight: 700;
      text-decoration: none;
    }

    .hero-art{
      background:linear-gradient(180deg, rgba(123,211,139,0.12), rgba(35,82,62,0.03));
      border-radius:16px;
      padding:28px;
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:16px;
      box-shadow:0 10px 30px rgba(18,50,38,0.04);
    }

    .bottle{
      width: 100%;
      height:auto;
    }

    .kpi{
      display:flex;
      gap:18px;
      width:100%;
      justify-content:space-between;
    }

    .kpi .item{
      flex:1;
      text-align:center;
    }

    .kpi .value{
      font-weight:700;
      color:var(--primary);
      font-size:20px;
    }

    .kpi .label{
      font-size:12px;
      color:rgba(18,50,38,0.6)
    }


    /* HERO BACKGROUND SLIDER */

    /* ===============================
   TRUE SLIDING BACKGROUND SLIDER
================================*/
    /* HERO BACKGROUND SLIDER — TRUE FULL BACKGROUND COVER */
    
    .hero {
      position: relative;
      overflow: hidden;
    }

    /* Hide slider by default on large screens */
.hero-slider-section {
  display: none;
}

/* Show slider only on screens below 550px */
@media (max-width: 550px) {
  .hero-slider-section {
    display: block;
    width: 100%;
    height: 500px; /* or your preferred height */
    overflow: hidden;
  }
}
.hero-bg-slider {
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

.hero-bg-slider .slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
}

    /* Each slide fills hero fully */

    .hero-bg-slider .slide {
      width: 100%;
      height: 100%;
      object-fit: cover;     /* IMPORTANT — true background effect */
      flex-shrink: 0;        /* IMPORTANT — keeps each slide full width */
    }

    .hero-bg-slider {
      display: flex;
      transition: transform 1s ease-in-out;
    }

    /* Only visible slide */
    .hero-bg-slider .slide.active {
      opacity: 1;
    }

    /* SECTIONS */
    section.content{
      width:92%;
      max-width:var(--max-width);
      margin:48px auto;
      display:grid;
      grid-template-columns:repeat(12,1fr);
      gap:20px;
      align-items:start;
    }

    .about{
      grid-column:1/-1;
      display:flex;
      gap:28px;
      align-items:center
    }

    .about .text{
      flex:1
    }

    .about .cards{
      display:flex;
      gap:16px
    }

    .card{
      background:var(--offwhite);
      border-radius:12px;
      padding:18px;
      box-shadow:0 6px 18px rgba(18,50,38,0.03);
      border:1px solid rgba(35,82,62,0.03)
    }

    .grid-3{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px
    }

    /* MOBILE FIX — stack everything into 1 column */
@media (max-width: 768px) {
  section.content {
    grid-template-columns: 1fr; /* single column */
  }

  /* force all children to take full width */
  section.content > * {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 768px) {

  /* override the inline flex */
  #where > div {
    display: block !important;   /* stack instead of side-by-side */
    text-align: center;
  }

  #where > div > div:last-child {
    margin-top: 16px;             /* spacing under paragraph */
  }
}

    .product-list{
      display:flex;
      gap:18px;
      flex-wrap:wrap
    }

    .product{
      flex:1 1 220px;
      background: var(--offwhite);
      border-radius:12px;
      padding:18px;
      border:1px solid rgba(18,50,38,0.04);
      text-align:center;
    }

    .product img{
      max-width:100%;
      width: 200px;
      object-fit:contain;
    }

    .product h4{
      margin:12px 0 6px
    }

    .product p{
      font-size:13px;
      color:rgba(18,50,38,0.65);
    }

    .cta-strip {
      margin:36px 0;
      padding:28px;
      border-radius:12px;
      background:linear-gradient(90deg, rgba(123,211,139,0.08), rgba(35,82,62,0.03));
      display:flex;
      align-items:center;
      justify-content:space-between;
    }

    /* Responsive layout for newsletter CTA */
    @media (max-width: 762px) {
      .cta-strip {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }

      .cta-strip form {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .cta-strip form input {
        width: 100% !important;
        min-width: 0 !important;
      }

      .cta-strip form button {
        width: 100%;
      }
    }

    @media (max-width: 768px) {
  section.content {
    grid-template-columns: 1fr; /* Single column on small screens */
    text-align: center;
  }

  /* Make both inner divs span the full width */
  section.content > div {
    grid-column: 1 / -1;
  }

  /* Center the button block */
  section.content > div:last-child {
    margin-top: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
}

.icon-wrap {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(123, 211, 139, 0.12);
  border-radius: 12px;

  padding: 10px;
}

.icon-wrap svg {
  width: 100%;
  height: 100%;
}

.icon-wrap img {
  width: 32px;
  height: 32px;
  display: block;
}


    footer.site-footer{
      padding:28px 0;
      background:transparent;
      border-top:1px solid rgba(18,50,38,0.04);
    }
    .footer-inner{
      width:92%;
      max-width:var(--max-width);
      margin:0 auto;
      display:flex;
      justify-content:space-between;
      align-items:center;
      gap:12px;
    }

    .socials{
      display:flex;
      gap:12px;
    }

    .socials a{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      width:40px;
      height:40px;
      border-radius:8px;
      background:transparent;
      border:1px solid rgba(18,50,38,0.06);
    }

    .socials {
  display: flex;
  gap: 12px;
}

.socials a {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #ffffff20;
  transition: 0.3s ease;
}

.socials a svg {
  width: 18px;
  fill: white;
  transition: 0.3s ease;
}

/* Hover effect */
.socials a:hover {
  background: white;
}

.socials a:hover svg {
  fill: #000;
  transform: scale(1.1);
}


    /* small screens */
    @media (max-width:940px){
      .hero-inner{
        grid-template-columns:1fr 320px;
        gap:28px;
      }

      .brand img{
        height:52px;
      }
    }

    @media (max-width:877px){
      nav.primary{
        display:none;
      }

      .hamburger{
        display:block;
      }

      .hero-inner{
        grid-template-columns:1fr;
      }

      .hero-art{
        order:2;
        width:100%;
      }

      .hero-copy{
        order:1;
      }

      .kpi{
        flex-direction:column;
        gap:12px;
      }

      .grid-3{
        grid-template-columns:1fr;
      }
    }

    /* mobile slide menu */
    .mobile-menu{
      position:fixed;
      inset:0;
      left:-100%;
      width:280px;
      background:var(--offwhite);
      box-shadow:8px 0 30px rgba(18,50,38,0.06);
      z-index:1500;
      padding:22px;
      transition:left .32s cubic-bezier(.2,.9,.2,1);
    }

    .mobile-menu.open{
      left:0;
    }

    .mobile-menu .close{
      display:flex;
      justify-content:flex-end;
    }

    .mobile-menu nav{
      display:flex;
      flex-direction:column;
      gap:14px;
      margin-top:12px;
    }

    .mobile-menu a{
      padding:12px;
      border-radius:8px;
      text-decoration: none;
    }


  :root.dark {
  --surface-1: #0f1f19;
  --surface-2: #152822;
  --surface-card: #12241f;
}

/* Dark Mode Overrides */
.dark body {
  background: var(--offwhite);
  color: var(--text-dark);
}

.dark .site-header {
  background: rgba(15, 31, 25, 0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dark nav.primary a {
  color: var(--text-dark);
}
.dark nav.primary a:hover {
  background: rgba(255,255,255,0.08);
}

.dark .cta {
  background: var(--primary);
  color: #0f1f19;
}

.dark .hero {
  background: linear-gradient(180deg, rgba(123,211,139,0.06), rgba(255,255,255,0.02));
}

.dark .hero-art {
  background: var(--surface-1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.dark .card,
.dark .product .sustain-card {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: none;
}

.dark footer.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-inner {
  align-items: flex-start;
}

.footer-contact {
  max-width: 260px;
}

@media(max-width: 780px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-contact {
    width: 100%;
  }

  .socials {
    align-self: flex-start;
  }
}


.dark .socials a {
  border-color: rgba(255,255,255,0.12);
}

/* DEFAULT (LIGHT MODE) — icons dark */
.socials a svg {
  fill: var(--text-dark); /* dark green-ish text color */
  transition: 0.3s ease;
}

/* LIGHT MODE hover */
.socials a:hover {
  background: var(--primary);
}
.socials a:hover svg {
  fill: white;
}

/* DARK MODE — make icons white */
.dark .socials a svg {
  fill: white;
}

/* DARK MODE hover */
.dark .socials a:hover {
  background: white;
}
.dark .socials a:hover svg {
  fill: #000;
}

.theme-toggle {
  background: transparent;
  border: 1px solid rgba(18,50,38,0.15);
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
  transition: 0.2s ease;
}
.dark .theme-toggle {
  border-color: rgba(255,255,255,0.2);
}

/* GLOBAL DARK MODE TEXT OVERRIDE */
.dark p,
.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark small,
.dark a,
.dark li,
.dark div {
  color: var(--text-dark) !important;
}

.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25D366; /* WhatsApp green */
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
  width: 33px;
  height: 33px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

/* --------------------------------------------------
   SECTION BASE
-------------------------------------------------- */
.composition-section {
  position: relative;
  overflow: hidden;
  background: var(--offwhite);
  padding: 100px 20px;
}

/* --------------------------------------------------
   BACKGROUND WAVES
-------------------------------------------------- */
.bg-waves {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("data:image/svg+xml,%3Csvg width='1920' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q480 300 960 200 T1920 200 V400 H0 Z' fill='%237bd38b0d'/%3E%3C/svg%3E");
  background-size: cover;
  opacity: 0.6;
}

.dark .bg-waves {
  background: url("data:image/svg+xml,%3Csvg width='1920' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q480 300 960 200 T1920 200 V400 H0 Z' fill='%239ff0b00d'/%3E%3C/svg%3E");
}

/* Keep content above waves */
.composition-wrapper {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: auto;
  text-align: center;
}

/* --------------------------------------------------
   TITLE
-------------------------------------------------- */
.composition-title {
  font-size: 46px;
  font-weight: 700;
  color: var(--text-dark);
}
.composition-title span {
  color: var(--accent);
}

/* --------------------------------------------------
   BUTTON
-------------------------------------------------- */
.whats-inside-btn {
  margin-top: 12px;
  padding: 12px 30px;
  background: linear-gradient(90deg, #ff3fa5, #5063ff);
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.25s ease;
}
.whats-inside-btn:hover {
  transform: scale(1.06);
}

/* --------------------------------------------------
   GRID
-------------------------------------------------- */
.composition-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

/* Bottle image hover growth */
.comp-bottle {
  width: 300px;
  transition: transform 0.4s ease;
}
.comp-bottle:hover {
  transform: scale(1.10);
}

/* --------------------------------------------------
   MINERAL CARDS
-------------------------------------------------- */
.composition-col {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

@keyframes float-soft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0px); }
}

.comp-item {
  animation: float-soft 4s ease-in-out infinite;
}

.comp-item h3 {
  font-size: 22px;
  color: var(--accent);
  font-weight: 700;
}

.comp-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  margin: 8px 0;
}

.comp-item p {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 260px;
  margin: 0 auto;
}

/* underline */
.underline {
  width: 40px;
  height: 4px;
  margin: 15px auto 0;
  background: var(--accent);
  border-radius: 3px;
}

/* --------------------------------------------------
   ANIMATIONS (Smooth fade + float)
-------------------------------------------------- */

/* Start invisible */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
}


/* Activated when scrolled into view */
.fade-up.reveal {
  animation: fadeUp 1s ease forwards;
}

.fade-up:nth-child(2).reveal { animation-delay: 0.2s; }
.fade-up:nth-child(3).reveal { animation-delay: 0.4s; }

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.client-title {
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

/* Slider wrapper */
.slider {
  height: 130px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

/* Track = the moving strip of logos */
.slide-track {
  display: flex;
  width: calc(250px * 12); /* adjust depending on number of logos */
}

/* Each logo block */
.slide {
  width: 300px;              /* wider card */
  height: 160px;             /* taller frame */
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--offwhite);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 25px;
}

/* BIGGER logos */
.slide img {
  max-height: 110px;         /* HUGE logos */
  max-width: 250px;          /* wide logos fit too */
  width: auto;
  height: auto;
  object-fit: contain;
  filter: none !important;
}

.slide-track {
  display: flex;
  width: max-content;
  animation: scroll 51s linear infinite;
}


.dark .slide {
  background: var(--surface-card);   /* Dark mode tile */
  border: 1px solid rgba(255,255,255,0.06);
}

/* Logos */
.slide img {
  height: auto;
  width: 250px;
  filter: grayscale(100%) opacity(0.8); /* soft monochrome */
}

.slide:hover img {
  opacity: 1;
}


.dark .slide img {
  filter: invert(1) brightness(1.5); /* logos turn white in dark mode */
}

/* Hover effect (minor highlight) */


/* ---- ANIMATION ---- */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.slide {
  flex-direction: column;
}

.client-name {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  color: var(--text-dark);
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0.8;
}

/* WRAPPER */
.about-modern {
  padding: 80px 8%;
  background: var(--offwhite);
}

/* HIGH-SPECIFICITY TITLE FIX */
.about-modern .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--primary) !important;   /* overrides global */
}

/* NORMAL TEXT */
.about-modern .section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 850px;
  color: var(--text-muted) !important; /* overrides global */
}

/* SPACER */
.section-block {
  margin-bottom: 70px;
}

/* FOUNDER CARD */
.founder-card {
  display: flex;
  gap: 60px;
  align-items: center;
  background: var(--surface-card);
  padding: 60px;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  margin-bottom: 90px;
}

/* FOUNDER IMAGE */
.founder-image img {
  width: 430px;
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}

/* SIGNATURE */
.founder-signature {
  margin-top: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--primary) !important;  /* protect from override */
}

/* RESPONSIVE FOUNDER CARD */
@media (max-width: 900px) {
  .founder-card {
    flex-direction: column-reverse;
    padding: 40px;
  }
  .founder-image img {
    width: 100%;
  }
}

/* MISSION BLOCK */
.mission-block {
  margin-top: 40px;
}

/* GRID CARDS */
.mission-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* INDIVIDUAL MISSION CARD */
.mission-card {
  background: var(--surface-card);
  padding: 25px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

/* CARD HOVER */
.mission-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
}

/* CARD TITLE — protect from override */
.mission-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--primary) !important;
}

/* CARD TEXT — softened */
.mission-card p {
  color: var(--text-muted) !important;
  line-height: 1.6;
}

/* Container */
.founder-illustration {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Premium water wave container */
.logo-water-premium {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo stays on top, sharp */
.logo-water-premium .hunza-logo {
  position: relative;
  z-index: 10;
  width: 170px;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* Water waves container behind logo */
.water-waves {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60%;
  overflow: hidden;
  z-index: 1;
}

/* Base wave style */
.wave-svg {
  position: absolute;
  bottom: 0;
  width: 200%;
  height: 100%;
  fill: rgba(0, 153, 255, 0.18);
  animation: waveMove 6s ease-in-out infinite;
}

/* Second wave */
.wave-delayed {
  fill: rgba(0, 153, 255, 0.1);
  animation: waveMove2 9s ease-in-out infinite;
}

/* Smooth wave motion */
@keyframes waveMove {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-25%); }
  100% { transform: translateX(0); }
}

@keyframes waveMove2 {
  0%   { transform: translateX(-15%); }
  50%  { transform: translateX(10%); }
  100% { transform: translateX(-15%); }
}

/* -----------------------------------------
   PRODUCT CARD THEME VARIABLES (FIXED)
----------------------------------------- */
:root {
    --products-card-bg: var(--surface-card);
    --products-border: rgba(0,0,0,0.06);
    --products-text-main: var(--text-dark);

    /* BUTTON COLORS (LIGHT MODE) */
    --accent-hover: #69c67c;
}

.dark {
    /* BUTTON COLORS (DARK MODE) */
    --accent-hover: #7fe5a1;
}

/* -----------------------------------------
   PRODUCTS PAGE SECTION
----------------------------------------- */
.products-intro-section {
    max-width: 1100px;
    margin: 60px auto;
    padding: 0 20px;
}

/* TITLES */
.products-section-title {
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary);
}

.products-section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* PRODUCT CARD */
.products-card {
    display: flex;
    align-items: center;
    background: var(--products-card-bg);
    border: 1px solid var(--products-border);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 35px;
    gap: 25px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.products-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0 0 0 / 0.12);
}

/* PRODUCT IMAGE */
.products-img {
    width: 150px;
    height: auto;
    border-radius: 12px;
}

/* TEXT CONTENT */
.products-details {
    flex: 1;
}

.products-name {
    margin: 0 0 10px;
    font-size: 1.4rem;
    color: var(--primary);
}

.products-text {
    margin: 0 0 18px;
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 500px;
}

/* -----------------------------------------
   CTA BUTTON (FIXED)
----------------------------------------- */
.products-btn {
    display: inline-block;
    background: var(--primary);
    color: white !important;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.products-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .products-card {
        flex-direction: column;
        text-align: center;
    }

    .products-img {
        width: 180px;
    }
}

/* Root Variables (Light + Dark Adaptation) */
:root {
  --hs-bg: var(--background);
  --hs-card-bg: var(--card-bg);
  --hs-text: var(--text);
  --hs-muted: var(--muted);
  --hs-primary: #4db8ff;
  --hs-border: rgba(0,0,0,0.08);
}

/* Page Wrapper */
.hs-contact-page {
  padding: 70px 5%;
  background: var(--hs-bg);
  color: var(--hs-text);
  position: relative;
  overflow: hidden;
}

.hs-contact-page {
  position: relative;
  z-index: 0;
}

/* subtle SVG wave background (inline data URI) */
.hs-contact-page::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -8%;
  width: 140%;
  height: 140%;
  pointer-events: none;        /* important: don't block clicks */
  z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'><defs><linearGradient id='g' x1='0' x2='0' y1='0' y2='1'><stop offset='0' stop-color='%23CFF3FF' stop-opacity='0.95'/><stop offset='1' stop-color='%233BA9F4' stop-opacity='0.95'/></linearGradient></defs><path d='M0 220 C240 260 360 180 600 200 C840 220 960 260 1200 200 L1200 400 L0 400 Z' fill='url(%23g)' fill-opacity='0.12'/></svg>");
  background-repeat: no-repeat;
  background-size: cover;
  /* slow drift */
  animation: hs-water-drift 18s linear infinite;
  opacity: 1; /* visual intensity — reduce to 0.6 or lower if too strong */
}

/* subtle horizontal drift so the waves feel alive */
@keyframes hs-water-drift {
  0%   { transform: translateX(0px) translateY(0px); }
  50%  { transform: translateX(-40px) translateY(6px); }
  100% { transform: translateX(0px) translateY(0px); }
}

.dark .hs-contact-page::before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 400'><path d='M0 220 C240 260 360 180 600 200 C840 220 960 260 1200 200 L1200 400 L0 400 Z' fill='%2300AEEF' fill-opacity='0.08'/></svg>");
  opacity: 1;
}



@keyframes waterMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-200px); }
}

/* Header */
.hs-contact-header {
  text-align: center;
  max-width: 650px;
  margin: auto;
  margin-bottom: 60px;
}

.hs-contact-header h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

/* Info + Map Layout */
.hs-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

.hs-contact-info {
  background: var(--hs-card-bg);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.hs-ci-item {
  display: flex;
  gap: 12px;
  margin: 15px 0;
  color: var(--hs-muted);
}

.hs-ci-item i {
  margin-top: 3px;
  color: var(--hs-primary);
}

/* Logo */
.hs-contact-logo {
  width: 160px;
  margin-top: 20px;
  opacity: 0.9;
}

/* Map */
.hs-contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 20px;
  border: none;
}

/* Form Section */
.hs-form-wrapper {
  margin-top: 80px;
}

.hs-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 700px;
}

.hs-contact-form input,
.hs-contact-form textarea {
  width: 100%;
  padding: 14px;
  background: var(--hs-card-bg);
  border: 1px solid var(--hs-border);
  border-radius: 12px;
  color: var(--hs-text);
}

.hs-btn {
  padding: 14px 25px;
  background: var(--hs-primary);
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.hs-btn:hover {
  transform: scale(1.03);
}

/* Team Contacts */
.hs-team-contacts {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.hs-team-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--hs-card-bg);
  padding: 20px;
  border-radius: 16px;
}

.hs-avatar {
  width: 55px;
  height: 55px;
  background: var(--hs-primary);
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 950px) {
  .hs-contact-grid {
    grid-template-columns: 1fr;
  }

  .hs-contact-map iframe {
    height: 300px;
  }
}

@media (max-width: 600px) {
  .hs-contact-header h1 {
    font-size: 2rem;
  }
}

/* -------------------------------------------
   SUSTAINABILITY PAGE — ISOLATED CSS
   PREFIX: sustain-
-------------------------------------------- */

/* FIX HERO BACKGROUND FOR LIGHT + DARK MODE */
.sustain-hero {
  background: var(--offwhite);       /* Light mode */
  padding: 80px 20px 40px;
  text-align: center;
}

/* Dark Mode Background */
:root.dark .sustain-hero {
  background: var(--surface-1);      /* Matches your dark theme surfaces */
}

/* Text inside hero uses your adaptive variables */
.sustain-hero h1,
.sustain-hero p {
  color: var(--text-dark) !important;
}

/* Hero image border radius + shadow */
.sustain-hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.15);
}

/* Dark mode image shadow */
:root.dark .sustain-hero-image img {
  box-shadow: 0 4px 18px rgba(255,255,255,0.10);
}


.sustain-pak-ribbon {
  background: linear-gradient(90deg, #0a8f3c 0%, #ffffff 50%, #0a8f3c 100%);
  height: 6px;
  border-radius: 6px;
  margin: 40px 0 60px;
  opacity: 0.8;
}

/* Sections */
.sustain-section {
  padding: 0 20px 40px;
  max-width: 1100px;
  margin: auto;
}

.sustain-section h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
}

.sustain-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
}

/* Card Grid */
.sustain-card-grid {
  margin-top: 40px;
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Card */
.sustain-card {
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
}

.sustain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.10);
}

.sustain-card h3 {
  margin: 15px 0 10px;
  font-size: 1.3rem;
}

.sustain-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Icons */
.sustain-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
}

.sustain-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


.sustain-hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.sustain-hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.sustain-hero-image:hover img {
  transform: scale(1.04);
}


/* ===== BUYING PAGE — ALL CLASSES UNIQUE ===== */

/* BUYING PAGE MAIN SECTION — DARK MODE SAFE */
.bp-section {
  width: 100%;
  padding: 4rem 0;
  background: var(--surface-1); /* switches in dark mode */
  color: var(--text-dark);
  transition: background 0.3s ease, color 0.3s ease;
}


.bp-container {
  margin: auto;
}

.bp-header {
  text-align: center;
  margin-bottom: 50px;
}

.bp-header-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bp-header-subtitle {
  font-size: 17px;
  color: #555;
}

/* MOBILE + TABLET — let browser auto-fit columns */
.bp-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

/* DESKTOP — force EXACTLY 3 columns */
@media (min-width: 992px) {
  .bp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* BUYING PAGE CARD STYLES — UNIQUE & DARK MODE SAFE */
.bp-card-wrapper {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
}

.bp-card {
  background: var(--surface-card);
  color: var(--text-dark);
  border: 1px solid var(--primary);
  border-radius: 12px;
  padding: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease, border 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.bp-card:hover {
  background-color: color-mix(in srgb, var(--surface-card) 90%, black 10%);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

/* DARK MODE — make hover subtly lighter than dark card bg */
.dark .bp-card:hover {
  background-color: color-mix(in srgb, var(--surface-card) 85%, white 15%);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

/* Headings inside cards */
.bp-card-title {
  color: var(--text-dark);
  font-size: 1.3rem;
  font-weight: 600;
}

/* Paragraph inside cards */
.bp-card-text {
  color: var(--text-dark);
  opacity: 0.9;
}

/* Buttons inside cards */
.bp-card-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 10px 18px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--offwhite);
  text-decoration: none;
  transition: background 0.2s ease;
}

.bp-card-button:hover {
  background: var(--hover);
}

.bp-img {
  width: 100%;
  max-width: 180px;
  margin: auto;
  display: block;
}

.bp-name {
  font-size: 20px;
  margin-top: 16px;
  margin-bottom: 10px;
}

.bp-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 22px;
}

/* PRICES */
.bp-price-row {
  margin-bottom: 18px;
}

.bp-price {
  font-size: 28px;
  font-weight: 700;
  color: #1a73e8;
}

.bp-old-price {
  font-size: 16px;
  color: #888;
  text-decoration: line-through;
  margin-right: 6px;
}

/* QUANTITY BOX */
.bp-qty-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.bp-qty-btn {
  background: #eee;
  border: none;
  width: 34px;
  height: 34px;
  font-size: 20px;
  border-radius: 8px;
  cursor: pointer;
}

.bp-qty-input {
  width: 55px;
  padding: 6px;
  font-size: 16px;
  text-align: center;
  border-radius: 6px;
  border: 1px solid #ccc;
}

/* BUTTON */
.bp-add-cart {
  width: 100%;
  padding: 14px 0;
  background: var(--primary);
  color: #fff;
  font-size: 16px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.bp-add-cart:hover {
  background: #155ac3;
}

/* TAG (BUNDLE BADGE) */
.bp-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: #e63946;
  color: #fff;
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 8px;
}

.bp-bundle .bp-img {
  width: 100%;
  max-width: 200px;
}

/* ====== CART PAGE STYLES ====== */
.cart-container {
  display:grid;
  grid-template-columns: 1fr 360px;
  gap:28px;
  width:92%;
  max-width:var(--max-width);
  margin:96px auto 64px; /* leave room for fixed header */
  align-items:start;
}

.cart-title { font-size:30px; margin:0 0 12px; color:var(--text-dark); }
.summary-title { margin:0 0 14px; font-size:20px; color:var(--text-dark); }

.cart-items-list {
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* Cart card */
.cart-item {
  display:grid;
  grid-template-columns: 110px 1fr auto;
  gap:12px;
  align-items:center;
  background: linear-gradient(180deg, rgba(247,253,249,0.7), #fff);
  border-radius:12px;
  padding:14px;
  border:1px solid rgba(18,50,38,0.06);
  box-shadow: 0 8px 20px rgba(18,50,38,0.02);
}

.cart-item .item-thumb {
  width:110px;
  height:110px;
  display:block;
  background:transparent;
  object-fit:contain;
  align-self:center;
}

.cart-item .item-info { display:flex; flex-direction:column; gap:6px; }
.cart-item .item-name { font-weight:700; color:var(--text-dark); margin:0; }
.cart-item .item-meta { color:var(--text-muted); font-size:13px; }

.cart-item .item-actions {
  display:flex; flex-direction:column; gap:8px; align-items:flex-end;
}

/* qty controls */
.qty {
  display:inline-flex;
  align-items:center;
  border-radius:10px;
  overflow:hidden;
  border:1px solid rgba(18,50,38,0.08);
}
.qty button {
  background:transparent;
  border:0;
  padding:8px 10px;
  cursor:pointer;
  font-size:16px;
}
.qty input {
  width:56px;
  padding:8px;
  text-align:center;
  border-left:1px solid rgba(18,50,38,0.04);
  border-right:1px solid rgba(18,50,38,0.04);
  font-weight:600;
}

/* price & remove */
.item-price { font-weight:700; color:var(--primary); }
.item-remove { background:transparent; border:0; color:var(--text-muted); cursor:pointer; font-size:13px; }

/* summary */
.summary-block {
  background: linear-gradient(180deg, rgba(247,253,249,0.7), #fff);
  border-radius:12px;
  padding:16px;
  border:1px solid rgba(18,50,38,0.06);
  box-shadow:0 8px 26px rgba(18,50,38,0.03);
  display:flex;
  flex-direction:column;
  gap:12px;
}
.summary-row { display:flex; justify-content:space-between; align-items:center; font-size:15px; color:var(--text-muted); }
.total-row { font-size:18px; color:var(--text-dark); }

/* checkout form */
.checkout-form { margin-top:14px; display:flex; flex-direction:column; gap:12px; }
.field { display:block; }
.field-label { display:block; font-size:13px; margin-bottom:6px; color:var(--text-muted); }
.field input, .field textarea {
  width:100%;
  padding:10px 12px;
  border-radius:10px;
  border:1px solid rgba(18,50,38,0.08);
  background:transparent;
  font-size:14px;
  color:var(--text-dark);
}
.field.small { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--text-muted); }

/* place order button */
.btn-place-order {
  margin-top:6px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#25D366; /* WhatsApp green */
  color:#fff;
  padding:12px 16px;
  border-radius:12px;
  font-weight:800;
  border:0;
  cursor:pointer;
  box-shadow: 0 10px 30px rgba(37,211,102,0.14);
}
.btn-place-order:hover { transform:translateY(-3px); }

/* empty cart */
.cart-empty { padding:28px; background:linear-gradient(90deg, rgba(247,253,249,0.6), #fff); border-radius:10px; border:1px dashed rgba(18,50,38,0.04); text-align:center; color:var(--text-muted); }

/* small screens */
@media (max-width:960px) {
  .cart-container { grid-template-columns: 1fr; margin:84px auto 40px; padding:20px 8px; }
  .cart-summary-col { order:2; }
  .cart-items-col { order:1; }
  .cart-item { grid-template-columns: 80px 1fr auto; }
  .cart-item .item-thumb { width:80px; height:80px; }
}

/* dark mode adjustments */
.dark .cart-item,
.dark .summary-block {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.04);
  box-shadow: none;
}
.dark .field input, .dark .field textarea {
  background: var(--surface-card);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-dark);
}
.dark .btn-place-order { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }

/* Popup Base ------------------------------------------------- */
.hs-popup {
  position: fixed;
  left: 50%;
  top: 20%;
  transform: translateX(-50%);
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  display: none;
  z-index: 99999;

  /* Theme-adaptive background + border */
  background: var(--surface-card, var(--offwhite));
  border: 1px solid var(--primary);
  color: var(--text-dark);
  box-shadow: 0 4px 18px rgba(0,0,0,0.18);
}

.hs-popup {
  opacity: 0;
  transform: translate(-50%, -20px);
  transition: all 0.25s ease;
}

.hs-popup.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Success state ---------------------------------------------- */
.hs-popup.success {
  border-color: var(--primary);
  background: var(--offwhite);
  color: var(--primary);
}

/* Error state ------------------------------------------------ */
.hs-popup.error {
  border-color: #c44545;
  background: var(--offwhite);
  color: #c44545;
}

/* DARK MODE OVERRIDES ---------------------------------------- */
.dark .hs-popup {
  background: var(--surface-card);
  border-color: var(--hover);
  color: var(--text-dark);
}

.dark .hs-popup.success {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--surface-1);
}

.dark .hs-popup.error {
  color: #ff8f8f;
  border-color: #ff8f8f;
  background: var(--surface-1);
}

.business-water-supply {
  margin-bottom: 20px;   /* tighten spacing */
}

.business-water-supply h1 {
  margin-bottom: 10px;
}

.business-water-supply p {
  max-width: 720px;
  margin: 6px auto;
  font-size: 15px;
}

@media (max-width: 430px) {
  .business-water-supply h1 {
    font-size: 1.2rem;
  }

  .business-water-supply p {
    font-size: 0.6rem;
  }
}


