/* ======================
  VARIABLES.
====================== */
:root{
  --gold: #d4af37;          
  --gold-light: #f5e6a8;    
  --gold-dark: #b38b1b;    
  --black: #0a0a0a;         
  --black-soft: #141414;    
  --gray-muted: #cfcfcf;    
  --white: #ffffff;
  --radius: 12px;
  --container-width: 1100px;

  --shadow-soft: 0 10px 30px rgba(0,0,0,0.45);
}

/* ======================
  RESET & BASE
====================== */

*{box-sizing:border-box}
html,body{height:100%}

img {
  max-width: 100%;
  display: block;
}

body{
  margin:0;
  font-family: 'Poppins', sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}

.container{
  width:90%;
  max-width:var(--container-width);
  margin:0 auto;
  padding: 40px 0;
}

/* ======================
  HEADER & NAVIGATION
====================== */
.site-header{
  background: var(--black-soft);
  color: var(--white);
  position: sticky;
  top:0;
  z-index:1200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 0;
}

.brand{display:flex;gap:14px;align-items:center}
.logo{width:56px;height:auto;border-radius:8px;object-fit:cover}

.brand-title{
  font-weight:800;
  display:block;
  color: var(--gold);
}
.brand-tag{font-size:0.85rem;color:var(--gray-muted)}


.main-nav a{
  color:rgba(255,255,255,0.9);
  margin:0 16px;
  text-decoration:none;
  font-weight:600;
  transition:color .18s ease;
}

.main-nav a:hover{color:var(--gold)}

.btn{
  display:inline-block;
  text-decoration:none;
  border:none;
  cursor:pointer;
  border-radius:10px;
  padding:10px 18px;
  font-weight:700;
  transition: transform .18s ease, box-shadow .18s ease;
}


.btn-primary{
  background:var(--gold);
  color:var(--black);
  box-shadow: 0 8px 20px rgba(212,175,55,0.25);
}
.btn-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}

.btn-ghost{ 
  background: transparent; 
  color: var(--white); 
  border: 1px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}


.btn-cta{
  padding:14px 28px;
  border-radius:14px;
  background: linear-gradient(180deg,var(--gold-light),var(--gold-dark));
  color:var(--black);
  box-shadow: 0 12px 30px rgba(212,175,55,0.35);
}
/* ======================
  HERO SECTION
====================== */

.hero{
  min-height:72vh;
  display:flex;
  align-items:center;
  color:var(--white);
  background:
    linear-gradient(180deg, rgba(212,175,55,0.18) 0%, rgba(0,0,0,0.75) 70%),
    url('../img/hero-img.webp') center/cover no-repeat;
  margin-bottom: 40px;
  border-bottom-left-radius: 22px;
  border-bottom-right-radius: 22px;
  box-shadow: 0 12px 50px rgba(0,0,0,0.55);
}

.hero-inner{display:flex;align-items:center;justify-content:center;padding:60px 0}
.hero-content{max-width:980px;text-align:center;padding:20px}

.hero h1{
  font-size:3.2rem;
  line-height:1.03;
  letter-spacing:-0.6px;
  margin-bottom:18px;
  color: var(--gold);
  text-shadow: 0 8px 20px rgba(0,0,0,0.7);
}

.hero-sub{
  font-size:1.05rem;
  color:rgba(255,255,255,0.92);
  margin-bottom:22px;
}

/* =========================
  CART COUNTER 
========================= */

.cart-count {
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 50%;
  margin-left: 6px;
  display: inline-block;
  min-width: 22px;
  text-align: center;
  box-shadow: 0 0 10px rgba(212,175,55,0.45);
  transition: transform .2s ease;
}

.cart-bounce {transform: scale(1.3);}

/* ========================= 
  BENEFITS 
========================= */
.benefits{background:var(--black-soft); padding:40px 0}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:22px;
}

.benefit{
  background:#111;
  padding:18px;
  border-radius:12px;
  box-shadow: var(--shadow-soft);
  text-align:left;
  border:1px solid rgba(212,175,55,0.25);
}
.benefit h3{margin-bottom:8px;color:var(--gold)}
.benefit p{color:var(--gray-muted);font-size:0.95rem}

/* =========================
  PRODUCTS 
========================= */
.products {
  background: transparent;
  padding: 60px 0;
}

.products h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 800;
}

.products .lead {
  color: var(--gray-muted);
  margin-bottom: 24px;
  font-size: 1.05rem;
}
.price-note {
  font-size: 0.78rem;
  color: #9a9a9a;
  margin: 6px 0 14px;
  text-align: left;
}

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


.product-card {
  background: #111;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  border: 1px solid rgba(212,175,55,0.15);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}


.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 38px rgba(212,175,55,0.25);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-body h3 {
  margin: 0;
  font-size: 1.18rem;
  font-weight: 700;
  color: var(--gold);
}

.product-info {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.product-info .price {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gold-light);
}

.product-info .approx-weight {
  color: var(--gray-muted);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 4px;
}

.controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: auto;
}

.controls .qty {
  width: 60px;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid rgba(212,175,55,0.25);
  background:#0c0c0c;
  color:white;
}

.btn-add {
  margin-left: auto;
  background: var(--gold-dark);
  color: var(--black);
  padding: 8px;
  border-radius: 10px;
  font-weight:700;
  border:none;
}
.btn-add:hover {
  background: var(--gold);
}

/* =========================
  ORDER SUMMARY 
========================= */
.order-summary{
  position:sticky;
  bottom:16px;
  z-index:100;
  width:100%;
  display:block;
  padding:12px 0;
}

