:root{
  --deep-green:#0d5a53;
  --deep-green-2:#0a443f;
  --gold:#c7932b;
  --gold-soft:#edd9a6;
  --cream:#faf6ee;
  --text:#17352f;
  --muted:#5f6f6a;
  --white:#ffffff;
  --shadow:0 12px 32px rgba(0,0,0,0.12);
  --radius:18px;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Inter',sans-serif;
  color:var(--text);
  background:var(--cream);
}

a{
  text-decoration:none;
  color:inherit;
}

img{
  max-width:100%;
  display:block;
}

.container{
  width:min(94%, 1500px);
  margin:auto;
}

/* Top Strip */
.top-strip{
  background:linear-gradient(90deg,var(--deep-green),#11726b);
  color:var(--white);
  font-size:14px;
}

.top-strip-inner{
  min-height:40px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:8px 0;
}

.promo-text{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  font-weight:500;
}

.badge-pill{
  background:rgba(237,217,166,0.2);
  color:#fff2cc;
  border:1px solid rgba(255,255,255,0.22);
  padding:4px 10px;
  border-radius:999px;
  font-size:12px;
}

.top-actions{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.top-actions a{
  width:28px;
  height:28px;
  border:1px solid rgba(255,255,255,.24);
  border-radius:50%;
  display:grid;
  place-items:center;
  transition:.25s ease;
}

.top-actions a:hover{
  background:var(--gold);
  border-color:var(--gold);
}

.top-actions select{
  border:1px solid rgba(255,255,255,.28);
  background:transparent;
  color:var(--white);
  padding:7px 12px;
  border-radius:6px;
  outline:none;
}

.top-actions option{
  color:#111;
}

.currency-box{
  display:flex;
  align-items:center;
  gap:8px;
}

/* Header */
.header-main{
  background:#fff;
  border-bottom:1px solid rgba(13,90,83,.08);
}

.header-inner{
  display:grid;
  grid-template-columns: 360px minmax(420px, 1fr) auto auto;
  align-items:center;
  gap:20px;
  padding:18px 0;
  position:relative;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand img{
  width:90px;
  height:90px;
  object-fit:contain;
  filter:drop-shadow(0 8px 18px rgba(0,0,0,.08));
}

.brand-text h1{
  font-family:'Playfair Display', serif;
  font-size:36px;
  line-height:1;
  color:var(--deep-green-2);
  margin-bottom:7px;
}

.brand-text p{
  color:#8b6d3b;
  font-size:14px;
  font-weight:600;
}

.search-wrap{
  display:grid;
  grid-template-columns: 140px 1fr 66px;
  align-items:center;
  border:1px solid #d5dedc;
  border-radius:999px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 6px 14px rgba(0,0,0,.04);
}

.search-wrap select,
.search-wrap input{
  border:none;
  outline:none;
  height:58px;
  padding:0 18px;
  font-size:16px;
  background:transparent;
}

.search-wrap select{
  border-right:1px solid #e1e8e6;
  color:#36534e;
}

.search-wrap input::placeholder{
  color:#97aaa5;
}

.search-btn{
  height:58px;
  border:none;
  background:var(--gold);
  color:#fff;
  font-size:21px;
  cursor:pointer;
  transition:.3s ease;
}

.search-btn:hover{
  background:#b17d16;
}

.header-buttons{
  display:flex;
  align-items:center;
  gap:10px;
}

.cta-btn{
  min-width:132px;
  height:52px;
  padding:0 18px;
  border-radius:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  transition:.28s ease;
}

.primary-btn{
  background:var(--deep-green);
  color:#fff;
}

.secondary-btn{
  background:var(--deep-green-2);
  color:#fff;
}

.primary-btn:hover,
.secondary-btn:hover{
  transform:translateY(-2px);
}

.icon-links{
  display:flex;
  align-items:center;
  gap:18px;
  font-size:30px;
  color:var(--deep-green);
}

.icon-links a{
  position:relative;
}

.cart-count{
  position:absolute;
  top:-10px;
  right:-10px;
  width:22px;
  height:22px;
  border-radius:50%;
  background:#d94a4a;
  color:#fff;
  font-size:12px;
  display:grid;
  place-items:center;
  font-weight:700;
}

.mobile-toggle{
  display:none;
  border:none;
  background:var(--deep-green);
  color:#fff;
  width:48px;
  height:48px;
  border-radius:10px;
  font-size:18px;
  cursor:pointer;
}

/* Nav */
.navbar{
  background:linear-gradient(90deg,var(--deep-green),#0f6d65);
}

.nav-inner{
  min-height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:42px;
  flex-wrap:wrap;
}

.nav-inner a{
  color:#fff;
  text-transform:uppercase;
  font-weight:700;
  font-size:15px;
  letter-spacing:.3px;
  position:relative;
  padding:8px 0;
}

.nav-inner a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  background:var(--gold-soft);
  transition:.3s ease;
}

.nav-inner a:hover::after,
.nav-inner a.active::after{
  width:100%;
}

/* Hero */
.hero-slider{
  position:relative;
  overflow:hidden;
}

.slide{
  min-height:620px;
  background-size:cover;
  background-position:center;
  display:none;
  align-items:center;
}

.slide.active{
  display:flex;
  animation:fadeIn .7s ease;
}

.hero-content{
  color:#fff;
  padding:90px 0 100px;
}

.hero-tag{
  display:inline-block;
  background:rgba(237,217,166,.18);
  border:1px solid rgba(255,255,255,.22);
  color:#fff7da;
  padding:10px 16px;
  border-radius:999px;
  font-weight:700;
  margin-bottom:20px;
}

.hero-content h2{
  max-width:760px;
  font-family:'Playfair Display',serif;
  font-size:72px;
  line-height:1.08;
  margin-bottom:18px;
}

.hero-content p{
  max-width:760px;
  font-size:24px;
  line-height:1.55;
  color:#eef8f6;
  margin-bottom:32px;
}

.hero-buttons{
  display:flex;
  align-items:center;
  gap:16px;
  flex-wrap:wrap;
}

.hero-btn{
  min-width:190px;
  min-height:56px;
  padding:14px 22px;
  border-radius:999px;
  font-weight:800;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:.28s ease;
}

.gold-btn{
  background:var(--gold);
  color:#fff;
}

.outline-btn{
  border:1px solid rgba(255,255,255,.45);
  color:#fff;
  backdrop-filter:blur(3px);
}

.gold-btn:hover,
.outline-btn:hover{
  transform:translateY(-3px);
}

.slider-controls{
  position:absolute;
  left:50%;
  bottom:26px;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.slider-dot{
  width:14px;
  height:14px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:rgba(255,255,255,.45);
}

.slider-dot.active{
  background:var(--gold);
}

/* Mini cards */
.mini-info{
  margin-top:-52px;
  position:relative;
  z-index:2;
  padding-bottom:50px;
}

.mini-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.mini-card{
  background:#fff;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:24px;
  display:flex;
  align-items:flex-start;
  gap:18px;
  border-top:4px solid var(--gold);
}

.mini-card i{
  width:58px;
  height:58px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:rgba(13,90,83,.08);
  color:var(--deep-green);
  font-size:24px;
  flex-shrink:0;
}

.mini-card h3{
  font-size:21px;
  margin-bottom:8px;
}

.mini-card p{
  color:var(--muted);
  line-height:1.6;
}

@keyframes fadeIn{
  from{opacity:.25; transform:scale(1.01);}
  to{opacity:1; transform:scale(1);}
}

/* Responsive */
@media (max-width: 1300px){
  .header-inner{
    grid-template-columns: 300px 1fr;
    gap:18px;
  }

  .header-buttons,
  .icon-links{
    justify-self:end;
  }

  .hero-content h2{
    font-size:60px;
  }
}

@media (max-width: 1024px){
  .top-strip-inner,
  .header-inner{
    grid-template-columns:1fr;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
  }

  .brand,
  .search-wrap,
  .header-buttons,
  .icon-links{
    width:100%;
    justify-content:center;
  }

  .brand{
    text-align:center;
    flex-direction:column;
  }

  .search-wrap{
    max-width:900px;
  }

  .nav-inner{
    gap:24px;
  }

  .hero-content{
    text-align:center;
  }

  .hero-content h2,
  .hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons{
    justify-content:center;
  }

  .mini-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 768px){
  .top-actions{
    justify-content:center;
  }

  .search-wrap{
    grid-template-columns:1fr;
    border-radius:20px;
  }

  .search-wrap select{
    border-right:none;
    border-bottom:1px solid #e1e8e6;
  }

  .search-btn{
    width:100%;
    border-radius:0 0 20px 20px;
  }

  .brand-text h1{
    font-size:28px;
  }

  .navbar{
    display:none;
  }

  .navbar.open{
    display:block;
  }

  .nav-inner{
    flex-direction:column;
    align-items:flex-start;
    padding:18px 0;
  }

  .mobile-toggle{
    display:grid;
    place-items:center;
    position:absolute;
    top:20px;
    right:0;
  }

  .hero-content h2{
    font-size:42px;
  }

  .hero-content p{
    font-size:18px;
  }

  .slide{
    min-height:520px;
  }
}

@media (max-width: 520px){
  .promo-text{
    justify-content:center;
    text-align:center;
  }

  .hero-content h2{
    font-size:34px;
  }

  .hero-btn{
    width:100%;
  }

  .mini-card{
    padding:20px;
  }
}
:root{
    --theme-green:#0d5a53;
    --theme-green-dark:#083c38;
    --theme-gold:#c4942f;
    --theme-cream:#f8f4ec;
    --theme-text:#1f2f2c;
}

/* Top strip */
.top-strip{
    background:#0d88c7;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.top-strip-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.promo-text{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
}

.badge-pill{
    background:rgba(255,255,255,0.15);
    padding:4px 10px;
    border-radius:20px;
    font-size:12px;
}

.top-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-social a{
    color:#fff;
    font-size:16px;
}

/* Header */
.header-main{
    background:#fff;
    padding:18px 0;
    border-bottom:1px solid #e5e5e5;
}

.header-inner{
    display:grid;
    grid-template-columns: 330px 1fr 180px;
    gap:20px;
    align-items:center;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.brand img{
    width:90px;
    height:90px;
    object-fit:contain;
}

.brand-text h1{
    margin:0;
    font-size:36px;
    line-height:1.1;
    color:#234c8f;
    font-family:'Playfair Display', serif;
}

.brand-text p{
    margin:4px 0 0;
    font-size:14px;
    color:#7a6b42;
    font-weight:600;
}

.search-wrap{
    display:grid;
    grid-template-columns: 160px 1fr 60px;
    border:1px solid #d9d9d9;
    border-radius:40px;
    overflow:hidden;
    height:56px;
    background:#fff;
}

.search-wrap select,
.search-wrap input{
    border:none;
    outline:none;
    padding:0 18px;
    font-size:16px;
}

.search-wrap select{
    border-right:1px solid #ddd;
}

.search-btn{
    border:none;
    background:#fff;
    font-size:22px;
    cursor:pointer;
    color:#222;
}

.header-buttons{
    display:flex;
    justify-content:flex-end;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    height:52px;
    padding:0 24px;
    font-weight:700;
}

.primary-btn{
    background:#0d88c7;
    color:#fff;
}

/* Navbar */
.navbar{
    background:#0d88c7;
}

.nav-inner{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:42px;
    min-height:64px;
    flex-wrap:wrap;
}

.nav-inner a{
    color:#fff;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:700;
    font-size:15px;
}

/* Category Section */
.category-strip{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    background:#fff;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}

.category-item{
    text-align:center;
    padding:26px 15px 22px;
    border-right:1px solid #ddd;
    transition:0.3s ease;
    background:#fff;
}

.category-item:last-child{
    border-right:none;
}

.category-item:hover{
    background:#f9f9f9;
}

.category-img{
    width:110px;
    height:110px;
    margin:0 auto 14px;
    border-radius:50%;
    overflow:hidden;
}

.category-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-item h4{
    margin:0;
    font-size:18px;
    font-weight:500;
    color:#2f3b4a;
}

/* About section */
.about-aethon-style{
    background:url('image/blog-jar-containers.png') center/cover no-repeat;
    padding:70px 0;
    position:relative;
}

.about-aethon-style::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.75);
}

.about-overlay-box{
    position:relative;
    max-width:1500px;
    width:90%;
    margin:0 auto;
    background:rgba(255,255,255,0.82);
    padding:70px 70px 55px;
}

.about-overlay-box h2{
    text-align:center;
    font-size:34px;
    margin-bottom:15px;
    color:#1e2b39;
    font-weight:700;
}

.about-line{
    width:70px;
    height:4px;
    background:#2f67b1;
    margin:0 auto 35px;
}

.about-highlight{
    text-align:center;
    font-weight:700;
    font-size:18px;
    color:#2e2e2e;
    margin-bottom:18px;
}

.about-overlay-box p{
    font-size:18px;
    line-height:1.8;
    color:#333;
    margin-bottom:20px;
}

.about-overlay-box h3{
    font-size:24px;
    margin:30px 0 18px;
    color:#1f2f2c;
}

.about-overlay-box ul{
    padding-left:24px;
    margin-bottom:24px;
}

.about-overlay-box ul li{
    font-size:18px;
    line-height:1.8;
    margin-bottom:8px;
    color:#333;
}

/* Responsive */
@media (max-width: 1200px){
    .header-inner{
        grid-template-columns:1fr;
    }

    .brand,
    .header-buttons{
        justify-content:center;
    }

    .search-wrap{
        width:100%;
    }

    .category-strip{
        grid-template-columns:repeat(3, 1fr);
    }
}

@media (max-width: 768px){
    .brand{
        flex-direction:column;
        text-align:center;
    }

    .brand-text h1{
        font-size:28px;
    }

    .search-wrap{
        grid-template-columns:1fr;
        height:auto;
        border-radius:20px;
    }

    .search-wrap select{
        border-right:none;
        border-bottom:1px solid #ddd;
        height:50px;
    }

    .search-wrap input{
        height:50px;
    }

    .search-btn{
        height:50px;
    }

    .category-strip{
        grid-template-columns:repeat(2, 1fr);
    }

    .about-overlay-box{
        padding:40px 24px;
    }

    .about-overlay-box h2{
        font-size:28px;
    }

    .about-overlay-box p,
    .about-overlay-box ul li{
        font-size:16px;
    }

    .nav-inner{
        gap:18px;
        padding:15px 0;
    }
}

@media (max-width: 480px){
    .category-strip{
        grid-template-columns:1fr;
    }
}
:root{
    --theme-green:#0f5c53;
    --theme-green-dark:#0a453e;
    --theme-gold:#c89b3c;
    --theme-gold-light:#e8d3a2;
    --theme-cream:#f7f1e6;
    --theme-cream-2:#fbf8f1;
    --theme-blue:#1f5aa6;
    --theme-text:#2d2d2d;
    --theme-muted:#6b6b6b;
    --white:#ffffff;
    --border:#e4ddd1;
    --shadow:0 10px 30px rgba(0,0,0,0.08);
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:var(--theme-cream-2);
    color:var(--theme-text);
}

.container{
    width:min(94%, 1500px);
    margin:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* TOP STRIP */
.top-strip{
    background:linear-gradient(90deg, var(--theme-green), var(--theme-green-dark));
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-strip-inner{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.promo-text{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    font-weight:600;
}

.badge-pill{
    background:rgba(255,255,255,0.12);
    color:#fff4d9;
    border:1px solid rgba(255,255,255,0.18);
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
}

.top-social{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
}

.top-social span{
    font-weight:600;
    margin-right:2px;
}

.top-social a{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.22);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:0.3s ease;
    font-size:14px;
}

.top-social a:hover{
    background:var(--theme-gold);
    border-color:var(--theme-gold);
    transform:translateY(-2px);
}

/* HEADER */
.header-main{
    background:var(--theme-cream-2);
    padding:24px 0 20px;
    border-bottom:1px solid var(--border);
}

.header-inner{
    display:grid;
    grid-template-columns: 300px 1fr 180px;
    align-items:center;
    gap:28px;
}

.brand{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.brand img{
    width:82px;
    height:82px;
    object-fit:contain;
    flex-shrink:0;
}

.brand-text{
    line-height:1.05;
}

.brand-text h1{
    font-family:'Playfair Display', serif;
    font-size:34px;
    line-height:1.05;
    margin:0 0 8px;
    color:var(--theme-blue);
    font-weight:700;
}

.brand-text p{
    margin:0;
    font-size:13px;
    line-height:1.35;
    color:#8a6a35;
    font-weight:700;
    max-width:190px;
}

.search-wrap{
    display:grid;
    grid-template-columns:180px 1fr 70px;
    align-items:center;
    height:60px;
    background:#fff;
    border:1px solid #ddd7cb;
    border-radius:999px;
    overflow:hidden;
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

.search-wrap select,
.search-wrap input{
    border:none;
    outline:none;
    background:transparent;
    height:100%;
    font-size:16px;
    padding:0 20px;
    color:#39433f;
}

.search-wrap select{
    border-right:1px solid #e7e1d7;
    cursor:pointer;
}

.search-wrap input::placeholder{
    color:#9b9b9b;
}

.search-btn{
    border:none;
    background:transparent;
    color:#1d2b36;
    font-size:28px;
    cursor:pointer;
}

.header-buttons{
    display:flex;
    justify-content:flex-end;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:56px;
    padding:0 28px;
    font-weight:700;
    border-radius:0;
    transition:0.3s ease;
}

.primary-btn{
    background:linear-gradient(90deg, var(--theme-green), var(--theme-green-dark));
    color:#fff;
}

.primary-btn:hover{
    transform:translateY(-2px);
}

/* NAVBAR */
.navbar{
    background:linear-gradient(90deg, var(--theme-green), #14685f);
}

.nav-inner{
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:42px;
    flex-wrap:wrap;
}

.nav-inner a{
    color:#fff;
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    position:relative;
    padding:8px 0;
}

.nav-inner a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--theme-gold-light);
    transition:0.3s ease;
}

.nav-inner a:hover::after,
.nav-inner a.active::after{
    width:100%;
}

/* HERO */
.hero-slider{
    position:relative;
    overflow:hidden;
}

.slide{
    min-height:620px;
    background-size:cover;
    background-position:center;
    display:none;
    align-items:center;
}

.slide.active{
    display:flex;
}

.hero-content{
    color:#fff;
    padding:90px 0 100px;
}

.hero-tag{
    display:inline-block;
    padding:11px 18px;
    border-radius:40px;
    background:rgba(255,255,255,0.14);
    border:1px solid rgba(255,255,255,0.2);
    color:#fff0c8;
    font-weight:700;
    margin-bottom:22px;
}

.hero-content h2{
    max-width:760px;
    font-family:'Playfair Display', serif;
    font-size:72px;
    line-height:1.05;
    margin-bottom:18px;
}

.hero-content p{
    max-width:760px;
    font-size:23px;
    line-height:1.6;
    margin-bottom:30px;
    color:#f3f3f3;
}

.hero-buttons{
    display:flex;
    gap:16px;
    flex-wrap:wrap;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:190px;
    min-height:56px;
    border-radius:999px;
    padding:14px 22px;
    font-weight:800;
    transition:0.3s ease;
}

.gold-btn{
    background:var(--theme-gold);
    color:#fff;
}

.outline-btn{
    border:1px solid rgba(255,255,255,0.4);
    color:#fff;
}

.hero-btn:hover{
    transform:translateY(-2px);
}

.slider-controls{
    position:absolute;
    left:50%;
    bottom:24px;
    transform:translateX(-50%);
    display:flex;
    gap:10px;
}

.slider-dot{
    width:14px;
    height:14px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,0.45);
    cursor:pointer;
}

.slider-dot.active{
    background:var(--theme-gold);
}

/* CATEGORY STRIP */
.category-strip{
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    background:#fff;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}

.category-item{
    text-align:center;
    padding:28px 14px 22px;
    border-right:1px solid #e3e3e3;
    transition:0.3s ease;
}

.category-item:last-child{
    border-right:none;
}

.category-item:hover{
    background:#faf8f3;
}

.category-img{
    width:110px;
    height:110px;
    margin:0 auto 14px;
    border-radius:50%;
    overflow:hidden;
    box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.category-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.category-item h4{
    font-size:17px;
    font-weight:500;
    color:#394550;
}

/* ABOUT SECTION - screenshot style */
.about-aethon-style{
    position:relative;
    padding:80px 0;
    background:
        linear-gradient(rgba(248,244,236,0.78), rgba(248,244,236,0.78)),
        url('image/blog-jar-containers.png') center/cover no-repeat;
}

.about-overlay-box{
    width:min(92%, 1550px);
    margin:0 auto;
    background:rgba(255,255,255,0.82);
    padding:72px 70px 58px;
    box-shadow:var(--shadow);
}

.about-overlay-box h2{
    text-align:center;
    font-size:32px;
    font-weight:800;
    color:#1d2b36;
    margin-bottom:14px;
}

.about-line{
    width:64px;
    height:4px;
    background:var(--theme-blue);
    margin:0 auto 34px;
}

.about-highlight{
    text-align:center;
    font-size:18px;
    line-height:1.7;
    font-weight:800;
    color:#333;
    margin-bottom:20px;
}

.about-overlay-box p{
    font-size:18px;
    line-height:1.75;
    color:#333;
    margin-bottom:18px;
}

.about-overlay-box h3{
    font-size:22px;
    margin:26px 0 14px;
    color:#202b2f;
    font-weight:800;
}

.about-overlay-box ul{
    padding-left:26px;
    margin-bottom:22px;
}

.about-overlay-box ul li{
    font-size:18px;
    line-height:1.75;
    color:#333;
    margin-bottom:6px;
}

/* RESPONSIVE */
@media (max-width: 1200px){
    .header-inner{
        grid-template-columns:1fr;
        gap:22px;
    }

    .brand,
    .header-buttons{
        justify-content:center;
    }

    .search-wrap{
        width:100%;
    }

    .category-strip{
        grid-template-columns:repeat(3, 1fr);
    }

    .hero-content{
        text-align:center;
    }

    .hero-content h2,
    .hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .hero-buttons{
        justify-content:center;
    }
}

@media (max-width: 768px){
    .top-strip-inner{
        justify-content:center;
        text-align:center;
    }

    .brand{
        flex-direction:column;
        text-align:center;
    }

    .brand-text p{
        max-width:none;
    }

    .search-wrap{
        grid-template-columns:1fr;
        height:auto;
        border-radius:20px;
    }

    .search-wrap select{
        border-right:none;
        border-bottom:1px solid #e7e1d7;
        height:52px;
    }

    .search-wrap input{
        height:52px;
    }

    .search-btn{
        height:52px;
    }

    .category-strip{
        grid-template-columns:repeat(2, 1fr);
    }

    .about-overlay-box{
        padding:40px 24px;
    }

    .about-overlay-box h2{
        font-size:27px;
    }

    .about-overlay-box p,
    .about-overlay-box ul li,
    .about-highlight{
        font-size:16px;
    }

    .hero-content h2{
        font-size:46px;
    }

    .hero-content p{
        font-size:18px;
    }

    .nav-inner{
        gap:18px;
        padding:14px 0;
    }
}

@media (max-width: 480px){
    .category-strip{
        grid-template-columns:1fr;
    }

    .hero-content h2{
        font-size:36px;
    }
}
:root{
    --theme-green:#0f5c53;
    --theme-green-dark:#0a453e;
    --theme-gold:#b8862f;
    --theme-cream:#f7f3ea;
    --theme-blue:#1f5aa6;
    --theme-text:#2d2d2d;
    --border:#ddd4c7;
}

/* HEADER */
.header-main{
    background:var(--theme-cream);
    padding:22px 0;
    border-bottom:1px solid var(--border);
}

.header-inner{
    display:grid;
    grid-template-columns: 340px minmax(400px, 1fr) 190px;
    align-items:center;
    gap:30px;
}

.brand{
    display:grid;
    grid-template-columns:78px 1fr;
    align-items:center;
    gap:16px;
    text-decoration:none;
}

.brand img{
    width:78px;
    height:78px;
    object-fit:contain;
}

.brand-text h1{
    margin:0;
    font-family:'Playfair Display', serif;
    font-size:28px;
    line-height:1.08;
    color:var(--theme-blue);
    font-weight:700;
}

.brand-text p{
    margin:8px 0 0;
    font-size:13px;
    line-height:1.45;
    color:#946a1f;
    font-weight:700;
    max-width:230px;
}

.search-wrap{
    display:grid;
    grid-template-columns:190px 1fr 70px;
    align-items:center;
    height:58px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:40px;
    overflow:hidden;
}

.search-wrap select,
.search-wrap input{
    border:none;
    outline:none;
    height:100%;
    padding:0 18px;
    font-size:16px;
    background:transparent;
    color:#37433d;
}

.search-wrap select{
    border-right:1px solid #e6ded2;
}

.search-wrap input::placeholder{
    color:#9f9f9f;
}

.search-btn{
    border:none;
    background:#fff;
    color:var(--theme-green-dark);
    font-size:24px;
    cursor:pointer;
}

.header-buttons{
    display:flex;
    justify-content:flex-end;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 28px;
    text-decoration:none;
    font-weight:700;
}

.primary-btn{
    background:var(--theme-green);
    color:#fff;
}

/* responsive */
@media (max-width: 1100px){
    .header-inner{
        grid-template-columns:1fr;
        gap:18px;
    }

    .brand,
    .header-buttons{
        justify-content:center;
    }

    .search-wrap{
        width:100%;
    }
}

@media (max-width: 600px){
    .brand{
        grid-template-columns:1fr;
        text-align:center;
        justify-items:center;
    }

    .brand-text p{
        max-width:none;
    }

    .search-wrap{
        grid-template-columns:1fr;
        height:auto;
        border-radius:18px;
    }

    .search-wrap select{
        border-right:none;
        border-bottom:1px solid #e6ded2;
        height:50px;
    }

    .search-wrap input{
        height:50px;
    }

    .search-btn{
        height:50px;
    }
}
.brand img{
    width:100px;
    height:100px;
}
.about-aethon-style{
    position: relative;
    padding: 85px 0;
    background: url('image/blog-jar-containers.png') center/cover no-repeat;
}

.about-overlay-box{
    width: 90%;
    max-width: 1520px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 65px 55px 50px;
}

.about-overlay-box h2{
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #1e2b39;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.about-line{
    width: 70px;
    height: 4px;
    background: #2f67b1;
    margin: 0 auto 34px;
}

.about-highlight{
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    color: #2b2b2b;
    line-height: 1.8;
    margin-bottom: 22px;
}

.about-overlay-box p{
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 18px;
}

.about-overlay-box h3{
    font-size: 22px;
    font-weight: 700;
    color: #1f2f2c;
    margin: 28px 0 16px;
}

.about-overlay-box ul{
    padding-left: 25px;
    margin-bottom: 20px;
}

.about-overlay-box ul li{
    font-size: 17px;
    line-height: 1.9;
    color: #333;
    margin-bottom: 6px;
}

/* responsive */
@media (max-width: 768px){
    .about-aethon-style{
        padding: 50px 0;
    }

    .about-overlay-box{
        width: 94%;
        padding: 35px 22px;
    }

    .about-overlay-box h2{
        font-size: 26px;
    }

    .about-highlight,
    .about-overlay-box p,
    .about-overlay-box ul li{
        font-size: 16px;
        line-height: 1.8;
    }

    .about-overlay-box h3{
        font-size: 20px;
    }
}
.hetal-categories-section{
    padding: 70px 0 55px;
    background: #f8f5ee;
}

.hetal-category-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.hetal-category-card{
    position: relative;
    display: block;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(15, 92, 83, 0.10);
    box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    min-height: 250px;
    text-decoration: none;
}

.hetal-category-card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hetal-category-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 69, 62, 0.88) 0%,
        rgba(10, 69, 62, 0.45) 35%,
        rgba(10, 69, 62, 0.08) 70%,
        rgba(10, 69, 62, 0.00) 100%
    );
    opacity: 0.95;
    transition: 0.35s ease;
}

.hetal-category-overlay{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 20px 22px;
    z-index: 2;
}

.hetal-category-overlay h3{
    margin: 0;
    color: #ffffff;
    font-size: 29px;
    line-height: 1.15;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.hetal-category-card:hover img{
    transform: scale(1.08);
}

.hetal-category-card:hover::after{
    background: linear-gradient(
        to top,
        rgba(200, 155, 60, 0.88) 0%,
        rgba(15, 92, 83, 0.55) 45%,
        rgba(15, 92, 83, 0.10) 78%,
        rgba(15, 92, 83, 0.00) 100%
    );
}

.hetal-category-card:hover .hetal-category-overlay h3{
    color: #fffdf8;
}

@media (max-width: 991px){
    .hetal-category-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .hetal-categories-section{
        padding: 45px 0 35px;
    }

    .hetal-category-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .hetal-category-card,
    .hetal-category-card img{
        min-height: 220px;
        height: 220px;
    }

    .hetal-category-overlay h3{
        font-size: 24px;
    }
}
.hetal-categories-section{
    padding: 70px 0;
    background: #f8f5ee;
}

.hetal-category-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.hetal-category-card{
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    text-decoration: none;
}

.hetal-category-card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Overlay */
.hetal-category-card::after{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15,92,83,0.9),
        rgba(15,92,83,0.3),
        rgba(15,92,83,0.05)
    );
    transition: 0.4s ease;
}

/* Text */
.hetal-category-overlay{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px;
    z-index: 2;
}

.hetal-category-overlay h3{
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    margin: 0;
    font-family: 'Playfair Display', serif;
}

/* Hover effect */
.hetal-category-card:hover img{
    transform: scale(1.1);
}

.hetal-category-card:hover::after{
    background: linear-gradient(
        to top,
        rgba(200,155,60,0.9),
        rgba(15,92,83,0.4),
        rgba(15,92,83,0.05)
    );
}

/* Responsive */
@media (max-width: 992px){
    .hetal-category-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px){
    .hetal-category-grid{
        grid-template-columns: 1fr;
    }

    .hetal-category-card img{
        height: 220px;
    }

    .hetal-category-overlay h3{
        font-size: 22px;
    }
}
.hetal-feature-strip{
    background: #ffffff;
    padding: 28px 0;
    border-top: 1px solid #e8e0d4;
    border-bottom: 1px solid #e8e0d4;
}

.hetal-feature-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

.hetal-feature-item{
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px 34px;
    position: relative;
}

.hetal-feature-item:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 72px;
    background: #cfdccf;
}

.hetal-feature-icon{
    flex-shrink: 0;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid #2f67b1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2f67b1;
    font-size: 30px;
    background: #fff;
}

.hetal-feature-text h4{
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #17352f;
}

.hetal-feature-text p{
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #6c6c6c;
}

@media (max-width: 991px){
    .hetal-feature-grid{
        grid-template-columns: 1fr;
    }

    .hetal-feature-item{
        padding: 18px 10px;
    }

    .hetal-feature-item:not(:last-child)::after{
        display: none;
    }

    .hetal-feature-item{
        border-bottom: 1px solid #e8e0d4;
    }

    .hetal-feature-item:last-child{
        border-bottom: none;
    }
}

@media (max-width: 576px){
    .hetal-feature-item{
        gap: 16px;
        padding: 16px 0;
    }

    .hetal-feature-icon{
        width: 56px;
        height: 56px;
        font-size: 24px;
    }

    .hetal-feature-text h4{
        font-size: 16px;
    }

    .hetal-feature-text p{
        font-size: 14px;
    }
}
.hetal-feature-strip{
    background: #ffffff;
    padding: 30px 0;
    border-top: 1px solid #e8e0d4;
    border-bottom: 1px solid #e8e0d4;
}

.hetal-feature-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
}

/* each item */
.hetal-feature-item{
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 12px 34px;
    position: relative;
}

/* divider line */
.hetal-feature-item:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #d8d1c5;
}

/* ICON STYLE (THEME COLOR) */
.hetal-feature-icon{
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid #0f5c53; /* green */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f5c53; /* green */
    font-size: 28px;
    background: #f7f3ea;
    transition: 0.3s ease;
}

/* hover */
.hetal-feature-item:hover .hetal-feature-icon{
    background: #c89b3c; /* gold */
    border-color: #c89b3c;
    color: #fff;
}

/* TEXT */
.hetal-feature-text h4{
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #17352f; /* dark green */
}

.hetal-feature-text p{
    margin: 0;
    font-size: 15px;
    color: #6c6c6c;
}

/* responsive */
@media (max-width: 991px){
    .hetal-feature-grid{
        grid-template-columns: 1fr;
    }

    .hetal-feature-item{
        padding: 18px 10px;
        border-bottom: 1px solid #e8e0d4;
    }

    .hetal-feature-item:last-child{
        border-bottom: none;
    }

    .hetal-feature-item::after{
        display: none;
    }
}

@media (max-width: 576px){
    .hetal-feature-icon{
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .hetal-feature-text h4{
        font-size: 16px;
    }

    .hetal-feature-text p{
        font-size: 14px;
    }
}
.hetal-new-arrivals{
    padding: 70px 0 80px;
    background: #f8f5ee;
    position: relative;
}

.hetal-section-heading{
    text-align: center;
    margin-bottom: 35px;
}

.hetal-section-heading h2{
    margin: 0;
    font-size: 34px;
    color: #17352f;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.hetal-section-heading h2::after{
    content: "";
    width: 70px;
    height: 3px;
    background: #c89b3c;
    display: block;
    margin: 12px auto 0;
}

.hetal-products-wrapper{
    position: relative;
}

.hetal-products-slider{
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 5px 2px;
}

.hetal-products-slider::-webkit-scrollbar{
    display: none;
}

.hetal-product-card{
    min-width: 300px;
    max-width: 300px;
    background: #ffffff;
    border: 1px solid #ece2d2;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    transition: 0.35s ease;
    overflow: hidden;
}

.hetal-product-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.10);
}

