:root{
  /* Christmas + Beach palette */
  --bg: #061a1f;               /* deep ocean night */
  --surface: #0b2526;          /* dark teal */
  --surface2: #0e2f31;         /* slightly lighter teal */

  --text: #fff7ea;             /* warm cream */
  --muted: rgba(255,247,234,.72);
  --line: rgba(255,247,234,.14);

  --sea: #1fb6aa;              /* ocean teal */
  --pine: #1f7a4a;             /* pine green */
  --cran: #c2414b;             /* cranberry red */
  --sand: #f4d7b8;             /* sand */

  --shadow: 0 18px 60px rgba(0,0,0,.35);
  --radius: 18px;
  --radius2: 24px;

  --fontDisplay: "Fraunces", serif;
  --fontBody: "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: var(--fontBody);
  color:var(--text);

  background:
    radial-gradient(1200px 700px at 12% 0%, rgba(31,182,170,.20), transparent 55%),
    radial-gradient(1200px 700px at 88% 10%, rgba(31,122,74,.16), transparent 60%),
    radial-gradient(900px 500px at 60% 90%, rgba(194,65,75,.10), transparent 55%),
    radial-gradient(900px 500px at 30% 85%, rgba(244,215,184,.08), transparent 55%),
    var(--bg);
}

a{color:inherit; text-decoration:none}
.container{max-width:1120px; margin:0 auto; padding:0 20px}
.nowrap{white-space:nowrap}

/* Topbar */
.topbar{
  border-bottom:1px solid var(--line);
  background: rgba(11,37,38,.75);
  backdrop-filter: blur(10px);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; padding:10px 0; font-size:13px; color:var(--muted);
}
.topbar__right{display:none}
@media(min-width:900px){ .topbar__right{display:block} }

/* Header */
.header{
  position:sticky; top:0; z-index:20;
  background: rgba(6,26,31,.65);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0; gap:18px;
}

.brand{
  display:flex; align-items:center; gap:12px;
}
.brand__mark{
  width:40px; height:40px; border-radius:12px;
  display:grid; place-items:center;

  background: linear-gradient(135deg, rgba(31,182,170,.34), rgba(31,122,74,.26));
  border:1px solid rgba(244,215,184,.18);
  box-shadow: 0 10px 35px rgba(0,0,0,.22);

  font-weight:900;
  letter-spacing:.2px;
}
.brand__name{font-family:var(--fontDisplay); font-size:18px; letter-spacing:.2px}
.brand__tag{display:block; font-size:12px; color:var(--muted); margin-top:2px}

.nav{display:none; gap:18px; color:var(--muted)}
.nav a{padding:10px 8px; border-radius:12px}
.nav a:hover{background:rgba(255,247,234,.06); color:var(--text)}
@media(min-width:900px){ .nav{display:flex} }

.header__actions{display:flex; align-items:center; gap:10px}
.icon-btn{
  appearance:none; border:none; cursor:pointer;
  background: rgba(255,247,234,.06);
  border:1px solid var(--line);
  color:var(--text);
  border-radius:14px;
  padding:10px 12px;
  display:flex; align-items:center; gap:10px;
}
.icon-btn:hover{background:rgba(255,247,234,.09)}
.badge{
  min-width:22px; height:22px; border-radius:999px;
  display:grid; place-items:center;

  background: rgba(31,182,170,.22);
  border:1px solid rgba(31,182,170,.38);
  font-size:12px; font-weight:800;
}

/* Hero */
.hero{padding:52px 0 18px}
.hero__inner{display:grid; gap:22px}
@media(min-width:980px){
  .hero__inner{grid-template-columns: 1.3fr .9fr; align-items:stretch}
}
.hero h1{
  font-family:var(--fontDisplay);
  font-size:42px;
  line-height:1.08;
  margin:0 0 12px;
  letter-spacing:.2px;
}
.hero p{margin:0 0 18px; color:var(--muted); font-size:16px; line-height:1.6; max-width:60ch}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px}

.hero__card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background:
    radial-gradient(800px 320px at 20% 0%, rgba(31,182,170,.22), transparent 60%),
    radial-gradient(700px 280px at 95% 15%, rgba(31,122,74,.18), transparent 60%),
    radial-gradient(700px 280px at 50% 90%, rgba(194,65,75,.14), transparent 60%),
    linear-gradient(180deg, rgba(11,37,38,.95), rgba(14,47,49,.85));
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero__cardInner{padding:22px}
.hero__cardInner h3{margin:10px 0 8px; font-size:22px}
.hero__cardInner p{margin:0 0 14px}
.hero__note{margin-top:18px; font-size:12px; color:var(--muted); opacity:.9}

