:root{
  --bg:#050505;
  --card:#0c0c0c;
  --gold:#d4b06a;
  --white:#f5f1ea;
  --muted:#b7b1a7;
  --wine:#5a0012;
  --line:rgba(255,255,255,0.08);
}

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

html{
  scroll-behavior:smooth;
}

body{
  background:var(--bg);
  color:var(--white);
  font-family:Arial, sans-serif;
  overflow-x:hidden;
}

.container{
  width:100%;
  max-width:1200px;
  margin:auto;
  padding:0 24px;
}

.eyebrow{
  color:var(--gold);
  font-size:12px;
  letter-spacing:5px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:16px;
}

h1,h2,h3{
  letter-spacing:-1.5px;
}

h2{
  font-size:clamp(38px,7vw,72px);
  line-height:1;
  margin-bottom:24px;
}

/* HERO */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:
  linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.85)),
  url("https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?q=80&w=1600&auto=format&fit=crop")
  center/cover;
}

.hero-panel{
  width:100%;
  max-width:580px;
  text-align:center;
  padding:52px 30px;
  border-radius:36px;
  background:rgba(0,0,0,.62);
  border:1px solid var(--line);
  backdrop-filter:blur(12px);
}

.hero h1{
  font-size:clamp(54px,12vw,92px);
  line-height:.9;
  margin-bottom:28px;
}

.hero p{
  color:#cfc7bd;
  font-size:17px;
  line-height:1.75;
  max-width:520px;
  margin:0 auto 34px;
}