.hetal-product-image-wrap{
    position: relative;
    overflow: hidden;
    height: 280px;
    background: #f4efe6;
}

.hetal-product-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.hetal-product-card:hover .hetal-product-image-wrap img{
    transform: scale(1.08);
}

.hetal-product-info{
    padding: 20px 20px 24px;
    text-align: center;
}

.hetal-product-info h3{
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.4;
    color: #2a2a2a;
    min-height: 56px;
}

.hetal-product-cat{
    margin: 0 0 14px;
    font-size: 15px;
    color: #0f5c53;
    font-weight: 600;
}

.hetal-product-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hetal-product-rating{
    display: flex;
    align-items: center;
    gap: 3px;
    color: #d7a21d;
    font-size: 15px;
}

.hetal-product-rating span{
    color: #666;
    margin-left: 4px;
}

.hetal-eye-btn{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f1eadc;
    color: #17352f;
    cursor: pointer;
    transition: 0.3s ease;
}

.hetal-eye-btn:hover{
    background: #c89b3c;
    color: #fff;
}

.hetal-product-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 155px;
    height: 46px;
    background: #0f5c53;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.hetal-product-btn:hover{
    background: #c89b3c;
    color: #fff;
}

.hetal-scroll-btn{
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #0f5c53;
    color: #fff;
    z-index: 5;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.hetal-scroll-btn:hover{
    background: #c89b3c;
}

.hetal-scroll-left{
    left: -22px;
}

.hetal-scroll-right{
    right: -22px;
}

/* Modal */
.hetal-image-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.72);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.hetal-image-modal.active{
    display: flex;
}