.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px; font-weight:900; letter-spacing:.2px;
  padding:8px 10px; border-radius:999px;

  background: rgba(194,65,75,.16);
  border:1px solid rgba(194,65,75,.30);
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.06);
  color:var(--text);
  font-weight:800;
  gap:10px;
  cursor:pointer;
}
.btn:hover{background: rgba(255,247,234,.09)}
.btn--primary{
  border-color: rgba(31,182,170,.55);
  background: rgba(31,182,170,.18);
}
.btn--primary:hover{background: rgba(31,182,170,.24)}
.btn--ghost{background: transparent}
.btn--sm{padding:10px 12px; border-radius:12px; font-size:14px}

/* Value row */
.value-row{
  display:grid; gap:10px;
  grid-template-columns:1fr;
  margin-top:12px;
}
@media(min-width:720px){ .value-row{grid-template-columns:repeat(3, 1fr)} }
.value{
  display:flex; gap:10px; align-items:flex-start;
  padding:14px;
  border-radius: var(--radius);
  border:1px solid var(--line);
  background: rgba(255,247,234,.04);
}
.value__icon{font-size:18px}
.value__title{font-weight:900; margin-bottom:4px}
.value__text{color:var(--muted); font-size:13px; line-height:1.4}

/* Sections */
.section{padding:54px 0}
.section--alt{
  background: rgba(255,247,234,.02);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line)
}
.section__head{margin-bottom:18px}
.section__head h2{
  margin:0 0 8px;
  font-family:var(--fontDisplay);
  font-size:30px;
}
.section__head p{margin:0; color:var(--muted)}

/* Grid / tiles */
.grid{display:grid; gap:14px}
.grid--collections{grid-template-columns:repeat(2,1fr)}
@media(min-width:900px){ .grid--collections{grid-template-columns:repeat(3,1fr)} }
.tile{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background:
    radial-gradient(500px 180px at 20% 0%, rgba(31,182,170,.14), transparent 60%),
    radial-gradient(500px 180px at 95% 10%, rgba(194,65,75,.10), transparent 60%),
    linear-gradient(180deg, rgba(11,37,38,.95), rgba(14,47,49,.85));
  padding:18px;
  min-height:92px;
  box-shadow: 0 10px 40px rgba(0,0,0,.18);
}
.tile:hover{transform: translateY(-1px); transition: transform .15s ease}
.tile__title{font-weight:900; margin-bottom:6px}
.tile__sub{color:var(--muted); font-size:13px}

/* Controls */
.controls{display:flex; flex-direction:column; gap:12px; margin:14px 0 18px}
@media(min-width:900px){ .controls{flex-direction:row; justify-content:space-between; align-items:center} }
.search input{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.05);
  color:var(--text);
  outline:none;
}
.search input::placeholder{color:rgba(255,247,234,.55)}
.filters{display:flex; flex-wrap:wrap; gap:10px}
.chip{
  border-radius:999px;
  padding:10px 12px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.04);
  color:var(--muted);
  cursor:pointer;
  font-weight:900;
  font-size:13px;
}
.chip:hover{background: rgba(255,247,234,.07); color:var(--text)}
.chip.is-active{
  background: rgba(31,122,74,.18);
  border-color: rgba(31,122,74,.34);
  color: var(--text);
}

/* Products */
.grid--products{grid-template-columns:1fr}
@media(min-width:720px){ .grid--products{grid-template-columns:repeat(2, 1fr)} }
@media(min-width:1080px){ .grid--products{grid-template-columns:repeat(3, 1fr)} }

