:root{
  --bg:#070b09;
  --card:#0f1713;
  --text:#eaf4ee;
  --muted:#b8cbbb;

  /* herbal accents */
  --accent:#6ee7a8;      /* mint */
  --accent2:#a3e635;     /* herbal lime */
  --accent3:#fbbf24;     /* warm spice */

  --border:rgba(255,255,255,.10);
}


*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 600px at 15% 0%, rgba(110,231,168,.18), transparent 60%),
    radial-gradient(1000px 600px at 85% 10%, rgba(139,211,255,.14), transparent 55%),
    var(--bg);
  color:var(--text);
  line-height:1.5;
}

body::before{
  content:"";
  position:fixed;
  inset:-120px;
  pointer-events:none;
  background:
    radial-gradient(900px 520px at 12% 8%, rgba(163,230,53,.14), transparent 60%),
    radial-gradient(980px 540px at 88% 12%, rgba(110,231,168,.14), transparent 55%),
    radial-gradient(820px 520px at 60% 90%, rgba(251,191,36,.08), transparent 55%);
  filter: blur(2px);
  opacity:.9;
  z-index:-1;
}


/* Logo in header */
.logo{
  width:42px;
  height:42px;
  border-radius:12px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

/* Logo in hero card */
.hero-logo-wrap{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:flex-start; /* left aligned */
  margin: 14px 0 12px;        /* fixes top spacing */
  padding-left: 12px;         /* lines up with card content */
}



.hero-logo{
  width:72px;
  height:72px;
  object-fit:contain;
  object-position:center;
}




.container{max-width:1100px; margin:0 auto; padding:0 18px}

.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,15,13,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 0;
}
.brand{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  color:var(--text);
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}
.brand-name{ margin-top:1px; }
.brand-tag{display:block; font-size:12px; color:var(--muted)}
.nav{display:flex; gap:14px; align-items:center}
.nav a{color:var(--muted); text-decoration:none; font-weight:700}
.nav a:hover{color:var(--text)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid var(--border);
  background: linear-gradient(135deg, rgba(110,231,168,.22), rgba(163,230,53,.16));
  color:var(--text);
  text-decoration:none;
  font-weight:850;
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(110,231,168,.30);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.btn-small{padding:10px 12px; border-radius:12px}
.btn-ghost{background:transparent}

.hero{padding:54px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:stretch;
}
.pill{
  display:inline-block;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  color:var(--muted);
  margin:0 0 10px;
  font-weight:750;
  font-size:13px;
}
h1{font-size:44px; line-height:1.05; margin:8px 0 12px}
.lead{color:var(--muted); font-size:16px; margin:0 0 10px; max-width:60ch}
.tagline{
  margin: 0 0 18px;
  font-weight:900;
  color: rgba(110,231,168,.95);
}
.cta{display:flex; gap:12px; flex-wrap:wrap; margin:0 0 16px}
.cta-tight{margin-top:16px}
.trust{margin:0; padding-left:18px; color:var(--muted)}
.trust li{margin:6px 0}

.hero-card{
  border:1px solid var(--border);
  border-radius:22px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
}
.hero-card-inner{padding:18px}
.hero-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(163,230,53,.14);
  border:1px solid rgba(163,230,53,.25);
  font-weight:900;
  margin-bottom:12px;
}
.hero-items{display:grid; gap:10px}
.mini{
  padding:12px;
  border-radius:16px;
  background: rgba(18,25,22,.65);
  border:1px solid var(--border);
}
.mini-title{font-weight:900}
.mini-sub{color:var(--muted); font-size:13px}
.hero-note{color:var(--muted); font-size:12px; margin:12px 0 0}

.section{padding:46px 0}
.section.alt{background: rgba(255,255,255,.03); border-top:1px solid var(--border); border-bottom:1px solid var(--border)}
.section-head{display:flex; align-items:flex-end; justify-content:space-between; gap:12px; flex-wrap:wrap; margin-bottom:16px}
h2{font-size:28px; margin:0}
.muted{color:var(--muted)}
.small{font-size:13px}

.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
.grid.two{grid-template-columns: repeat(2, 1fr);}