.hetal-image-modal-content{
    position: relative;
    max-width: 700px;
    width: 100%;
    background: #fff;
    padding: 14px;
}

.hetal-image-modal-content img{
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.hetal-close-modal{
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #0f5c53;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.hetal-close-modal:hover{
    background: #c89b3c;
}

@media (max-width: 768px){
    .hetal-new-arrivals{
        padding: 50px 0 60px;
    }

    .hetal-product-card{
        min-width: 260px;
        max-width: 260px;
    }

    .hetal-product-image-wrap{
        height: 240px;
    }

    .hetal-scroll-left{
        left: 5px;
    }

    .hetal-scroll-right{
        right: 5px;
    }
}
.hetal-new-arrivals{
    padding: 70px 0 80px;
    background: #f8f5ee;
    position: relative;
    overflow: hidden;
}

/* decorative corner images */
.hetal-new-arrivals::before,
.hetal-new-arrivals::after{
    content: "";
    position: absolute;
    top: 0;
    width: 260px;
    height: 180px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
    pointer-events: none;
    opacity: 0.95;
}

.hetal-new-arrivals::before{
    left: 0;
    background-image: url('https://png.pngtree.com/png-clipart/20221016/original/pngtree-green-leaf-branch-decoration-png-image_8699368.png');
    background-position: top left;
}

.hetal-new-arrivals::after{
    right: 0;
    transform: scaleX(-1);
    background-image: url('https://png.pngtree.com/png-clipart/20221016/original/pngtree-green-leaf-branch-decoration-png-image_8699368.png');
    background-position: top right;
}

/* content above decoration */
.hetal-new-arrivals .container{
    position: relative;
    z-index: 2;
}
.hetal-new-arrivals .container::before,
.hetal-new-arrivals .container::after{
    content: "";
    position: absolute;
    bottom: -20px;
    width: 220px;
    height: 150px;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
    pointer-events: none;
    opacity: 0.9;
}

.hetal-new-arrivals .container::before{
    left: -40px;
    background-image: url('https://png.pngtree.com/png-clipart/20221016/original/pngtree-green-leaf-branch-decoration-png-image_8699368.png');
    background-position: bottom left;
}

.hetal-new-arrivals .container::after{
    right: -40px;
    transform: scaleX(-1);
    background-image: url('https://png.pngtree.com/png-clipart/20221016/original/pngtree-green-leaf-branch-decoration-png-image_8699368.png');
    background-position: bottom right;
}
.hetal-featured-products{
    position: relative;
    padding: 78px 0 88px;
    background: linear-gradient(180deg, #f8f5ee 0%, #f6f0e3 100%);
    overflow: hidden;
}

.hetal-featured-products .container{
    position: relative;
    z-index: 2;
}

/* Decorative corners */
.hetal-fp-decor{
    position: absolute;
    top: -20px;
    width: 220px;
    height: 150px;
    z-index: 1;
    pointer-events: none;
}

.hetal-fp-decor-left{
    left: -25px;
}

.hetal-fp-decor-right{
    right: -25px;
    transform: scaleX(-1);
}

.fp-leaf{
    position: absolute;
    display: block;
    width: 48px;
    height: 22px;
    background: linear-gradient(90deg, #8bc34a, #3c8f3a);
    border-radius: 100% 0 100% 0;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
    opacity: 0.95;
}

.fp-leaf::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 2px;
    width: 2px;
    height: 18px;
    background: rgba(255,255,255,0.45);
    transform: translateX(-50%) rotate(25deg);
    border-radius: 2px;
}

.fp-leaf-1{
    top: 8px;
    left: 10px;
    transform: rotate(-28deg);
}

.fp-leaf-2{
    top: 32px;
    left: 42px;
    transform: rotate(-10deg);
}

.fp-leaf-3{
    top: 62px;
    left: 76px;
    transform: rotate(16deg);
}

/* Sparkles */
.fp-spark{
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #d8b255 0%, #c89b3c 60%, rgba(200,155,60,0) 70%);
    border-radius: 50%;
    animation: hetalBlink 1.8s infinite ease-in-out;
    box-shadow: 0 0 14px rgba(200,155,60,0.55);
}

.fp-spark::before,
.fp-spark::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    background: rgba(200,155,60,0.85);
    transform: translate(-50%, -50%);
    border-radius: 4px;
}

.fp-spark::before{
    width: 2px;
    height: 16px;
}

.fp-spark::after{
    width: 16px;
    height: 2px;
}

.fp-spark-1{
    top: 18px;
    left: 118px;
    animation-delay: 0s;
}

.fp-spark-2{
    top: 58px;
    left: 145px;
    animation-delay: .5s;
}

.fp-spark-3{
    top: 96px;
    left: 92px;
    animation-delay: 1s;
}

@keyframes hetalBlink{
    0%, 100%{
        opacity: .35;
        transform: scale(.8);
    }
    50%{
        opacity: 1;
        transform: scale(1.25);
    }
}

/* Heading */
.hetal-section-heading{
    text-align: center;
    margin-bottom: 34px;
}

.hetal-section-heading h2{
    margin: 0;
    font-size: 36px;
    color: #17352f;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.hetal-section-heading h2::after{
    content: "";
    width: 72px;
    height: 3px;
    background: #c89b3c;
    display: block;
    margin: 12px auto 0;
}

/* Slider */
.hetal-products-wrapper{
    position: relative;
}

.hetal-products-slider{
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 6px 2px;
}

.hetal-products-slider::-webkit-scrollbar{
    display: none;
}

/* Card */
.hetal-product-card{
    min-width: 285px;
    max-width: 285px;
    background: #ffffff;
    border: 1px solid #ece2d2;
    box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: .35s ease;
}

.hetal-product-card:hover{
    transform: translateY(-7px);
    box-shadow: 0 16px 34px rgba(0,0,0,0.10);
}

.hetal-product-image-wrap{
    height: 260px;
    overflow: hidden;
    background: #f3ece0;
}

.hetal-product-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
}

