
:root{
  --ink:#15120f;
  --muted:#766e66;
  --line:#e9e1d8;
  --paper:#fff;
  --soft:#f8f5f0;
  --gold:#b88320;
  --gold-light:#efc76a;
  --dark:#0d0c0b;
  --wa:#25d366;
  --radius:22px;
  --shadow:0 18px 55px rgba(27,20,12,.10);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  overflow-x:hidden;
  background:var(--paper);
  color:var(--ink);
  font-family:Inter,Arial,Helvetica,sans-serif;
  -webkit-font-smoothing:antialiased;
}

body.menu-open{overflow:hidden}

a{color:inherit;text-decoration:none}
button,input{font:inherit}
button{touch-action:manipulation}
img{display:block;max-width:100%}

.container{
  width:min(1220px,calc(100% - 40px));
  margin-inline:auto;
}

/* Top announcement */
.topbar{
  position:relative;
  z-index:42;
  padding:10px 16px;
  background:#0c0b0a;
  color:#f2d98d;
  text-align:center;
  font-size:12px;
  font-weight:700;
  line-height:1.25;
  letter-spacing:.13em;
  text-transform:uppercase;
}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(255,255,255,.95);
  border-bottom:1px solid rgba(20,17,14,.08);
  box-shadow:0 5px 24px rgba(0,0,0,.04);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
}

.header-row{
  min-height:86px;
  display:grid;
  grid-template-columns:minmax(0,1fr) auto minmax(0,1fr);
  align-items:center;
  gap:26px;
}

.nav{
  min-width:0;
  display:flex;
  align-items:center;
  gap:24px;
  font-size:14px;
}

.nav a{
  position:relative;
  white-space:nowrap;
}

.nav a::after{
  content:"";
  position:absolute;
  right:100%;
  bottom:-9px;
  left:0;
  height:1px;
  background:var(--gold);
  transition:right .25s ease;
}

.nav a:hover::after{right:0}

.brand-logo{
  width:300px;
  max-width:30vw;
  height:68px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.brand-logo img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center;
}

.header-actions{
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}

.icon-btn,.menu-btn{
  position:relative;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:50%;
  background:transparent;
  color:var(--ink);
  font-size:21px;
  line-height:1;
  cursor:pointer;
  transition:background .2s ease,transform .2s ease;
}

.icon-btn:hover,.menu-btn:hover{
  background:#f4efe8;
  transform:translateY(-1px);
}

.menu-btn{display:none}

.cart-count{
  position:absolute;
  top:0;
  right:0;
  min-width:20px;
  height:20px;
  display:grid;
  place-items:center;
  padding:0 5px;
  border-radius:20px;
  background:#111;
  color:#fff;
  font-size:11px;
}

/* Hero */
.hero{
  position:relative;
  min-height:650px;
  overflow:hidden;
  background:#111;
  color:#fff;
}

.hero-media{
  position:absolute;
  inset:0;
  overflow:hidden;
}

.hero-media video,
.hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  animation:heroZoom 14s ease-in-out infinite alternate;
}

@keyframes heroZoom{
  from{transform:scale(1)}
  to{transform:scale(1.055)}
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,rgba(7,6,5,.88) 0%,rgba(7,6,5,.63) 43%,rgba(7,6,5,.20) 74%,rgba(7,6,5,.32) 100%),
    linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.45));
}

.hero-content{
  position:relative;
  z-index:2;
  min-height:650px;
  display:flex;
  align-items:center;
}

.hero-copy{
  width:min(720px,100%);
  animation:heroIn .8s cubic-bezier(.2,.7,.2,1) both;
}

@keyframes heroIn{
  from{opacity:0;transform:translateY(28px)}
  to{opacity:1;transform:none}
}

.kicker{
  display:inline-flex;
  align-items:center;
  gap:11px;
  color:#f5d67e;
  font-size:12px;
  font-weight:800;
  line-height:1.4;
  letter-spacing:.19em;
  text-transform:uppercase;
}

.kicker::before{
  content:"";
  width:42px;
  height:1px;
  flex:none;
  background:#f5d67e;
}

.hero h1{
  max-width:780px;
  margin:18px 0 24px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(56px,6.4vw,92px);
  line-height:.98;
  letter-spacing:-.045em;
  text-wrap:balance;
}