.card{
  border:1px solid var(--border);
  border-radius:18px;
  padding:16px;
  background: rgba(18,25,22,.72);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.card, .pcard, .shot, .table-wrap, .hero-card{
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.card:hover, .pcard:hover, .shot:hover{
  transform: translateY(-2px);
  border-color: rgba(110,231,168,.22);
  box-shadow: 0 14px 44px rgba(0,0,0,.45);
}


.card.soft{background: rgba(255,255,255,.04)}
.card h3{margin:0 0 8px}
.card-row{display:flex; align-items:center; justify-content:space-between; margin-top:14px}
.price{font-weight:950}
.link{color:var(--accent); text-decoration:none; font-weight:900}
.link:hover{text-decoration:underline}

.about{display:grid; grid-template-columns: 1.2fr .8fr; gap:14px; align-items:start}
.list{margin:0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

.contact{
  display:grid; grid-template-columns: 1.1fr .9fr; gap:14px; align-items:start;
}
.contact-grid{display:grid; grid-template-columns: 1fr 1fr; gap:14px}
.contact-note{margin-top:14px}
.ig{font-weight:950; margin:0 0 8px}

.pre{
  margin:10px 0 0;
  padding:12px;
  border-radius:14px;
  background: rgba(0,0,0,.35);
  border:1px solid var(--border);
  overflow:auto;
  white-space:pre-wrap;
}

/* Menu table */
.table-wrap{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:auto;
  background: rgba(18,25,22,.55);
}
.menu{
  width:100%;
  border-collapse:collapse;
  min-width:780px;
}
.menu th, .menu td{
  padding:12px 12px;
  border-bottom:1px solid var(--border);
  vertical-align:top;
}
.menu thead th{
  text-align:left;
  font-size:13px;
  color:var(--muted);
  letter-spacing:.2px;
}
.menu tbody tr:hover{background: rgba(255,255,255,.03)}
.right{text-align:right; white-space:nowrap}

.disclaimer{
  margin:14px 0 0;
  color:var(--muted);
  font-size:13px;
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:12px;
}
.shot{
  margin:0;
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background: rgba(18,25,22,.72);
}
.shot img{
  width:100%;
  height:190px;
  object-fit:cover;
  display:block;
}
.shot figcaption{
  padding:10px 12px;
  color:var(--muted);
  font-size:13px;
}

.footer{padding:20px 0 40px; border-top:1px solid var(--border)}
.footer-inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

.wa-float{
  position:fixed; right:16px; bottom:16px;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(110,231,168,.16);
  color:var(--text);
  text-decoration:none;
  font-weight:950;
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
}
.wa-float:hover{transform: translateY(-2px)}

@media (max-width: 900px){
  h1{font-size:38px}
  .hero-grid{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
  .grid.two{grid-template-columns:1fr}
  .about{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .gallery{grid-template-columns: 1fr 1fr}
}
@media (max-width: 520px){
  .grid{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none}
  .menu{min-width:640px}
}

.product-img{
  width:100%;
  height:180px;      /* makes them consistent */
  object-fit:cover;  /* keeps it looking nice */
  border-radius:12px;
  margin-bottom:10px;
  display:block;
}

/* Featured product cards */
.featured-grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}

.pcard{
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  background: rgba(18,25,22,.72);
  box-shadow: 0 8px 30px rgba(0,0,0,.25);
}

.pcard img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.pbody{ padding:14px; }
.pbody h3{ margin:0 0 6px; }

.pcard-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  margin-top:12px;
}

.photo-strip{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
  margin-top:14px;
}

@media (max-width: 900px){
  .featured-grid{ grid-template-columns: 1fr; }
  .photo-strip{ grid-template-columns: 1fr; }
  .pcard img{ height:240px; }
}

/* Featured cards that don't have a photo yet */
.pcard-nophoto{
  display:flex;
  align-items:stretch;
}
.pcard-nophoto .pbody{
  width:100%;
}
.pcard-nophoto::before{
  content:"Photo coming soon";
  display:block;
  width:100%;
  padding:14px;
  background: rgba(255,255,255,.04);
  border-bottom:1px solid var(--border);
  color: var(--muted);
  font-weight:800;
  font-size:13px;
  letter-spacing:.2px;
}

.section-head h2{
  position:relative;
  padding-bottom:8px;
}
.section-head h2::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:84px;
  height:3px;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(110,231,168,.9), rgba(163,230,53,.8), rgba(251,191,36,.6));
}