.hetal-product-card:hover .hetal-product-image-wrap img{
    transform: scale(1.08);
}

.hetal-product-info{
    padding: 20px 18px 24px;
    text-align: center;
}

.hetal-product-info h3{
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.35;
    color: #2b2b2b;
    min-height: 56px;
}

.hetal-product-cat{
    margin: 0 0 14px;
    color: #0f5c53;
    font-size: 15px;
    font-weight: 600;
}

.hetal-product-bottom{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 18px;
}

.hetal-product-rating{
    display: flex;
    align-items: center;
    gap: 3px;
    color: #d8a11c;
    font-size: 15px;
}

.hetal-product-rating span{
    color: #666;
    margin-left: 4px;
}

.hetal-eye-btn{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: #f2eadc;
    color: #17352f;
    cursor: pointer;
    transition: .3s ease;
}

.hetal-eye-btn:hover{
    background: #c89b3c;
    color: #fff;
}

.hetal-product-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 46px;
    background: #0f5c53;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s ease;
}

.hetal-product-btn:hover{
    background: #c89b3c;
    color: #fff;
}

/* Arrows */
.hetal-scroll-btn{
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: #0f5c53;
    color: #fff;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: .3s ease;
}

.hetal-scroll-btn:hover{
    background: #c89b3c;
}