.hero p{
  max-width:620px;
  margin:0;
  color:#f2f2f2;
  font-size:18px;
  line-height:1.72;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:30px;
}

/* Buttons */
.btn{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 24px;
  border:1px solid #111;
  background:#111;
  color:#fff;
  font-weight:750;
  cursor:pointer;
  transition:transform .22s ease,box-shadow .22s ease,filter .22s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(0,0,0,.16);
  filter:brightness(1.03);
}

.btn.gold{
  border-color:var(--gold);
  background:linear-gradient(135deg,var(--gold),var(--gold-light));
  color:#111;
}

.btn.light{
  border-color:#fff;
  background:#fff;
  color:#111;
}

.btn.full{width:100%}

/* Trust */
.trustbar{
  background:#fff;
  border-bottom:1px solid var(--line);
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
}

.trust-item{
  min-width:0;
  padding:24px;
  border-right:1px solid var(--line);
}

.trust-item:last-child{border-right:0}
.trust-item strong{display:block;margin-bottom:5px;font-size:16px}
.trust-item span{color:var(--muted);font-size:13px;line-height:1.5}

/* Sections */
.section{padding:82px 0}
.section.soft{background:var(--soft)}

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
  margin-bottom:30px;
}

.section-head h2,.page-title h1{
  margin:0;
  font-family:Georgia,"Times New Roman",serif;
  font-size:clamp(35px,4vw,54px);
  line-height:1.06;
  letter-spacing:-.03em;
}

.section-head p{
  max-width:660px;
  margin:9px 0 0;
  color:var(--muted);
  line-height:1.7;
}

.link-arrow{color:var(--gold);font-weight:750;white-space:nowrap}

/* Collections */
.collection-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}

.collection-card{
  position:relative;
  min-height:290px;
  overflow:hidden;
  border-radius:var(--radius);
  background:linear-gradient(145deg,#e7ddd1,#cfc0ae);
  box-shadow:0 10px 26px rgba(0,0,0,.06);
  transform:translateZ(0);
}

.collection-card img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease,filter .5s ease;
}

.collection-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.02) 20%,rgba(0,0,0,.82) 100%);
}

.collection-card-content{
  position:absolute;
  right:18px;
  bottom:18px;
  left:18px;
  z-index:2;
  color:#fff;
}

.collection-card h3{
  margin:0 0 6px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:23px;
}

.collection-card span{color:#eee;font-size:13px}
.collection-card:hover img{transform:scale(1.06);filter:saturate(1.08)}

/* Products */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:24px;
}

.product-card{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.035);
  transition:transform .28s ease,box-shadow .28s ease;
}

.product-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--shadow);
}

.product-image{
  position:relative;
  overflow:hidden;
  aspect-ratio:1/1.13;
  background:#f4efe9;
}

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

.product-card:hover .product-image img{transform:scale(1.035)}

.product-placeholder{
  width:100%;
  height:100%;
  display:grid;
  place-items:center;
  padding:20px;
  background:repeating-linear-gradient(135deg,#f2ece5 0 18px,#faf7f3 18px 36px);
  color:#8c7e71;
  text-align:center;
  line-height:1.5;
}

.badge{
  position:absolute;
  top:12px;
  left:12px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(17,17,17,.9);
  color:#fff;
  font-size:10px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  backdrop-filter:blur(6px);
}

.product-info{padding:18px}
.product-category{color:var(--muted);font-size:11px;letter-spacing:.13em;text-transform:uppercase}
.product-title{margin:8px 0;font-family:Georgia,"Times New Roman",serif;font-size:21px}
.product-price{margin-bottom:14px;font-weight:800}
.product-card .btn{width:100%;border-color:var(--gold)}

/* Promo */
.promo{padding:0}

.promo-wrap{
  position:relative;
  min-height:420px;
  overflow:hidden;
  border-radius:28px;
  background:#17130f;
  color:#fff;
  box-shadow:var(--shadow);
}

.promo-wrap img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.promo-wrap::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(0,0,0,.84),rgba(0,0,0,.15));
}

.promo-copy{
  position:relative;
  z-index:2;
  max-width:670px;
  padding:70px;
}

.promo-copy h2{
  margin:0 0 18px;
  font-family:Georgia,"Times New Roman",serif;
  font-size:52px;
  line-height:1.05;
}