.product{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(11,37,38,.75);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product__img{
  height:170px;
  background:
    radial-gradient(500px 180px at 20% 0%, rgba(31,182,170,.16), transparent 55%),
    radial-gradient(500px 180px at 90% 10%, rgba(31,122,74,.12), transparent 60%),
    radial-gradient(500px 180px at 50% 90%, rgba(244,215,184,.10), transparent 60%),
    rgba(255,247,234,.03);
  border-bottom:1px solid var(--line);
  display:grid;
  place-items:center;
  color: rgba(255,247,234,.65);
  font-size:13px;
}
.product__img img{width:100%; height:100%; object-fit:cover}
.product__body{padding:16px; display:flex; flex-direction:column; gap:10px; flex:1}
.product__top{display:flex; justify-content:space-between; gap:12px; align-items:flex-start}
.product__title{font-weight:900; line-height:1.2}
.product__price{font-weight:900}
.product__desc{color:var(--muted); font-size:13px; line-height:1.45; margin-top:-4px}
.tag{
  display:inline-flex;
  font-size:12px; font-weight:900;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.04);
  color: var(--muted);
  width: fit-content;
}
.product__actions{display:flex; gap:10px; margin-top:auto}
.product__actions .btn{width:100%}

/* Split / cards */
.split{display:grid; gap:14px}
@media(min-width:980px){ .split{grid-template-columns:1.2fr .8fr; align-items:start} }

.card{
  border-radius: var(--radius2);
  border:1px solid var(--line);
  background: rgba(11,37,38,.75);
  padding:18px;
}

/* Visit grid */
.grid--visit{grid-template-columns:1fr}
@media(min-width:980px){ .grid--visit{grid-template-columns:repeat(3, 1fr)} }

.list{margin:12px 0 0; padding-left:18px; color:var(--muted)}
.list li{margin:8px 0}

/* Forms */
.form{display:flex; flex-direction:column; gap:12px}
label{display:flex; flex-direction:column; gap:8px; font-weight:900; font-size:13px}
input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.05);
  color:var(--text);
  outline:none;
}
textarea{resize:vertical}
.form__msg{min-height:18px; font-size:13px; color:var(--muted)}
.muted{color:var(--muted); font-size:13px; line-height:1.5}

.sep{border:none; border-top:1px solid var(--line); margin:14px 0}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:26px 0;
  background: rgba(11,37,38,.35);
}
.footer__inner{display:flex; flex-direction:column; gap:14px}
@media(min-width:900px){ .footer__inner{flex-direction:row; justify-content:space-between; align-items:center} }
.footer__brand{font-family:var(--fontDisplay); font-size:18px}
.footer__links{display:flex; gap:14px; flex-wrap:wrap; color:var(--muted)}
.footer__links a:hover{color:var(--text)}

/* Cart Drawer */
.cart{position:fixed; inset:0; display:none; z-index:50}
.cart.is-open{display:block}
.cart__overlay{position:absolute; inset:0; background: rgba(0,0,0,.55)}
.cart__panel{
  position:absolute; top:0; right:0; height:100%; width:min(440px, 92vw);
  background: rgba(6,26,31,.92);
  border-left:1px solid var(--line);
  backdrop-filter: blur(16px);
  display:flex; flex-direction:column;
}
.cart__head{
  display:flex; justify-content:space-between; align-items:center;
  padding:16px; border-bottom:1px solid var(--line);
}
.cart__items{padding:10px 16px; overflow:auto; flex:1}
.cart__item{
  display:grid;
  grid-template-columns: 54px 1fr auto;
  gap:12px;
  padding:12px 0;
  border-bottom:1px solid var(--line);
}
.cart__thumb{
  width:54px; height:54px; border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.05);
  overflow:hidden;
}
.cart__thumb img{width:100%; height:100%; object-fit:cover}
.cart__name{font-weight:900; font-size:13px; margin-bottom:6px}
.cart__meta{color:var(--muted); font-size:12px}
.qty{
  display:flex; align-items:center; gap:8px;
  justify-content:flex-end;
}
.qty button{
  width:30px; height:30px;
  border-radius:10px;
  border:1px solid var(--line);
  background: rgba(255,247,234,.06);
  color:var(--text);
  cursor:pointer;
}
.qty button:hover{background: rgba(255,247,234,.09)}
.qty span{min-width:18px; text-align:center; font-weight:900}
.remove{
  margin-top:8px;
  display:inline-flex;
  font-size:12px;
  color: rgba(194,65,75,.98);
  cursor:pointer;
}
.cart__foot{
  border-top:1px solid var(--line);
  padding:14px 16px;
  display:flex; flex-direction:column; gap:10px;
}
.cart__row{display:flex; justify-content:space-between; align-items:center}
.cart__fineprint{font-size:12px}
.note{margin-top:16px; color:var(--muted); font-size:13px}