.hetal-scroll-left{
    left: -22px;
}

.hetal-scroll-right{
    right: -22px;
}

/* Modal */
.hetal-image-modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.74);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.hetal-image-modal.active{
    display: flex;
}

.hetal-image-modal-content{
    position: relative;
    max-width: 720px;
    width: 100%;
    background: #fff;
    padding: 14px;
}

.hetal-image-modal-content img{
    width: 100%;
    max-height: 80vh;
    object-fit: contain;
    display: block;
}

.hetal-close-modal{
    position: absolute;
    top: -14px;
    right: -14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #0f5c53;
    color: #fff;
    cursor: pointer;
    font-size: 18px;
}

.hetal-close-modal:hover{
    background: #c89b3c;
}

@media (max-width: 768px){
    .hetal-featured-products{
        padding: 56px 0 66px;
    }

    .hetal-fp-decor{
        width: 140px;
        height: 100px;
        top: -10px;
    }

    .fp-leaf{
        width: 34px;
        height: 16px;
    }

    .hetal-product-card{
        min-width: 255px;
        max-width: 255px;
    }

    .hetal-product-image-wrap{
        height: 230px;
    }

    .hetal-scroll-left{
        left: 6px;
    }

    .hetal-scroll-right{
        right: 6px;
    }

    .hetal-section-heading h2{
        font-size: 28px;
    }
}
.hetal-updates{
    background: #eaf3f1;
    padding: 70px 0;
    position: relative;
}