.promo-copy p{color:#eee;line-height:1.7}

/* Search */
.search-wrap{
  padding:22px 0;
  border-bottom:1px solid var(--line);
  background:#fff;
}

.search{
  max-width:760px;
  display:flex;
  margin:auto;
  box-shadow:0 8px 28px rgba(0,0,0,.05);
}

.search input{
  min-width:0;
  flex:1;
  height:54px;
  padding:0 18px;
  border:1px solid #d0c5b9;
  outline:0;
}

.search input:focus{border-color:var(--gold)}
.search button{width:120px}

/* Inner pages */
.page-title{
  padding:70px 0;
  background:linear-gradient(135deg,#f6f0e8,#fff);
}

.page-title p{max-width:720px;color:var(--muted);line-height:1.7}
.breadcrumb{padding:18px 0;color:var(--muted);font-size:13px}

/* Footer */
.footer{
  padding:58px 0 24px;
  background:#0d0c0b;
  color:#fff;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr repeat(3,minmax(0,1fr));
  gap:32px;
}

.footer p,.footer a{color:#cfc8c0;line-height:1.7}
.footer a{display:block;margin:10px 0}
.footer a:hover{color:#fff}

.footer-bottom{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid #2b2926;
  color:#8f8981;
  font-size:13px;
}

/* Overlay, drawers */
.drawer-backdrop{
  position:fixed;
  inset:0;
  z-index:50;
  background:rgba(0,0,0,.52);
  opacity:0;
  pointer-events:none;
  transition:opacity .25s ease;
}

.drawer-backdrop.open{opacity:1;pointer-events:auto}

.cart-drawer{
  position:fixed;
  top:0;
  right:0;
  z-index:60;
  width:min(440px,94vw);
  height:100dvh;
  display:flex;
  flex-direction:column;
  background:#fff;
  box-shadow:-20px 0 50px rgba(0,0,0,.2);
  transform:translateX(100%);
  transition:transform .3s cubic-bezier(.2,.7,.2,1);
}

.cart-drawer.open{transform:none}

.drawer-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px;
  border-bottom:1px solid var(--line);
}

.drawer-head h2{margin:0;font-family:Georgia,"Times New Roman",serif}
.close-btn{padding:0;border:0;background:none;font-size:28px;cursor:pointer}

.cart-items{flex:1;overflow:auto;padding:18px}
.cart-empty{color:var(--muted)}

.cart-item{
  display:grid;
  grid-template-columns:70px minmax(0,1fr) auto;
  gap:12px;
  padding:13px 0;
  border-bottom:1px solid var(--line);
}

.cart-thumb{width:70px;height:82px;overflow:hidden;background:#f2eee8}
.cart-thumb img{width:100%;height:100%;object-fit:cover}
.cart-item h4{margin:0 0 4px}
.cart-item small{color:var(--muted)}

.qty{display:flex;align-items:center;gap:8px;margin-top:9px}
.qty button{width:28px;height:28px;border:1px solid var(--line);background:#fff;cursor:pointer}
.remove{border:0;background:none;color:#b00020;cursor:pointer}
.drawer-foot{padding:18px;border-top:1px solid var(--line)}
.cart-total{display:flex;justify-content:space-between;margin-bottom:14px;font-size:20px;font-weight:800}
.admin-note{margin-top:10px;color:var(--muted);font-size:12px;line-height:1.5}

.mobile-menu{
  position:fixed;
  top:0;
  left:0;
  z-index:60;
  width:min(340px,88vw);
  height:100dvh;
  padding:24px;
  background:#fff;
  box-shadow:20px 0 50px rgba(0,0,0,.14);
  transform:translateX(-100%);
  transition:transform .3s cubic-bezier(.2,.7,.2,1);
}

.mobile-menu.open{transform:none}
.mobile-menu h3{margin:22px 0 12px;font-family:Georgia,"Times New Roman",serif;font-size:28px}
.mobile-menu a{display:block;padding:14px 0;border-bottom:1px solid var(--line);font-weight:650}

/* WhatsApp */
.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:45;
  width:62px;
  height:62px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.24);
  isolation:isolate;
  transition:transform .25s ease,box-shadow .25s ease;
}

.wa-float img{
  position:relative;
  z-index:2;
  width:46px;
  height:46px;
  object-fit:contain;
  animation:waBob 2.8s ease-in-out infinite;
}

.wa-float:hover{transform:translateY(-5px) scale(1.06);box-shadow:0 22px 42px rgba(0,0,0,.3)}

.wa-float::before,.wa-float::after,.wa-pulse{
  content:"";
  position:absolute;
  inset:-4px;
  z-index:0;
  border:2px solid rgba(37,211,102,.45);
  border-radius:50%;
  animation:waRipple 2.4s ease-out infinite;
}

.wa-float::after{animation-delay:.8s}
.wa-pulse{animation-delay:1.6s}

@keyframes waRipple{
  0%{transform:scale(.8);opacity:.8}
  70%{opacity:0}
  100%{transform:scale(1.65);opacity:0}
}

@keyframes waBob{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-4px)}
}

/* Reveal animation */
.reveal-section,.collection-card,.product-card{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease,transform .65s cubic-bezier(.2,.7,.2,1);
}

.reveal-section.is-visible,.collection-card.is-visible,.product-card.is-visible{
  opacity:1;
  transform:none;
}

/* Tablet */
@media(max-width:1100px){
  .nav{display:none}
  .menu-btn{display:grid}

  .header-row{
    grid-template-columns:1fr auto 1fr;
  }

  .brand-logo{
    width:240px;
    max-width:42vw;
    height:62px;
  }

  .collection-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .footer-grid{grid-template-columns:1fr 1fr}
}

/* Mobile */
@media(max-width:650px){
  .container{width:min(100% - 24px,1220px)}

  .topbar{
    padding:9px 12px;
    font-size:11px;
    letter-spacing:.09em;
  }

  .header-row{
    min-height:70px;
    gap:8px;
  }

  .brand-logo{
    width:205px;
    max-width:58vw;
    height:50px;
  }

  .icon-btn,.menu-btn{
    width:38px;
    height:38px;
    font-size:20px;
  }

  .hero,.hero-content{
    min-height:510px;
  }

  .hero-media video,.hero-media img{
    object-position:center;
  }

  .hero-overlay{
    background:
      linear-gradient(90deg,rgba(6,5,4,.80),rgba(6,5,4,.30)),
      linear-gradient(180deg,rgba(0,0,0,.08),rgba(0,0,0,.62));
  }

  .hero-copy{width:100%}

  .kicker{
    font-size:11px;
    line-height:1.45;
    letter-spacing:.15em;
  }

  .kicker::before{width:34px}

  .hero h1{
    margin:16px 0 20px;
    font-size:43px;
    line-height:.99;
    letter-spacing:-.04em;
  }

  .hero p{
    font-size:15px;
    line-height:1.62;
  }

  .hero-actions{
    gap:10px;
    margin-top:22px;
  }

  .hero-actions .btn{
    min-height:46px;
    padding-inline:20px;
  }

  .trust-grid{grid-template-columns:1fr 1fr}
  .trust-item{padding:20px}
  .trust-item:nth-child(2n){border-right:0}
  .trust-item:nth-child(-n+2){border-bottom:1px solid var(--line)}

  .section{padding:56px 0}
  .section-head{align-items:flex-start;flex-direction:column}

  .collection-grid{
    grid-template-columns:1fr 1fr;
    gap:12px;
  }

  .collection-card{
    min-height:220px;
    border-radius:17px;
  }

  .collection-card h3{font-size:20px}

  .product-grid{grid-template-columns:1fr}
  .product-card{border-radius:17px}

  .promo-wrap{min-height:390px;border-radius:20px}
  .promo-copy{padding:42px 24px}
  .promo-copy h2{font-size:38px}

  .search button{width:90px}
  .footer-grid{grid-template-columns:1fr}

  .wa-float{
    right:15px;
    bottom:15px;
    width:58px;
    height:58px;
  }

  .wa-float img{width:42px;height:42px}
}

/* Very small screens */
@media(max-width:390px){
  .brand-logo{
    width:170px;
    max-width:52vw;
    height:45px;
  }

  .hero h1{font-size:38px}

  .collection-grid{grid-template-columns:1fr}
  .trust-grid{grid-template-columns:1fr}
  .trust-item{border-right:0;border-bottom:1px solid var(--line)}
}

/* Reduced motion */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{
    scroll-behavior:auto!important;
    animation-duration:.01ms!important;
    animation-iteration-count:1!important;
    transition-duration:.01ms!important;
  }
}
