:root{
  --brand:#2f6d53;        /* deep sage */
  --brand-2:#6e8b76;      /* soft sage */
  --brand-3:#e8f1ec;      /* pale mint bg */
  --ink:#1e293b;          /* dark text */
  --ink-2:#475569;        /* secondary text */
  --accent:#0f172a;       /* button text */
  --card:#ffffff;
  --muted:#f6f7f8;
  --shadow: 0 6px 30px rgba(16,24,40,.08);
  --radius: 18px;
}

*{ box-sizing:border-box }

body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
  color:var(--ink);
  background:#fff;
}

/* Header */
.topbar{
  font-size:.875rem;
  background:#0b1324;
  color:#cbd5e1;
}
.topbar a{ color:#cbd5e1;text-decoration:none }

.brand-logo{
  display:flex; align-items:center; gap:.6rem;
  font-weight:700; color:var(--ink); text-decoration:none;
}
.brand-mark{
  width:32px;height:32px;border-radius:8px;
  background:conic-gradient(from 180deg,var(--brand),#86b39b 40%, #a8c4b8 70%, #78a08b);
  position:relative; overflow:hidden;
}
.brand-mark:before{
  content:""; position:absolute; inset:6px 8px 8px 8px;
  background:
    radial-gradient(60% 80% at 40% 55%, #fff8 0 60%, #0000 61%),
    radial-gradient(60% 80% at 65% 45%, #fff8 0 60%, #0000 61%);
  filter: blur(.3px);
  mix-blend-mode:soft-light;
}

/* --- HERO (Background image only) --- */
.hero{
  position:relative;
  display:flex; align-items:center;
  min-height:55svh;
  color:#fff;                            /* readable on dark bg */
  background:
    url("images/hero-bg.png") center/cover no-repeat; /* <-- set your PNG/JPG path */
}
.hero .container{ position:relative; z-index:1 }
.hero-title{
  color:#fff; font-weight:800; letter-spacing:.02em;
  text-transform:uppercase; line-height:1.05;
  font-size: clamp(2rem, 1.2rem + 4vw, 3.25rem);
  text-shadow:0 1px 0 #0001, 0 10px 30px rgba(0,0,0,.18);
}
.hero-btn{
  background:#0f172a; color:#fff; border:0; padding:.85rem 1.2rem; border-radius:12px;
  box-shadow:0 10px 30px rgba(15,23,42,.25);
}
.hero-btn:hover{ opacity:.9 }

/* Sections */
.section{ padding: clamp(2rem, 1.2rem + 3vw, 4rem) 0; }
.section-muted{ background: var(--muted); }
.section-soft{ background: linear-gradient(180deg, #eef6f1, #e7efe9 80%); }
.section-title{
  font-weight:800; letter-spacing:.02em; text-transform:uppercase; font-size:1rem; color:var(--ink-2);
}

/* Product cards */
.product-card{
  border-radius: var(--radius);
  background:var(--card);
  box-shadow: var(--shadow);
  overflow:hidden;
  transition: transform .2s ease;
  height:100%;
}
.product-card:hover{ transform: translateY(-3px) }
.product-media{
  background: #f0f3f2; aspect-ratio: 4/3;
  display:grid; place-items:center;
}
.price{ color:var(--brand); font-weight:700 }
.badge-new{ background: var(--brand); }

/* Info columns */
.info-col h4{ font-weight:800 }
.info-col p{ color:var(--ink-2) }

/* Promo band */
.promo{
  background: linear-gradient(90deg, #7a907e, #3d5f4f);
  color:#fff; border-radius:var(--radius);
  padding:1.25rem 1.25rem;
}

/* Footer */
footer{
  background:#0b1324; color:#b6c2d0;
  padding: 2.2rem 0;
}
footer a{ color:#d9e2ef; text-decoration:none }
.footer-min{ border-top:1px solid #1f2a44; margin-top:1.25rem; padding-top:1rem; font-size:.9rem }

/* Utilities */
.rounded-2xl{ border-radius: 1.25rem }


/* Product media now uses real images */
.product-media{
  background:#f0f3f2;
  aspect-ratio:4/3;
  display:grid; place-items:center;
  overflow:hidden;
}
.product-media img{
  width:100%; height:100%;
  object-fit:contain;   /* show full pack without cropping */
  image-rendering:auto;
  border:0;
}