.section-title{
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2{
    font-size: 32px;
    color: #17352f;
}

.section-title h2::after{
    content:"";
    width:70px;
    height:3px;
    background:#c89b3c;
    display:block;
    margin:10px auto;
}

/* Grid */
.updates-grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap:20px;
}

/* Cards */
.update-card{
    background:#fff;
    padding:10px;
    box-shadow:0 8px 20px rgba(0,0,0,0.05);
}

.update-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.update-card h4{
    font-size:16px;
    margin:10px 0;
}

.update-card a{
    display:block;
    background:#0f5c53;
    color:#fff;
    text-align:center;
    padding:8px;
}

.update-card a:hover{
    background:#c89b3c;
}

/* Right list */
.update-list{
    background:#fff;
    padding:10px;
}

.list-item{
    display:flex;
    gap:10px;
    margin-bottom:10px;
}

.list-item img{
    width:60px;
    height:60px;
    object-fit:cover;
}

.view-all{
    color:#0f5c53;
    display:block;
    text-align:right;
}

/* Sparkles */
.spark{
    position:absolute;
    width:8px;
    height:8px;
    background:#c89b3c;
    border-radius:50%;
    animation: blink 1.5s infinite;
}

.spark-1{top:20px; left:20px;}
.spark-2{top:60px; right:40px;}

@keyframes blink{
    0%{opacity:0.2;}
    50%{opacity:1;}
    100%{opacity:0.2;}
}
.hetal-product-list{
    padding:60px 0;
    background:#fff;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.product-column h3{
    font-size:18px;
    margin-bottom:15px;
    border-bottom:2px solid #c89b3c;
    padding-bottom:5px;
}

.mini-product{
    display:flex;
    gap:10px;
    margin-bottom:10px;
    transition:0.3s;
}

.mini-product img{
    width:60px;
    height:60px;
}

.mini-product:hover{
    transform:translateX(5px);
}

/* Mobile */
@media(max-width:768px){
    .updates-grid{
        grid-template-columns:1fr;
    }

    .product-grid{
        grid-template-columns:1fr;
    }
}
.hetal-footer{
    background: #0f5c53;
    color: #fff;
    padding-top: 60px;
}

.footer-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