.hero-actions{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.btn{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  border-radius:999px;
  text-decoration:none;
  font-weight:700;
  font-size:16px;
}

.btn-primary{
  background:linear-gradient(135deg,#7d1024,#4a0714);
  color:white;
}

.btn-outline{
  border:1px solid rgba(255,255,255,.18);
  color:var(--white);
}

/* INTRO */

.intro{
  padding:110px 0;
}

.lead{
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.8;
}

/* COLLECTION */

.collection-section{
  padding:130px 0;
  background:#050505;
}

.section-header{
  margin-bottom:70px;
}

.products-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:36px;
}

.product-card{
  position:relative;
  overflow:hidden;
  padding:44px 30px;
  border-radius:32px;
  background:
  linear-gradient(180deg,rgba(22,22,22,.96),rgba(8,8,8,1));
  border:1px solid rgba(255,255,255,.06);
  box-shadow:
  0 30px 70px rgba(0,0,0,.45),
  inset 0 1px 0 rgba(255,255,255,.03);
  transition:.35s ease;
}

.product-card:hover{
  transform:translateY(-8px);
  border-color:rgba(212,176,106,.35);
}

.product-card::before{
  content:"";
  position:absolute;
  top:-120px;
  right:-80px;
  width:260px;
  height:260px;
  background:radial-gradient(circle,rgba(212,176,106,.12),transparent 70%);
  pointer-events:none;
}

.bottle-wrap{
  height:420px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:radial-gradient(circle at center,rgba(255,255,255,.06),transparent 60%);
}

.product-bottle{
  max-height:100%;
  max-width:100%;
  object-fit:contain;
  filter:
  drop-shadow(0 30px 40px rgba(0,0,0,.55))
  drop-shadow(0 10px 20px rgba(0,0,0,.35));
  transition:.35s ease;
}

.product-card:hover .product-bottle{
  transform:translateY(-8px) scale(1.03);
}

.product-info{
  margin-top:36px;
}

.product-info span{
  display:block;
  color:var(--gold);
  letter-spacing:4px;
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:16px;
}

.product-info h3{
  font-size:34px;
  line-height:1.08;
  margin-bottom:18px;
}

.product-info p{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
}

.product-footer{
  margin-top:30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
}

.product-footer strong{
  font-size:28px;
}

.product-footer button{
  border:none;
  border-radius:999px;
  background:linear-gradient(135deg,#7d1024,#4a0714);
  color:white;
  padding:15px 24px;
  font-weight:700;
  cursor:pointer;
}

/* CART */

.cart-section{
  padding:110px 0;
  border-top:1px solid var(--line);
}

.cart-box{
  margin-top:32px;
  padding:26px;
  border-radius:28px;
  background:#080808;
  border:1px solid var(--line);
}

.empty-cart{
  color:var(--muted);
}

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

.cart-item strong{
  display:block;
  margin-bottom:5px;
}

.cart-item small{
  color:#888;
}

.cart-item b{
  color:var(--gold);
}

.qty-control{
  display:flex;
  align-items:center;
  gap:10px;
}

.qty-control button{
  width:34px;
  height:34px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,.15);
  background:#151515;
  color:white;
  font-size:18px;
}

.cart-total{
  margin-top:24px;
  padding-top:24px;
  border-top:1px solid var(--line);
  font-size:clamp(28px,7vw,44px);
  font-weight:800;
}

.payment-box{
  margin-top:28px;
  padding:22px;
  border-radius:22px;
  border:1px solid rgba(212,176,106,.2);
  background:#070707;
}

.payment-box h3{
  margin-bottom:16px;
}

.payment-options{
  display:grid;
  gap:12px;
  margin-bottom:18px;
}

.payment-options div{
  padding:15px;
  border-radius:999px;
  background:#111;
  border:1px solid rgba(212,176,106,.25);
  text-align:center;
  font-weight:700;
}

.payment-options i{
  color:var(--gold);
  margin-right:8px;
}

.payment-box p{
  color:var(--muted);
  line-height:1.7;
}

.send-order{
  display:block;
  margin-top:22px;
  padding:16px;
  border-radius:999px;
  background:linear-gradient(135deg,#7d1024,#4a0714);
  color:white;
  text-align:center;
  text-decoration:none;
  font-weight:700;
}

/* CONTACT */

.contact-section{
  padding:110px 0;
  text-align:center;
}

.contact-lead{
  max-width:620px;
  margin:0 auto 38px;
  color:var(--muted);
  line-height:1.7;
}

.contact-grid{
  display:grid;
  gap:16px;
  max-width:760px;
  margin:auto;
}

.contact-card{
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px;
  border-radius:22px;
  background:#080808;
  border:1px solid var(--line);
  color:var(--white);
  text-decoration:none;
  text-align:left;
  transition:.25s ease;
}

.contact-card:hover{
  transform:translateY(-3px);
  border-color:rgba(212,176,106,.45);
}

.contact-card i{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold);
  background:rgba(212,176,106,.08);
  font-size:22px;
  flex-shrink:0;
}

.contact-card strong{
  display:block;
  font-size:18px;
  margin-bottom:4px;
}

.contact-card span{
  display:block;
  color:var(--muted);
  word-break:break-word;
}

footer{
  padding:32px 20px;
  text-align:center;
  color:#777;
  border-top:1px solid var(--line);
  font-size:13px;
}

/* DESKTOP */

@media(min-width:768px){
  .hero-actions{
    flex-direction:row;
    justify-content:center;
  }

  .btn{
    min-width:210px;
  }

  .cart-item{
    grid-template-columns:1fr auto auto;
    align-items:center;
  }

  .payment-options{
    grid-template-columns:1fr 1fr;
  }

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

  .contact-card{
    flex-direction:column;
    justify-content:center;
    text-align:center;
    min-height:150px;
  }
}

/* MOBILE */

@media(max-width:767px){
  .hero-panel{
    padding:42px 24px;
  }

  .intro,
  .collection-section,
  .cart-section,
  .contact-section{
    padding:85px 0;
  }

  .section-header{
    margin-bottom:45px;
  }

  .products-grid{
    grid-template-columns:1fr;
    gap:28px;
  }

  .product-card{
    padding:34px 24px;
  }

  .bottle-wrap{
    height:350px;
  }

  .product-info h3{
    font-size:30px;
  }

  .product-footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .product-footer button{
    width:100%;
  }
}
