*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Segoe UI, sans-serif;
}

body{
  background:#0b0b0d;
  color:#fff;
  padding-bottom:80px;
  overflow-x:hidden;
}

/* =========================
   NAV
========================= */
nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  background:#7A0019;
}

nav h2{
  color:#fff;
}

.cart-btn{
  background:rgba(255,255,255,0.15);
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  color:#fff;
}

/* =========================
   HERO SLIDER
========================= */
.slider{
  height:70vh;
  position:relative;
  overflow:hidden;
}

.slide{
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:1s ease-in-out;
  pointer-events:none;
}

.slide.active{
  opacity:1;
  pointer-events:auto;
}

.slide::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.55);
  z-index:1;
}

.overlay-text{
  position:absolute;
  bottom:20%;
  left:8%;
  background:rgba(0,0,0,0.75);
  padding:20px;
  border-left:5px solid #D4AF37;
  border-radius:10px;
  max-width:90%;
  z-index:5;
}

.overlay-text h1{
  margin-bottom:10px;
}

.overlay-text p{
  margin-bottom:15px;
}

.btn,
.overlay-text button{
  display:inline-block;
  padding:12px 18px;
  border:none;
  border-radius:8px;
  background:#7A0019;
  color:#fff;
  font-weight:bold;
  text-decoration:none;
  cursor:pointer;
  transition:.3s;
}

.btn:hover,
.overlay-text button:hover{
  background:#9C1735;
}

/* =========================
   SEARCH
========================= */
.search-box{
  display:flex;
  justify-content:center;
  padding:15px;
}

.search-box input{
  width:90%;
  max-width:600px;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(212,175,55,.25);
  outline:none;
  background:#151518;
  color:#fff;
}

/* =========================
   DELIVERY BANNER
========================= */
.delivery-banner{
  text-align:center;
  padding:12px;
  background:rgba(122,0,25,0.15);
  border:1px solid rgba(212,175,55,0.2);
  color:#fff;
  font-size:14px;
}

/* =========================
   PRODUCTS
========================= */
.section{
  padding:20px;
}

.section h2{
  text-align:center;
  margin-bottom:20px;
  color:#D4AF37;
}

.grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:15px;
}

@media(max-width:1000px){
  .grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .grid{
    grid-template-columns:1fr;
  }
}

/* =========================
   PRODUCT CARD
========================= */
.card{
  background:#151518;
  border:1px solid rgba(212,175,55,.15);
  padding:12px;
  border-radius:12px;
  transition:.3s;
  display:flex;
  flex-direction:column;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 0 15px rgba(212,175,55,.18);
}

.card img{
  width:100%;
  height:180px;
  object-fit:contain;
  background:#fff;
  border-radius:10px;
  padding:8px;
}

.card h3{
  margin-top:10px;
}

.card p{
  color:#ddd;
  margin-top:5px;
}

/* =========================
   BUTTONS
========================= */
button{
  width:100%;
  padding:10px;
  margin-top:8px;
  border:none;
  border-radius:8px;
  background:#7A0019;
  color:#fff;
  font-weight:bold;
  cursor:pointer;
  transition:.3s;
}

button:hover{
  background:#9C1735;
}

/* =========================
   MODERN CART
========================= */

.cart{
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: #111114;
  color: #fff;
  padding: 0;
  transition: all .35s ease;
  z-index: 1000;
  overflow-y: auto;
  border-left: 1px solid rgba(212,175,55,.3);
  box-shadow: -10px 0 40px rgba(0,0,0,.4);
}

.cart.active{
  right: 0;
}

/* Scrollbar */

.cart::-webkit-scrollbar{
  width:6px;
}

.cart::-webkit-scrollbar-thumb{
  background:#D4AF37;
  border-radius:20px;
}

/* Header */

.cart-header{
  position:sticky;
  top:0;
  background:#151518;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-bottom:1px solid rgba(212,175,55,.2);
}

.cart-header h2{
  font-size:20px;
  margin:0;
  color:#D4AF37;
}

.cart-header button{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#222;
  color:#fff;
  cursor:pointer;
  transition:.3s;
}

.cart-header button:hover{
  background:#D4AF37;
  color:#111;
}

/* Items */

#cart-items{
  padding:20px;
}

/* Footer */

.cart-footer{
  position:sticky;
  bottom:0;
  background:#151518;
  padding:20px;
  border-top:1px solid rgba(212,175,55,.2);
}

.checkout{
  width:100%;
  padding:15px;
  border:none;
  border-radius:12px;
  background:linear-gradient(135deg,#d1b867,#f5d76e);
  color:#111;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.checkout:hover{
  transform:translateY(-2px);
  box-shadow:0 5px 20px rgba(212,175,55,.35);
}

/* Mobile */

@media(max-width:600px){

  .cart{
    width:100%;
    right:-100%;
    border-left:none;
  }

  .cart.active{
    right:0;
  }

}/* =========================
   PREMIUM OVERLAY
========================= */

.overlay{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  opacity: 0;
  visibility: hidden;

  transition: opacity .3s ease,
              visibility .3s ease;

  z-index: 999;
}

.overlay.active{
  opacity: 1;
  visibility: visible;
}
/* =========================
   MODAL
========================= */
.modal{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.85);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
}

.modal-content{
  background:#151518;
  padding:20px;
  width:90%;
  max-width:400px;
  border-radius:12px;
  border:1px solid rgba(212,175,55,.2);
}

.modal-buttons{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.cancel{
  background:#444;
  color:#fff;
}

.confirm{
  background:#7A0019;
  color:#fff;
}

/* =========================
   ABOUT
========================= */
.about-store{
  padding:40px 20px;
  text-align:center;
  max-width:800px;
  margin:auto;
}

.about-store h2{
  margin-bottom:15px;
  color:#D4AF37;
}

/* =========================
   FOOTER
========================= */
.footer{
  text-align:center;
  padding:30px;
  background:linear-gradient(135deg,#5f0014,#7A0019);
  color:#fff;
  margin-top:20px;
}

.footer p{
  margin-top:8px;
}
.social-icons{
  display:flex;
  justify-content:center;
  gap:20px;
  margin-bottom:20px;
}

.social-icons a{
  width:55px;
  height:55px;
  border-radius:50%;
  background:rgba(212,175,55,.1);
  border:1px solid rgba(212,175,55,.2);
  color:#D4AF37;
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  transition:.3s;
}

.social-icons a:hover{
  background:#D4AF37;
  color:#111114;
  transform:translateY(-3px);
}
/* =========================
   WHATSAPP BUTTON
========================= */
.wa{
  position:fixed;
  bottom:90px;
  right:20px;
  width:60px;
  height:60px;
  background:#25D366;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  font-size:28px;
  color:#fff;
  text-decoration:none;
  z-index:1000;
}

/* =========================
   STICKY BAR
========================= */
.sticky-bar{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  background:linear-gradient(135deg,#5f0014,#7A0019);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px;
  z-index:3000;
}

.sticky-info{
  font-weight:bold;
  color:#fff;
  font-size:14px;
}

.sticky-btn{
  background:#D4AF37;
  color:#111;
  border:none;
  padding:10px 15px;
  border-radius:8px;
  cursor:pointer;
  font-weight:bold;
}

.sticky-btn:hover{
  background:#e6c04b;
}