.footer-col h3,
.footer-col h4{
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p{
    font-size: 14px;
    line-height: 1.7;
}

.footer-col ul{
    list-style: none;
    padding: 0;
}

.footer-col ul li{
    margin-bottom: 8px;
}

.footer-col ul li a{
    color: #dcdcdc;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover{
    color: #c89b3c;
}

.footer-col i{
    margin-right: 8px;
    color: #c89b3c;
}

/* social */
.footer-social{
    margin-top: 10px;
}

.footer-social a{
    display: inline-block;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    background: #ffffff;
    color: #fff;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-social a:hover{
    background: #fff;
    color: #0f5c53;
}

/* bottom */
.footer-bottom{
    background: #0b4b44;
    text-align: center;
    padding: 15px;
    margin-top: 40px;
}

.footer-bottom p{
    margin: 0;
    font-size: 14px;
}

/* MOBILE */
@media(max-width: 768px){
    .footer-grid{
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social{
        justify-content: center;
    }
}
:root{
    --theme-green:#0f5c53;
    --theme-green-dark:#0a453e;
    --theme-gold:#c89b3c;
    --theme-cream:#f7f3ea;
    --theme-text:#2d2d2d;
    --theme-muted:#6b6b6b;
    --border:#ddd4c7;
    --blue-icon:#2d5fa8;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Inter', sans-serif;
    background:var(--theme-cream);
    color:var(--theme-text);
}

.container{
    width:min(94%, 1450px);
    margin:auto;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

/* Top Strip */
.top-strip{
    background:linear-gradient(90deg, var(--theme-green), var(--theme-green-dark));
    color:#fff;
    font-size:14px;
    padding:10px 0;
}

.top-strip-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.promo-text{
    display:flex;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
    font-weight:600;
}

.badge-pill{
    background:rgba(255,255,255,0.12);
    color:#fff4d9;
    border:1px solid rgba(255,255,255,0.18);
    padding:5px 12px;
    border-radius:30px;
    font-size:12px;
}

.top-social{
    display:flex;
    align-items:center;
    gap:12px;
}

.top-social span{
    font-weight:600;
}

.top-social a{
    width:34px;
    height:34px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,0.24);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.3s ease;
}

.top-social a:hover{
    background:var(--theme-gold);
    border-color:var(--theme-gold);
}

/* Header */
.header-main{
    background:var(--theme-cream);
    padding:22px 0;
    border-bottom:1px solid var(--border);
}

.header-inner{
    display:grid;
    grid-template-columns: 330px 1fr 190px;
    align-items:center;
    gap:28px;
    position:relative;
}

.search-wrap{
    display:grid;
    grid-template-columns:190px 1fr 70px;
    align-items:center;
    height:58px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:40px;
    overflow:hidden;
}

.search-wrap select,
.search-wrap input{
    border:none;
    outline:none;
    height:100%;
    padding:0 18px;
    font-size:16px;
    background:transparent;
    color:#37433d;
}

.search-wrap select{
    border-right:1px solid #e6ded2;
}

.search-wrap input::placeholder{
    color:#9f9f9f;
}

.search-btn{
    border:none;
    background:#fff;
    color:var(--theme-green-dark);
    font-size:24px;
    cursor:pointer;
}

.header-buttons{
    display:flex;
    justify-content:flex-end;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:54px;
    padding:0 28px;
    text-decoration:none;
    font-weight:700;
}

.primary-btn{
    background:var(--theme-green);
    color:#fff;
    transition:.3s ease;
}

.primary-btn:hover{
    background:var(--theme-gold);
}

.mobile-toggle{
    display:none;
    width:46px;
    height:46px;
    border:none;
    background:var(--theme-green);
    color:#fff;
    border-radius:10px;
    font-size:18px;
    cursor:pointer;
}

/* Navbar */
.navbar{
    background:linear-gradient(90deg, var(--theme-green), #14685f);
}

.nav-inner{
    min-height:68px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:42px;
    flex-wrap:wrap;
}

.nav-inner a{
    color:#fff;
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    position:relative;
    padding:8px 0;
}

.nav-inner a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:#f0d9a6;
    transition:.3s ease;
}

.nav-inner a:hover::after,
.nav-inner a.active::after{
    width:100%;
}

/* Mobile Bottom Bar */
.mobile-bottom-bar{
    display:none;
}

@media (max-width: 1100px){
    .header-inner{
        grid-template-columns:1fr;
        gap:20px;
    }

    .header-buttons{
        justify-content:center;
    }
}

@media (max-width: 768px){

    body{
        padding-bottom:92px;
    }

    .top-strip{
        display:none;
    }

    .header-main{
        padding:14px 0;
    }

    .header-inner{
        display:grid !important;
        grid-template-columns:1fr auto;
        gap:12px;
        align-items:center;
    }

    .brand{
        width:100%;
        display:flex !important;
        align-items:center;
        gap:10px !important;
    }

    .brand img{
        max-height:64px !important;
        width:auto;
    }

    .brand-text h1{
        font-size:19px !important;
        line-height:1.05 !important;
    }

    .brand-text p{
        font-size:10px !important;
        line-height:1.2 !important;
        margin-top:3px !important;
    }

    .header-buttons{
        display:none;
    }

    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .search-wrap{
        grid-column:1 / -1;
        width:100%;
        margin-top:4px;
        display:grid;
        grid-template-columns: 140px 1fr 56px;
        height:50px;
        border-radius:28px;
    }

    .search-wrap select,
    .search-wrap input{
        font-size:15px;
        padding:0 14px;
    }

    .search-btn{
        font-size:20px;
    }

    .navbar{
        display:none;
        background:var(--theme-green);
        border-top:1px solid rgba(255,255,255,0.08);
    }

    .navbar.open{
        display:block;
    }

    .nav-inner{
        width:100%;
        padding:10px 0 14px;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .nav-inner a{
        width:100%;
        padding:12px 0;
        font-size:15px;
        border-bottom:1px solid rgba(255,255,255,0.10);
    }

    .nav-inner a:last-child{
        border-bottom:none;
    }

    .mobile-bottom-bar{
        display:flex;
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        height:82px;
        background:#ffffff;
        box-shadow:0 -6px 18px rgba(0,0,0,0.10);
        z-index:9999;
        align-items:center;
        justify-content:space-around;
        padding:8px 6px 10px;
    }

    .mobile-bottom-item{
        flex:1;
        text-decoration:none;
        color:var(--blue-icon);
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:4px;
        font-size:12px;
        position:relative;
    }

    .mobile-bottom-item i{
        font-size:23px;
        line-height:1;
    }

    .mobile-whatsapp-item{
        margin-top:-34px;
    }

    .mobile-whatsapp-circle{
        width:70px;
        height:70px;
        border-radius:50%;
        background:#31c857;
        display:flex;
        align-items:center;
        justify-content:center;
        box-shadow:0 8px 20px rgba(49,200,87,0.35);
        border:5px solid #ffffff;
    }

    .mobile-whatsapp-circle i{
        color:#fff;
        font-size:30px;
    }

    .mobile-whatsapp-item span:last-child{
        margin-top:4px;
    }
}
@media (max-width: 768px){

    body{
        padding-bottom:92px;
    }

    .container{
        width: calc(100% - 28px);
        margin: 0 auto;
    }

    .top-strip{
        display:none;
    }

    .header-main{
        padding:14px 0 12px;
    }

    .header-inner{
        display:grid !important;
        grid-template-columns: 1fr auto;
        gap:12px;
        align-items:center;
    }

    .brand{
        width:100%;
        display:flex !important;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        gap:8px !important;
        text-align:center;
        grid-column:1 / 2;
    }

    .brand img{
        max-height:58px !important;
        width:auto;
        margin:0 auto;
    }

    .brand-text h1{
        font-size:18px !important;
        line-height:1.08 !important;
    }

    .brand-text p{
        font-size:10px !important;
        line-height:1.25 !important;
        margin-top:3px !important;
    }

    .header-buttons{
        display:none;
    }

    .mobile-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:48px;
        height:48px;
        margin-top:0;
        border-radius:12px;
    }

    .search-wrap{
        grid-column:1 / -1;
        width:100%;
        margin-top:4px;
        display:grid;
        grid-template-columns: 175px 1fr 54px;
        height:50px;
        border-radius:28px;
        overflow:hidden;
    }

    .search-wrap select,
    .search-wrap input{
        font-size:14px;
        padding:0 12px;
    }

    .search-wrap select{
        min-width:0;
    }

    .search-wrap input{
        min-width:0;
    }

    .search-btn{
        font-size:20px;
    }

    .navbar{
        display:none;
        background:#0f5c53;
        border-top:1px solid rgba(255,255,255,0.08);
        margin-top:10px;
    }

    .navbar.open{
        display:block;
    }

    .nav-inner{
        width:100%;
        padding:0;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .nav-inner a{
        width:100%;
        padding:14px 14px;
        font-size:15px;
        border-bottom:1px solid rgba(255,255,255,0.10);
    }

    .nav-inner a:last-child{
        border-bottom:none;
    }

    /* HERO SLIDER HEIGHT FIX */
    .hero-slider{
        margin-top:0;
    }

    .slide{
        min-height:360px !important;
        background-position:center center;
    }

    .hero-content{
        padding:55px 0 60px !important;
        text-align:left;
    }

    .hero-content h2{
        font-size:30px !important;
        line-height:1.1;
        max-width:100%;
    }

    .hero-content p{
        font-size:15px !important;
        line-height:1.5;
        max-width:100%;
        margin-bottom:20px;
    }

    .hero-tag{
        font-size:12px;
        padding:8px 14px;
        margin-bottom:14px;
    }

    .hero-buttons{
        gap:10px;
    }

    .hero-btn{
        min-width:140px;
        min-height:44px;
        padding:10px 16px;
        font-size:14px;
    }

    .slider-controls{
        bottom:14px;
    }

    .category-strip{
        grid-template-columns:repeat(2,1fr);
    }

    .category-item{
        padding:18px 10px;
    }

    .category-img{
        width:82px;
        height:82px;
    }

    .category-item h4{
        font-size:14px;
    }
}
/* Enquiry Popup */
.hetal-popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 9998;
}

.hetal-popup-overlay.active{
    opacity: 1;
    visibility: visible;
}

.hetal-enquiry-popup{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.92);
    width: min(92%, 760px);
    background: #0f5c53;
    padding: 28px 28px 32px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.28);
}