.summary-inner{
  background: linear-gradient(180deg,#0d0d0d,#1a1a1a);
  border: 1px solid rgba(212,175,55,0.15);
  border-radius:12px;
  padding:14px;
  max-width:var(--container-width);
  margin:0 auto;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.summary-inner h4{margin:0;color:var(--gold-light)}
.summary-actions{display:flex;gap:12px;align-items:center}
.summary-total{color:var(--gold);font-weight:700}

.btn-clear{
  background: transparent;
  color: var(--gold-light);
  border: 1px solid rgba(212,175,55,0.35);
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}
.btn-clear:hover {
  background: rgba(212,175,55,0.12);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* ========================= 
  CONTACT
========================= */
.contact{
  background:#111;
  padding:60px 20px;
  border-top-left-radius:20px;
  border-top-right-radius:20px;
  border:1px solid rgba(212,175,55,0.15);
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.contact a{
  color:var(--gold);
  text-decoration:none;
}
.store-address p{
  margin :0;
  line-height: 1.6;
  
}
.icon {
  width: 18px;
  height: 18px;
  opacity:.85;
}

/* ========================= 
  FOOTER 
========================= */
.site-footer{
  background:#0a0a0a;
  color:#e2e2e2;
  padding:40px 20px;
  border-top:1px solid rgba(212,175,55,0.25);
}
.footer-content{text-align:center}
.footer-brand{
  font-size:1.4rem;
  font-weight:bold;
  margin-bottom:18px;
  color:var(--gold);
}
.footer-nav{
  display:flex;
  justify-content:center;
  gap:28px;
  margin-bottom:18px;
}
.footer-nav a{color:#dcdcdc;text-decoration:none}
.footer-nav a:hover{color:var(--gold)}
.footer-copy{
  font-size:0.85rem;
  opacity:0.7;
}
/* ========================= 
  CART BUBBLE 
========================= */

.cart-bubble {
  position: fixed;
  top: 18px;
  right: 18px;
  background: #111;
  padding: 10px 14px;
  border-radius: 50px;
  border:1px solid rgba(212,175,55,0.25);
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2000;
  font-size: 1.2rem;
}

/* ========================= 
  MODAL 
========================= */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(2px);   
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  color:black;
}

.modal.hidden {display: none;}

.modal-box {
  background: #111;
  padding: 24px;
  border-radius: 18px;
  width: 90%;
  max-width: 360px;
  border:1px solid rgba(212,175,55,0.25);
  box-shadow: var(--shadow-soft);
  text-align: center;
  color:white;
}

.modal-actions {
  display: flex;
  justify-content: space-around;
  margin-top: 18px;
}

.btn-cancel {
  color: white;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 14px;
  border-radius: 8px;
}

.btn-cancel:hover {
  background: rgba(255,255,255,0.10);
}

/* ======================
  MEDIA QUERIES
====================== */
@media (max-width:414px){
  
  .hero h1 { font-size: 1.7rem; }
  .products h2 { font-size: 1.8rem; }
  .grid-products { grid-template-columns: 1fr; gap:14px; }
  .product-card img { height:150px; }
  .main-nav { font-size:0.85rem; gap:10px; }

  .product-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .product-info .price { font-size: 1.05rem; }
  .product-info .approx-weight { font-size: 0.82rem; }

  
  .cart-bubble {
    top: auto;
    bottom: 18px;
    right: 18px;
    font-size: 1rem;
    padding: 8px 12px;
  }

  .cart-count {
    min-width: 18px;
    font-size: 0.65rem;
    padding: 2px 6px;
  }
}


@media (min-width:415px) and (max-width:430px){
  .hero h1 { font-size: 1.8rem; }
  .products h2 { font-size: 2rem; }
  .grid-products { grid-template-columns: 1fr; gap:16px; }
  .product-card img { height:160px; }

  .product-info { flex-direction: row; align-items: center; }
  .product-info .price { font-size: 1.1rem; }
  .product-info .approx-weight { font-size: 0.85rem; }

  .cart-bubble {
    top: auto;
    bottom: 20px;
    right: 20px;
    font-size: 1.05rem;
    padding: 8px 12px;
  }

  .cart-count {
    min-width: 18px;
    font-size: 0.68rem;
    padding: 2px 6px;
  }
}


@media (max-width:768px){
  .hero h1 { font-size: 2rem; }
  .products h2 { font-size: 2rem; }
  .grid-products { grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap:16px; }

  .summary-inner { flex-direction: column; align-items:center; text-align:center; }
  .summary-actions { width:100%; justify-content:center; }

  .cart-bubble {
    top: auto;
    bottom: 25px;
    right: 20px;
    font-size: 1.1rem;
    padding: 10px 14px;
  }

  .cart-count {
    min-width: 20px;
    font-size: 0.75rem;
    padding: 3px 6px;
  }
}


@media (min-width:769px) and (max-width:1024px){
  .hero h1 { font-size: 2.2rem; }
  .products h2 { font-size: 2.2rem; }
  .grid-products { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap:18px; }

  .cart-bubble {
    top: auto;
    bottom: 28px;
    right: 25px;
    font-size: 1.15rem;
    padding: 10px 16px;
  }

  .cart-count {
    min-width: 20px;
    font-size: 0.78rem;
    padding: 3px 6px;
  }
}


@media (min-width:1025px) and (max-width:1440px){
  .hero h1 { font-size: clamp(2rem, 4vw, 2.5rem); }
  .products h2 { font-size: clamp(2rem, 4vw, 2.4rem); }
  .grid-products { gap:20px; }
}


@media (min-width:1441px){
  .hero h1 { font-size: 3.2rem; }
  .products h2 { font-size: 2.5rem; }
  .grid-products { gap:26px; }
}



  

  