.hetal-enquiry-popup.active{
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.hetal-popup-close{
    position: absolute;
    top: 12px;
    right: 12px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #0f5c53;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

.hetal-popup-close:hover{
    background: #c89b3c;
    color: #fff;
}

.hetal-popup-inner h2{
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 32px;
    margin: 4px 0 24px;
    font-family: 'Playfair Display', serif;
}

.hetal-form-grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 18px;
}

.hetal-form-group input,
.hetal-form-group textarea{
    width: 100%;
    border: none;
    outline: none;
    background: #f3efe6;
    color: #2d2d2d;
    font-size: 15px;
    padding: 16px 16px;
    border-radius: 0;
}

.hetal-form-group input::placeholder,
.hetal-form-group textarea::placeholder{
    color: #767676;
}

.hetal-full-width{
    margin-bottom: 18px;
}

.hetal-form-group textarea{
    resize: vertical;
    min-height: 120px;
}

.hetal-popup-submit{
    width: 100%;
    border: none;
    background: #e7c98f;
    color: #0f5c53;
    font-size: 20px;
    font-weight: 700;
    height: 54px;
    cursor: pointer;
    transition: 0.3s ease;
    text-transform: uppercase;
}

.hetal-popup-submit:hover{
    background: #c89b3c;
    color: #fff;
}

@media (max-width: 768px){
    .hetal-enquiry-popup{
        width: min(94%, 520px);
        padding: 22px 18px 22px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .hetal-popup-inner h2{
        font-size: 24px;
        margin-bottom: 18px;
    }

    .hetal-form-grid{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hetal-form-group input,
    .hetal-form-group textarea{
        font-size: 14px;
        padding: 14px 14px;
    }

    .hetal-popup-submit{
        height: 50px;
        font-size: 18px;
    }
}
.hetal-new-arrivals{
    position: relative;
    padding: 80px 0;

    background-image: url('image/background.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 768px){

    .hetal-new-arrivals{
        padding: 50px 0;

        /* yaha magic hota hai */
        background-size: cover;
        background-position: center center;
    }
}
/* Dropdown */
.nav-dropdown{
    position: relative;
}

.nav-dropbtn{
    color:#fff;
    text-transform:uppercase;
    font-size:15px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 0;
}

.nav-dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 850px;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    padding: 22px;
    display: none;
    z-index: 999;
    border-top: 3px solid #c89b3c;
}

.nav-dropdown:hover .nav-dropdown-menu{
    display: block;
}

.mega-menu{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.mega-col h4{
    margin: 0 0 14px;
    font-size: 18px;
    color: #0f5c53;
    display:flex;
    align-items:center;
    gap:10px;
    border-bottom: 1px solid #e7dfd2;
    padding-bottom: 10px;
}

.mega-col h4 i{
    color:#c89b3c;
    font-size:18px;
}

.mega-col ul{
    list-style:none;
    padding:0;
    margin:0;
}

.mega-col ul li{
    margin-bottom: 8px;
}

.mega-col ul li a{
    display:block;
    color:#2d2d2d;
    font-size:14px;
    line-height:1.5;
    padding:6px 8px;
    border-radius:6px;
    transition:0.3s ease;
    text-transform:none;
    font-weight:500;
}

.mega-col ul li a:hover{
    background:#f7f3ea;
    color:#0f5c53;
    padding-left:14px;
}

/* mobile dropdown */
@media (max-width: 768px){

    .nav-dropdown{
        width:100%;
    }

    .nav-dropbtn{
        width:100%;
        justify-content:space-between;
        padding:12px 14px;
        border-bottom:1px solid rgba(255,255,255,0.10);
    }

    .nav-dropdown-menu{
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-top: none;
        padding: 12px 14px 8px;
        display: none;
        background: #f7f3ea;
        margin-top: 0;
    }

    .nav-dropdown.open .nav-dropdown-menu{
        display: block;
    }

    .mega-menu{
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .mega-col h4{
        font-size:16px;
        margin-bottom:10px;
    }

    .mega-col ul li a{
        font-size:13px;
        padding:7px 4px;
    }
}
/* Default hidden */
.nav-dropdown-menu{
    display: none;
}

/* Desktop hover */
@media (min-width: 769px){
    .nav-dropdown:hover .nav-dropdown-menu{
        display: block;
    }
}

/* Mobile click */
@media (max-width: 768px){
    .nav-dropdown.open .nav-dropdown-menu{
        display: block;
    }
}
.nav-dropdown-menu{
    opacity:0;
    transform: translateY(10px);
    transition: 0.3s ease;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu{
    opacity:1;
    transform: translateY(0);
}
.nav-dropdown-menu{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.3s ease;
}

/* Desktop */
@media (min-width: 769px){
    .nav-dropdown:hover .nav-dropdown-menu{
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
        display: grid;
    }
}

/* Mobile */
@media (max-width: 768px){
    .nav-dropdown-menu{
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: none;
        transition: none;
    }

    .nav-dropdown.open .nav-dropdown-menu{
        display: block;
    }
}
.nav-dropdown-menu{
    display: none;
}

@media (min-width: 769px){
    .nav-dropdown:hover .nav-dropdown-menu{
        display: grid;
    }
}

@media (max-width: 768px){
    .nav-dropdown.open .nav-dropdown-menu{
        display: block;
    }
}
/* Desktop Floating Buttons */
.hetal-back-to-top,
.hetal-whatsapp-float{
    position: fixed;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

/* Left Arrow */
.hetal-back-to-top{
    left: 18px;
    bottom: 26px;
    width: 54px;
    height: 54px;
    background: #0f5c53;
    color: #ffffff;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.hetal-back-to-top.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hetal-back-to-top:hover{
    background: #c89b3c;
    color: #ffffff;
}

/* Right WhatsApp */
.hetal-whatsapp-float{
    right: 18px;
    bottom: 26px;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #0f5c53;
    color: #ffffff;
    border: 4px solid #f7f3ea;
}

.hetal-whatsapp-float i{
    font-size: 34px;
    line-height: 1;
}

.hetal-whatsapp-float:hover{
    background: #c89b3c;
    color: #ffffff;
    transform: translateY(-3px);
}

/* desktop/laptop only */
@media (max-width: 768px){
    .hetal-back-to-top,
    .hetal-whatsapp-float{
        display: none !important;
    }
}
@media (min-width: 769px){
    .navbar{
        position: sticky;
        top: 0;
        z-index: 9999;
        box-shadow: 0 6px 18px rgba(0,0,0,0.10);
        backdrop-filter: blur(4px);
    }
}