:root {
  --gold-main: #d4af37;
  --gold-light: #f6e27a;
  --gold-dark: #b8962e;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
  font-family:'Poppins', sans-serif;
  padding-top: 115px;
  background: linear-gradient(135deg, #fdf6f0, #fffaf5);
  color:#2E2E2E;
  line-height:1.6;
  overflow-x: hidden;
  letter-spacing:0.2px;
}
body:has(.product-header){
  padding-top: 60px;   /* 🔥 reduce space */
}
body:has(.product-detail){
  background: linear-gradient(135deg, #fdf6f0, #fffaf5);
}
/* HEADINGS */

h2{
  font-family:'Playfair Display', serif;
  font-size:32px;
  font-weight:600;
  letter-spacing:1.2px;
  color:#111;
  margin-bottom:12px;

  position: relative;
  display:inline-block;
}

/* 🔥 GOLD UNDERLINE EFFECT */
h2::after{
  content:"";
  width:40%;
  height:2px;
  background: linear-gradient(90deg, #d4af37, transparent);
  position:absolute;
  bottom:-6px;
  left:0;
  border-radius:2px;
}

/* NAVBAR */

.navbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  
  
  padding: 15px 50px;
  background: #f5f0ea;
  position: fixed;
  height: 80px;
  top: 0;
  width: 100%;
  z-index: 10000;
  box-shadow:
  0 4px 20px rgba(0,0,0,0.08),
  0 1px 3px rgba(0,0,0,0.05);
}



.nav-logo{
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
line-height: 1;
padding-left: 10px;
flex: 1;
order: 1;
font-family:'Playfair Display', serif;
font-weight:700;
white-space:nowrap;
margin-left: 5px;
}
.logo-main-text {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #111;
  margin-bottom: 2px;
}
.logo-sub-text {
  font-family: 'Poppins', sans-serif;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--gold-main);
  margin-top: 2px;
}
.logo-line {
  width: 35px;
  height: 2px;
  background: var(--gold-main);
  margin-top: 4px;
  border-radius: 2px;
}
.nav-links{
  flex: 2;
  justify-content: center;
  order: 2;
  margin-left: 30px; 
  display: flex;
  gap: 20px;
}

.nav-links a{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px 18px;
  font-size:14px;
  color:#333;
  text-decoration:none;
  transition: transform 0.3s ease;
  border-radius:8px;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:hover{
  background: rgba(201,161,74,0.1);
  transform: translateX(6px);
  color:var(--gold-main);
  padding-left:22px;
}
.nav-links a:active{
  background:#f0e6d2;
  color:var(--gold-main);
  transform:scale(0.97);
}
.nav-links a::after{
content:"";
position:absolute;
bottom:-4px;
left:0;
width:0;
height:2px;
background:var(--gold-main);
transition: all 0.3s ease;
}



.nav-links a:hover::after{
width:100%;
}

.menu-header{
  display: none;
}

.search-box{
  flex: 1;
  justify-content: flex-end;
  order: 3;
  display: flex;
  position: relative;
  z-index: 1000;
  width: 300px;
}
.search-box input{
padding:10px 15px;
border-radius:25px;
border:1px solid #ddd;
box-shadow:0 3px 10px rgba(0,0,0,0.05);
transition: all 0.3s ease;
height: 35px;
font-size:13px;
}

.search-box input:focus{
outline:none;
border-color:var(--gold-main);
box-shadow:0 0 10px rgba(201,161,74,0.3);
}
/* CART RIGHT */
.cart-box{
  order: 4;
  margin-left: 10px;   
  cursor: pointer;
  font-weight: 500;
  white-space: nowrap;
}

/* HERO */ 

.hero{
  min-height:70vh;
  position:relative;
  z-index: 0;
  margin-top: 0;
 

background: url("images/hero.jpg") center/cover no-repeat;
  
  display:flex;
  align-items: flex-start;
  padding-top: 90px;
  background-position: 65% center;
  justify-content: flex-start; 
  color:white;
  text-align: left;
  padding: 20px;

  border-radius:0 0 20px 20px;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.75) 35%,
    rgba(0,0,0,0.4) 60%,
    rgba(0,0,0,0.1) 80%,
    transparent 100%
  );

  z-index:1;
}


.hero-content{
  margin: 0;
  text-align: left;
  max-width: 480px;
  padding:24px;
  position:relative;
  z-index:2;
  animation: fadeUp 1s ease;

  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);

  border-radius: 16px;

  box-shadow:
    0 10px 30px rgba(0,0,0,0.4),
    0 0 20px rgba(212,175,55,0.15);
}
@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(30px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

.hero-content h1{
  margin-bottom:10px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-content p{
  margin:8px 0;

  font-size: 14px;
  opacity: 0.9;
}

.logo-main{
font-size:56px;
font-weight:700;
word-break: keep-all;
letter-spacing:1px;
line-height:1.2;
text-shadow:0 5px 25px rgba(0,0,0,0.6);
}

.logo-sub{
  letter-spacing:6px;
  font-size:14px;
}
.logo-subtext{
  display:block;
  font-size:12px;
  color:#777;
}

/* BUTTON */

.btn{
  display:block;
  width:100%;
  margin-top:12px;
  padding:12px;
  border:none;
  border-radius:25px;
  font-weight:600;
  cursor:pointer;
  transition:0.2s;
}
.btn, .hero-btn{
  letter-spacing:0.6px;
}
.product-info .btn{
  font-size:15px;
  letter-spacing:0.3px;
  border-radius: 12px;
}

/* Add to Cart */
.product-info .btn:first-of-type{
  background:#f8f8f8;
  color:#333;
  border:1px solid #eee;
}

/* Buy Now (MAIN BUTTON) */
.product-info .buy-now-btn{
  background: linear-gradient(135deg, #d4af37, #f6e27a);
  color:#111; /* 🔥 FIXED */
  font-weight:700;
  box-shadow:0 6px 18px rgba(212,175,55,0.5);
}
.product-info .btn:hover{
  transform: translateY(-3px) scale(1.03);
}


.btn:active{
  transform: scale(0.95);
}

/* ABOUT SHOP */

.about-shop{
padding:80px 20px;
text-align:center;
background:#fffaf5;
}

.about-shop p{
max-width:700px;
margin:20px auto;
color:#555;
}

.about-shop img{
width:90%;
max-width:700px;
border-radius:16px;
margin-top:20px;
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.about-tag{
  color: green;
  font-weight: 600;
  margin-top: 10px;
}

.about-location{
  font-size: 14px;
  color: #777;
  margin-top: 10px;
}

/* PRODUCTS */
.products{
  background:#fff;
  padding:80px 20px;
  text-align:center;
}

.products p{
margin-bottom:20px;
color:#777;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
max-width:1200px;
margin:auto;
margin-top:40px;
padding: 10px;
gap:30px;
}

/* PRODUCT CARD */

.card{
backdrop-filter: blur(10px);
background: linear-gradient(145deg, #ffffff, #fffaf0);
border-radius: 14px;
border:1px solid rgba(212,175,55,0.15);
box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    0 4px 12px rgba(212,175,55,0.15);

display:flex;
flex-direction:column;
justify-content:space-between;
position:relative;
overflow:hidden;
text-align:center;
gap:10px;

will-change: transform, opacity;
transition: transform 0.3s ease;
}
/* 🔥 BADGES (GLOBAL) */

.discount-badge {
  position: absolute; 
  top: 14px;
  left: 14px;
  background: linear-gradient(45deg, #ff3b3b, #ff6b6b);
  color: white;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 2;
}

.product-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: gold;
  color: black;
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 8px;
  font-weight: 600;
  z-index: 2;
}

/* 👉 ADD BELOW */
.card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  transition:0.5s;
}

.card:hover::before{
  left:100%;
}
.card:active::before{
  left:100%;
  transition: all 0.3s ease;
}
.card.show{
transform: translateY(0);
transition: all 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.12),
    0 4px 15px rgba(212,175,55,0.2);
  border:1px solid rgba(212,175,55,0.4);
  border-color: rgba(201,161,74,0.3);
}
.card:active{
  transform: translateY(-2px) scale(0.97);
}

/* PRODUCT IMAGE */

.card img{
  width:100%;
  height:140px;
  object-fit:contain;
  margin-bottom:10px;
  transition: transform 0.3s ease;
  background: transparent;
}

.card:hover img{
  transform: scale(1.08);
}

/* PRODUCT NAME */

.card h3{
font-size:15px;
font-weight:500;
margin-top:10px;
margin-bottom:6px;
min-height:45px;
}

/* PRODUCT PRICE */

.card p{
color:var(--gold-main);
font-weight:700;
font-size:15px;
}

/* PRODUCT CATEGORY */

.card small{
color:#777;
margin-bottom:10px;
}

/* PRODUCT DESCRIPTION */

.desc{
font-size:12px;
color:#666;
line-height: 1.4;
margin:5px 0 10px 0;
}

/* BUTTON ALIGNMENT */

.card .btn{
  width:100%;
  margin:8px auto;
  padding:10px;
  border-radius:20px;
  font-size:13px;
  font-weight:600;
  transition:0.25s;
}
.card .btn:first-of-type {
  background: transparent;
  border:1.5px solid var(--gold-main);
  color:var(--gold-main);
  border-radius: 20px;
  font-weight: 500;
  transition: 0.3s;
}

.card .btn:first-of-type:hover {
  background: #fffdf5;
  transform: translateY(-2px);
}
.card .btn:last-of-type{
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  color:#000;
  font-weight:700;
  border:none;
  text-shadow:0 1px 4px rgba(255,255,255,0.3);
  box-shadow:0 10px 25px rgba(212,175,55,0.5);
  transform: translateY(0);
  transition: all 0.3s ease;
  letter-spacing:0.5px;
}

.card .btn:hover{
  transform: translateY(-2px);
}

.card .btn:last-of-type:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow:0 15px 35px rgba(212,175,55,0.7);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-main));
}

.card .btn:last-child{
  margin-bottom: 10px;
}

.buy-now-btn{
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  color:#111;
  font-weight:700;
  border:none;

  position: relative;
  overflow: hidden;

  box-shadow:0 12px 30px rgba(212,175,55,0.5);
  letter-spacing:0.5px;
}

.buy-now-btn::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,0.4), transparent);
  transition:0.6s;
}
.buy-now-btn:hover::before{
  left:100%;
}

.buy-now-btn:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow:0 18px 40px rgba(212,175,55,0.7);
}

/* PRODUCT BADGE */


@keyframes pop{
from{
transform: scale(0.8);
opacity:0;
}
to{
transform: scale(1);
opacity:1;
}
}

/* FILTER BUTTONS */

.filter-buttons button{
padding:8px 18px;
margin:5px;
border:none;
background:#111;
color:white;
border-radius:20px;
cursor:pointer;
}

.filter-buttons button:hover{
background:var(--gold-main);
}

/* LOCATION */

.location{
  background: linear-gradient(
    180deg,
    #0a0a0a 0%,
    #111 50%,
    #0d0d0d 100%
  );
  color:white;
  padding:110px 20px 80px;
  text-align:center;
}

.location h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-8px;
  transform:translateX(-50%);

  width:0;
  height:2px;

  background: linear-gradient(90deg,#FFD700,#D4AF37);
  transition:0.4s ease;
}
.location h2:hover::after{
  width:60%;
}

.location iframe{
  margin-top: 30px;
  border-radius: 18px;

  box-shadow: 
    0 15px 40px rgba(0,0,0,0.5),
    0 0 20px rgba(212,175,55,0.1);
}
/* FOOTER */

footer{
background:#111;
color:white;
text-align:center;
padding:18px;
}

/* WHATSAPP FLOAT */

.whatsapp-float{
position:fixed;
right:20px;
bottom:20px;
width:50px;
height:50px;
background:var(--gold-main);
color:white;
border-radius:50%;
text-align:center;
line-height:50px;
font-size:22px;
padding: 12px;
z-index: 999;
text-decoration:none;
box-shadow:0 8px 20px rgba(0,0,0,0.2);
}

/* SECTION DIVIDER */

section{
  padding: 70px 20px;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

/* MOBILE */

@media(min-width:1024px){
  
  .logo-subtext{
    display:none;
  }

  .featured-grid{
    overflow-x:unset;
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    justify-content:center;
    gap:30px;
  }

  .featured-card{
    min-width:auto;
    max-width:none;
  }

  .hero{
    min-height:70vh;
    border-radius:0 0 20px 20px;
    padding-left: 80px;

  }



  .navbar{
    display:flex;
    justify-content: space-between; /* 🔥 ADD THIS */
    align-items:center;
    gap: 20px; 
    padding: 15px 60px;
  }

  .nav-logo{
    font-size:unset;
    flex:1;
    font-weight:700;
    text-align:left;

  }

  .nav-links{
    display:flex;
    flex:2;
    justify-content:center;
    align-items:center;
    gap:35px;
    margin-left: 20px;
    font-size:13px;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .search-box{
  flex:1;
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.cart-box{
    margin-left:15px;
  }

  .search-box input{
    padding:6px 10px;
    border-radius:20px;
    border:1px solid #ddd;
    box-shadow:0 3px 10px rgba(0,0,0,0.05);
  }
  #menuUser{
  margin-right:10px;
}
}
.hero-btn{
  display:inline-block;
  margin-top:20px;
  padding:16px 40px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;
  background: linear-gradient(135deg, #FFD700, #E6C200, #D4AF37);
  color:#000;
  font-weight:700;
  letter-spacing:0.8px;
  text-shadow:0 1px 4px rgba(255,255,255,0.3);
  
  
  box-shadow:0 10px 25px rgba(212,175,55,0.5);
  
  transition: all 0.3s ease;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow{
  0%{
    box-shadow:0 0 20px rgba(212,175,55,0.5);
  }
  50%{
    box-shadow:0 0 25px rgba(212,175,55,0.6);
  }
  100%{
    box-shadow:0 0 20px rgba(212,175,55,0.5);
  }
}

.hero-btn:hover{
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 30px rgba(212,175,55,0.6);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-main));
}
.hero-btn:active{
  transform: scale(0.96);
}


  /* ABOUT */
  .about-shop img{
    width:100%;
  }

  /* LOCATION */
  .location{
    padding:40px 15px;
  }



/* PRODUCT DETAIL PAGE */

.product-detail{
max-width:1000px;
margin-bottom: 100px;
margin:60px auto 80px auto;
padding:20px;
display:flex;
gap:40px;
align-items:center;
flex-wrap:wrap;
opacity:0;
transform: translateY(40px);
transition: all 0.6s ease;
 background: #fff;
  border-radius: 20px;
  margin-top: 20px;
}
.product-detail.show{
opacity:1;
transform: translateY(0);
}

.product-detail img{
width:350px;
max-width:100%;
border-radius:18px;
background:#fff;
padding:20px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.product-info{
flex:1;
}

.product-info h2{
font-size:28px;
margin-bottom:10px;
}

/* PRODUCT PRICE */

#productPrice{
font-size:22px;
font-weight:700;
color:var(--gold-main);
margin-bottom:10px;
}

/* PRODUCT CATEGORY */

#productCategory{
font-size:14px;
color:#999;
font-weight:500;
letter-spacing:1px;
text-transform:uppercase;
margin-bottom:15px;
}
/* RELATED PRODUCTS */

.related-title{
text-align:center;
margin-top: 50px;
margin-bottom: 10px;
}

.related-products{
display:flex;
justify-content:center;
gap:20px;
margin:30px 0;
flex-wrap:wrap;
}

.related-card{
position:relative;
align-items: flex-start !important;
text-align: left !important;
text-decoration:none;
color:#333;
text-align:center;
width:180px;
transition: all 0.3s ease; 
min-width:180px;
flex-shrink:0;
overflow:hidden;
}

.related-card:hover{
  transform: translateY(-6px) scale(1.03);
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
}


.related-card p{
margin-top:8px;
font-size:14px;
}

.related-card img{
width:100%;
border:1px solid rgba(212,175,55,0.2);
border-radius:10px;
background:#fff;
padding:10px;
box-shadow:0 4px 15px rgba(0,0,0,0.1);
transition: all 0.3s ease;
}

.related-card img:hover{
transform:scale(1.05);
}
/* FEATURED PRODUCTS */

.featured{
padding:70px 20px;
text-align:center;
background:#fffdf7;
}

.featured-grid{
  display:flex;
  gap:20px;
  padding:15px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-padding-left:15px;
}

.featured-grid::-webkit-scrollbar{
  display:none;
}

.featured-card{
  min-width:130px;
  max-width:160px;
  flex-shrink:0;
  scroll-snap-align:start;
}

.featured-card img{
width:100%;
border-radius:12px;
background:#fff;
padding:10px;
box-shadow:0 6px 18px rgba(0,0,0,0.1);
transition: all 0.3s ease;
height:100px;
object-fit:contain;
}

.featured-card img:hover{
transform:scale(1.05);
}


#cartBox::-webkit-scrollbar{
width:5px;
}

#cartBox::-webkit-scrollbar-thumb{
background:#ccc;
border-radius:10px;
}
/* ===== 🛒 SEXY CART ===== */

#cartBox{
position:fixed;
top:0;
right:-100%;
width:350px;
max-width:90%;
height:100%;
padding:20px;
box-shadow:-5px 0 20px rgba(0,0,0,0.2);
transition:0.3s ease;
z-index: 11000;
overflow-y:auto;
border-top-left-radius:15px;
border-bottom-left-radius:15px;
background:#f3f4f6;
border-left:1px solid #eee; 
}

#cartBox.active{
right:0;
}

#cartBox h3{
margin-bottom:15px;
font-size:20px;
text-align:center;
font-weight:600;
border-bottom:1px solid #e5e7eb; 
padding-bottom:12px;
letter-spacing:0.5px;
}

#cartItems li{
margin-bottom:12px;
display:flex;

align-items:center;
font-size:14px;
gap:10px;

background:#f9fafb;
padding:10px 12px;
border-radius:10px;

box-shadow:0 4px 12px rgba(0,0,0,0.08);
width:100%;
}
/* 🔽 COMMON BUTTON BASE */
#cartItems button{
border:none;
cursor:pointer;
font-weight:bold;
display:flex;
align-items:center;
justify-content:center;
transition:0.2s;
}

/* ➖ DECREASE BUTTON */
.decrease-btn{
  background:#e5e7eb;
  color:#111;
  width:28px;
  height:28px;
  border-radius:50%;
}

.increase-btn{
  background:#111;
  color:white;
  width:28px;
  height:28px;
  border-radius:50%;
}

.remove-btn{
  background:#ff4d4d;
  color:white;
  width:28px;
  height:28px;
  border-radius:50%;
}

/* HOVER */
.decrease-btn:hover{
  background:#d1d5db;
}

.increase-btn:hover{
  background:#000;
  transform:scale(1.1);
}

.remove-btn:hover{
  background:#e60000;
  transform:scale(1.1);
}




/* ===== DARK OVERLAY ===== */

#overlay{
opacity:0;
visibility:hidden;
pointer-events: none;
transition: all 0.3s ease;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.5);
z-index:1500;
}

#overlay.active{
opacity:1;
visibility:visible;
pointer-events: auto;
}
/* 🔍 IMAGE ZOOM */
.product-detail img{
transition: transform 0.3s ease;
cursor: zoom-in;
}

.product-detail img:hover{
  transform: scale(1.04);
}




.suggestion-item:hover{
  background:#f5f5f5;
  cursor:pointer;
}
/* 🔍 SEARCH SUGGESTIONS */

#suggestionsBox{
  position: fixed;
  top: 70px;   /* 🔥 FINAL FIX */
 right: auto;
  left: 0;

  width: 100%;
  max-width: 400px;
  border:1px solid rgba(0,0,0,0.08);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);

  z-index: 9999;

  max-height: 200px;
  overflow-y: auto;
}

#suggestionsBox div {
  cursor: pointer;
}

#suggestionsBox div:hover {
  background: #eee;
}
.hidden{
opacity:0;
transform: translateY(60px);
transition: all 0.8s ease;
}

.show{
  opacity:1;
  transform: translateY(0);
}
.qty-box{
display:flex;
align-items:center;
gap:15px;
margin:20px 0;
}

.qty-box button{
width:32px;
height:32px;
border:1px solid rgba(0,0,0,0.1);
background:var(--gold-main); /* brand color */
color:white;
border-radius:50%;
cursor:pointer;
font-size:16px;
transition:0.2s;
}

.qty-box button:hover{
background:#b8913f;
transform:scale(1.1);
}

.qty-box span{
font-size:18px;
font-weight:600;
min-width:20px;
text-align:center;
}


.back-btn:hover{
  background:var(--gold-main);
  transform:scale(1.1);
}

.whatsapp-tooltip{
  position:fixed;
  right:20px;
  bottom:70px;
  background:#111;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  font-size:12px;
  opacity:0;
  transition: all 0.3s ease;
}

.whatsapp-float:hover + .whatsapp-tooltip{
  opacity:1;
}


@keyframes fadeInPage{



  from{
    opacity:0;
    transform: translateY(10px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

/* 🔥 SCROLLBAR STYLING */

::-webkit-scrollbar{
  width:6px;
}

::-webkit-scrollbar-track{
  background:#f1f1f1;
}

::-webkit-scrollbar-thumb{
  background:var(--gold-main);
  border-radius:10px;
}
button, .btn{
  -webkit-tap-highlight-color: transparent;
}
.offer-bar{
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;

  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: black;
  color: white;

  z-index: 9999;

  transition: transform 0.3s ease;
}

.offer-bar.hide{
  transform: translateY(-100%);
}



  @media(max-width:768px){


    #loginBox{
    padding: 20px;
    border-radius: 10px;
  }
   
    .scroll-hint{
    display:none;
    }

  .menu-header{
    background: linear-gradient(135deg, #fffdf5, #fff);
    padding:10px;
    border-radius:10px;
    margin-bottom:15px;
    padding-bottom:10px;
    border-bottom:1px solid #eee;
  }
  .nav-links a span{
  font-size:16px;
}

  .menu-header h3{
    font-size:18px;
    font-weight:600;
    margin:0;
  }

  .menu-header p{
    font-size:13px;
    color:#888;
  }


  body{
    padding-top: 115px;
  }
  
  .product-trust-box{
    max-width:90%;
    padding:12px;
  }

  .product-trust-box p{
    font-size:12.5px;
  }
  
  .menu-toggle{
    display:block;
  }
  .hero{
    padding-top: 80px;
    padding-bottom: 20px;
    padding-left: 15px;
    justify-content: flex-start;
    text-align: left;
    min-height:68vh;
    background-position: 72% 18%;
    
  }

  .hero-content {
    text-align: left;
    margin: 0;                     
    max-width: 70%; 
    backdrop-filter: blur(0px); 
    background: rgba(0,0,0,0.25); 
    border: 1px solid rgba(255,255,255,0.15);
    padding-bottom: 25px; 
    padding-top: 10px;
    
  }

  .hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75) 0%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.2) 65%,
    transparent 100%
  );
  z-index: 1;
  }

  .hero img{
  filter: brightness(1.05) contrast(1.05);
}
.hero::before{
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.6) 0%,
    rgba(0,0,0,0.3) 40%,
    transparent 100%
  );
  .hero-content button:active{
  transform: scale(0.97);
}
}

  .hero-btn{
  margin-top:20px;
}
.hero-content p{
  line-height:1.3;
  margin-bottom: 10px;
}
  .navbar{
    position: fixed;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 12px;
  }

  .nav-logo{
    width:auto;
    position:static;
    transform:none;
    font-size:16px;
  }


  .product-actions{
    gap:10px;
    display:none;
    margin-top:10px;
  }


  .search-box{
    flex:1;
    margin:0 10px;
  }

  .search-box input{
    width:100%;
  }

  .cart-box{
  width:auto;
  margin-right: 10px;   /* 🔥 ADD THIS */
  
}

  .back-btn{
    display:block;
  }
.buy-now-btn{
  box-shadow:0 8px 20px rgba(212,175,55,0.5);
}

  
  /* BUTTON */
  .btn{
    padding:10px 20px;
    font-size:14px;
  }

  /* CARD */
.card{
  backdrop-filter: blur(6px);
  position:relative;
  background: linear-gradient(145deg, #ffffff, #fffaf5);
  padding:16px;
  border-radius:16px;
  text-align:center;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.08),
    0 3px 10px rgba(212,175,55,0.15);

  border:1px solid rgba(0,0,0,0.05);

  cursor:pointer;
  transition: all 0.3s ease;
}

.card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.12),
    0 5px 20px rgba(212,175,55,0.25);

    
}

  .card img{
    height:150px;
    margin-bottom:12px;
  }
  .card p{
    font-size:17px;
    font-weight:700;
    letter-spacing:0.3px;
  }
  .logo-main{
    font-size:24px;
  }

  .logo-sub{
    font-size:11px;
    letter-spacing:2px;
  }

  .hero-content p{
    font-size:15px;
    margin: 8px 0;
    line-height:1.4;
  }
  
  
  .cart-box{
  font-size: 14px;
  margin-left: auto;
  cursor: pointer;
}
  .nav-links{
  display: flex;
  flex-direction: column;
  gap: 15px;

  position: fixed;
  top: 0;
  left: 0;

  width: 250px;
  height: 100%;
  padding: 60px 20px;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.9),
    rgba(255,255,255,0.75)
  );
  backdrop-filter: blur(12px);
  border-right: 1px solid rgba(255,255,255,0.3);

  box-shadow: 10px 0 40px rgba(0,0,0,0.15);
  border-radius: 0 16px 16px 0;

  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;

  z-index: 1002;
  margin-left: 0;
}

.nav-links.active{
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  animation: menuSlide 0.35s ease;
}

@keyframes menuSlide{
  from{
    transform: translateX(-100%);
    opacity:0;
  }
  to{
    transform: translateX(0);
    opacity:1;
  }
}



  .menu-toggle{
  display: block;
  position: static;
  right: 55px;
  margin-right: 8px;
  top: 12px;
  font-size: 22px;
  cursor: pointer;
  margin-left: 10px;
}
  .offer-bar{
    font-size: 12px;
    padding: 8px;
    
  }
  .grid{
    align-items: start;
    grid-template-columns:repeat(2, 1fr);
    gap:30px;
    padding:12px;
  }


  .card h3{
    font-size:15.5px;
    font-weight:600;
  }

  .desc{
    font-size:12px;
    line-height:1.4;
  }

  .card .btn{
    padding:14px;
    font-size:14px;
    border-radius:12px;
  }
  .buy-now-btn{
    font-size:15px;
    padding:13px;
    box-shadow:0 10px 25px rgba(212,175,55,0.6);

  }

  .under-99-wrapper{
    flex-direction:column;
    align-items:flex-start;
  }

  .under-99-banner{
    width:100%;
  }

  .under-99-banner{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
  }

  .under-99-banner button{
    width:100%;
    text-align:center;
  }
 
  .under-99-scroll{
  scroll-snap-type:x mandatory;
}

.under-99-card{
  height:160px;
  scroll-snap-align:start;
}
.under-99{
  position:relative;
  overflow: hidden;
}
.under-99::before,
.under-99::after{
  content:"";
  position:absolute;
  top:0;
  width:30px;
  height:100%;
  z-index:2;
}
.under-99::before{
  left:0;
  display:none;
  background: linear-gradient(to right, rgba(255,255,255,0.3), transparent);
}
.under-99::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  height:100%;
  width:25px;
  background: linear-gradient(to left, rgba(255,255,255,0.7), transparent);
}

#under99Page{
    padding:20px 12px;
    gap:16px;
    grid-template-columns: repeat(2, 1fr);
  }

  .card:active{
  transform: scale(0.95);
}
}


@media(min-width:601px){
  .menu-toggle{
  display: none !important;
  position: absolute;
  right: 50px;
  top: 10px;
  z-index: 2000; 
  color: black;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
  }
}

@media(min-width:769px){
  .menu-toggle{
    display: none;
  }
  .menu-header{
    display:none !important;
  }
  .nav-links{
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    flex-direction: row;
    gap: 25px;
  }
  .search-box{
    width: auto;
  }
}


  

.trust-section{
  display:flex;
  justify-content:center;
  align-items:center;
  background:#fff;
  padding:20px 10px;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  gap:30px;
  flex-wrap:wrap;
}

.trust-box{
  margin: 15px 0;
  flex:1;
  padding: 12px;
  background: linear-gradient(145deg, #ffffff, #fffdf7);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius:16px;
  font-size: 13px;
  line-height: 1.6;
  text-align:center;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
}
.trust-box p{
  font-weight:500;
  margin: 4px 0;
  
}
.trust-box div{
  margin-bottom:6px;
}

.trust-box:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.12);
}

.trust-box span{
  font-size:22px;
  display:block;
  margin-bottom:6px;
  color:#d4af37;
}
@media(max-width:600px){

  .product-trust .trust-box{
    flex: none !important;
    width: 100%;
    padding:12px;
    border-radius:14px;
  }
  
  .trust-section{
    flex-wrap:wrap;
    gap:12px;
    padding: 20px 15px;
    justify-content:center;
  }

  .trust-box{
    flex: 0 0 48%;
    max-width:48%;
    margin:15px 0;
    padding: 12px 10px;
    width:100%;
    font-size:13px;
  }

  .trust-box span{
    font-size:20px;
  }

  .trust-box p{
    font-size:12.5px;
  }

  .product-detail{
    flex-direction:column;
    padding:15px;
  }

  .product-detail img{
    width:100%;
    margin-bottom:15px;
  }

  .product-info{
    width:100%;
  }


}

@keyframes fadeMenu{
  from{
    opacity:0;
    transform:translateY(-10px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

.order-card button {
  cursor:pointer;
}



.benefits{
  margin: 10px 0;
  padding-left: 18px;
}

.benefits li{
  margin: 6px 0;
  font-size: 14px;
}
/* 🔥 STICKY BUY BAR (MOBILE ONLY) */

.sticky-bar{
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid #eee;
  padding:8px 10px;
  display: none;
  gap: 10px;
  box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
  z-index: 2000;
}

.sticky-bar button{
  flex:1;
  padding:10px;
  border:none;
  border-radius:25px;
  font-weight:600;
  cursor:pointer;
}

/* Add to Cart */
.sticky-bar button:first-child{
  background:#f5f5f5;
  color:#333;
  border:1px solid #eee;
}

/* Buy Now */
.sticky-bar button:last-child{
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  color:#111;   /* 🔥 PREMIUM FIX */
  font-weight:700;
  box-shadow:0 4px 12px rgba(212,175,55,0.4);
}

/* ONLY MOBILE */
@media(max-width:768px){
  .menu-header{
    display:block;
    margin-bottom:20px;
  }

  .sticky-bar{
    display:flex;
  }

  body{
    padding-bottom:70px; /* space for bar */
  }
}

.product-info ul{
  padding-left: 0;
  margin: 15px 0;
}

.product-info ul li{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}
.product-info p{
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
}
.trust-box{
  margin: 15px 0;
}
.product-info{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding:10px;
}
.features{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin:15px 0;
}

.feature{
  background: linear-gradient(145deg, #ffffff, #f9f9f9);
  padding:12px 14px;
  border-radius:14px;
  font-size:14px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#222;
  font-weight:500;

  box-shadow:0 4px 15px rgba(0,0,0,0.06);
  border:1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.feature:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 20px rgba(212,175,55,0.2);
}
.feature:first-child{
  border:1px solid #d4af37;
  background:#fffdf5;
}
.highlight {
  color: var(--gold-main);
  font-weight: 600;
  letter-spacing: 0.3px;
}
/* 🔥 PREMIUM CHECKOUT BUTTON */

#cartBox button:first-of-type {
  background: linear-gradient(135deg, var(--gold-main), var(--gold-light));
  color: #111;
  font-weight: 600;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(212,175,55,0.35);
  transition: 0.3s;
  letter-spacing: 0.5px;
}

/* HOVER */
#cartBox button:first-of-type:hover {
  transform: scale(1.05);
}

/* CLICK EFFECT */
#cartBox button:first-of-type:active {
  transform: scale(0.96);
}

.delivery-box{
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  margin: 12px 0;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

#freeDeliveryMsg{
  font-size: 13px;
  color: var(--gold-main);
  font-weight: 600;
}

#deliveryCharge{
  font-size: 12px;
  color: #777;
  margin-top: 6px;
}
.total-box{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
  padding-top: 10px;
  border-top: 1px solid #eee;
}

.total-box p{
  font-size: 14px;
  color: #555;
}

.total-box h2{
  font-size: 20px;
  font-weight: 700;
  color: #111;
}
#deliveryLine{
  color:var(--gold-main);
  font-weight:600;
}
#cartItems:empty {
  display: none;
}
#emptyCartMsg{
  background:#f9f9f9;
  border-radius:12px;
  padding:25px;
  margin:10px 0;
}



.product-trust{
  width:100%;
  display:flex;
  margin-top:10px;
  justify-content: flex-start;
  margin:15px 0;
  align-items:center;
}



.product-trust-box{
  width:100%;
  max-width:280px;
  padding:12px;
  border-radius: 14px;
  margin:0;
  

  background: linear-gradient(145deg, #ffffff, #fffdf7);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius:14px;
  border-left: 4px solid var(--gold-main);

  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}

.product-trust-box b{
  color:var(--gold-main);
}

/* TEXT ALIGN FIX */
.product-trust-box p{
  display:flex;
  align-items:center;
  gap:8px;
  margin:8px 0;
  font-size:13px;
  font-weight:500;
  color:#333;
  letter-spacing:0.2px;
}

.card:hover, .btn:hover, .hero-btn:hover{
  will-change: transform;
}
.fade-in, .card, .btn, .hero-btn{
  backface-visibility: hidden;
  transform: translateZ(0);
}

.location iframe{
  margin-top: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

#menuOverlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


  background: rgba(0,0,0,0.5);


  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;

  z-index: 1000;
}

#menuOverlay.active{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}



.btn {
  transition: transform 0.3s ease;
}


/* under 99 rupees section */
.under-99{
  margin-top: 10px;
  padding:20px 10px;
  background:#fffdf7;
}


.under-99-card:hover{
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 15px 30px rgba(0,0,0,0.15),
    0 0 12px rgba(212,175,55,0.25);
}

/* 🔥 BANNER (TOP STRIP) */
.under-99-banner{
  display:flex;
  justify-content:space-between;
  align-items:center;

  background: linear-gradient(135deg, #d4af37, #f6e27a);
  padding:18px 20px;
  border-radius:16px;
  margin-bottom:15px;

  box-shadow: 
    0 12px 30px rgba(212,175,55,0.35),
    inset 0 1px 0 rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* shine effect */
.under-99-banner::after{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: shine 4s infinite;
}

@keyframes shine{
  0%{ left:-100%; }
  100%{ left:100%; }
}

.under-99-banner:hover{
  transform: translateY(-2px);
}

.under-99-card img{
  width:100%;
  height:80px;   /* 🔥 CONTROL SIZE */
  object-fit:contain;
  margin-bottom:8px;
}

.under-99-banner h2{
  font-size:18px;
  font-weight:600;
}

.under-99-banner p{
  font-size:13px;
  opacity:0.8;
}

.under-99-banner button{
  background:#111;
  color:#fff;
  border:none;
  padding:10px 16px;
  border-radius:12px;
  font-weight:600;
  cursor:pointer;

  transition:0.3s;
  box-shadow:
    0 10px 25px rgba(0,0,0,0.3),
    0 0 15px rgba(212,175,55,0.4);
}
.under-99-banner button:hover{
  transform:scale(1.05);
}

/* 🔥 PRODUCT SCROLL */
.under-99-scroll{
  display:flex;
  gap:12px;

  overflow-x:auto;
  scroll-behavior:smooth;

  padding:12px 8px;

  scrollbar-width:none;
}
.under-99-scroll::-webkit-scrollbar{
  display:none;
}

.under-99-card{
  min-height:200px;
  height:auto;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-width:140px;
  max-width:150px;
  flex-shrink:0;
  gap:6px;

  background: linear-gradient(145deg, #ffffff, #fff8ec);
  box-shadow:
    0 12px 30px rgba(0,0,0,0.08),
    0 4px 12px rgba(212,175,55,0.15);
  border-radius:14px;
  padding:10px;

  text-align:center;
  position:relative;
  transition: all 0.3s ease;
}

.under-99-card p{
  color:#333; 
  font-size:12px;
  line-height:1.2;
  margin:4px 0;

  min-height:36px;   /* 🔥 FIX */
  height:auto;
  

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;

  font-weight:500;
}

.under-99-card:first-child{
  border:1.5px solid var(--gold-main);
  box-shadow: 0 10px 25px rgba(212,175,55,0.25);
}





.card:hover img{
  transform:scale(1.08);
}





.badge{
  position:absolute;
  top:8px;
  left:8px;
  gap:3px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:4px 8px !important;
  font-size:10px !important;
  font-weight:600;

  border-radius:8px;
  line-height:1;

  width:auto !important;
  max-width:70px;
  white-space:nowrap;
  overflow:hidden;
  

  background: linear-gradient(45deg, #d4af37, #f6e27a);
  color:#111;

  box-shadow:0 3px 8px rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);   /* 🔥 premium glass effect */
  border: 1px solid rgba(255,255,255,0.4);
  z-index:10;

  transition: transform 0.2s ease;

  
}
.card:hover .badge{
  transform: scale(1.05);
}



/* Trending (default) */
.badge.trending{
  font-size:8px;
  padding:2px 5px;
  background: linear-gradient(45deg, #FFD700, #f6e27a);
  color:#111;
}

/* Hot */
.badge.hot{
  background: linear-gradient(45deg, #ff3b3b, #ff6b6b);
  box-shadow:0 4px 12px rgba(255,0,0,0.4);
}

/* Bestseller */
.badge.bestseller{
  background: linear-gradient(45deg, #ff9800, #ffc107);
}

/* New */
.badge.new{
  background: linear-gradient(45deg, #4caf50, #81c784);
  color:white;
}




.shop-all-btn{
  background:#000;
  color:#fff;
  padding:10px 18px; 
  border-radius:20px;
  font-weight:600;
  transition:0.3s;
}

.shop-all-btn:hover{
  background:#d4af37;
  color:#000;
}

.under-99-section{
  position:relative;
}

.under-99-section::after{
  content:"";
  position:absolute;
  right:0;
  top:0;
  width:80px;
  height:100%;
  background:linear-gradient(to right, transparent, #f9f6f2);
}

.mini-add{
  background: linear-gradient(135deg, #111, #333);
  color:#fff;
  border:none;
  border-radius:8px;
  padding:5px;
  font-size:11px;
   margin-top:auto;
  cursor:pointer;
  transition:0.2s;
}

.mini-add:hover{
  transform:scale(1.05);
  background:#d4af37;
  color:#000;
}
.qty-controls{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty-box button:first-child{
  background:#e5e7eb;
  color:#111;
}
.qty-box button:last-child{
  background: linear-gradient(135deg, #d4af37, #f6e27a);
  color:#111;
  box-shadow:0 4px 12px rgba(212,175,55,0.5);
}
.qty-box button:last-child:hover{
  transform: scale(1.1);
  box-shadow:0 6px 18px rgba(212,175,55,0.7);
}
.qty-box button:active{
  transform: scale(0.9);
}

/* 🔥 LOGIN POPUP */
.login-box{
  position: fixed;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 320px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  z-index: 20000;
  display: none;
  text-align: center;
}

#loginOverlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 19999;  
}

.login-box h2{
  margin-bottom: 15px;
  font-size: 20px;
}

.login-box input{
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.login-btn{
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  background: linear-gradient(45deg, gold, orange);
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.2s;
}

.login-btn:hover{
  transform: scale(1.05);
}
 
.close-btn{
  margin-top: 10px;
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
} 
#userInfo{
  margin-left:10px;
  font-size:14px;
}

#logoutBtn{
  margin-left:5px;
  padding:4px 8px;
  border-radius:6px;
} 

.user-menu{
  position: relative;
  cursor: pointer;
  margin-top:20px;
  padding:15px; 
  border-top:1px solid #eee;
}

.user-dropdown{
  position: absolute;
  top: 35px;
  right: 0;
  background: #000;
  padding: 10px;
  border-radius: 10px;
  display: none;
}
.user-dropdown.active{
  display:block;
}
.user-dropdown button{
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

.user-menu{
  margin-top:20px;
  padding-top:15px;
  border-top:1px solid #eee;
}

.user-menu button{
  width:100%;
  padding:10px;
  border:none;
  border-radius:8px;
  background:#000;
  color:#fff;
  cursor:pointer;
} 


.suggestion-item{
  display:flex;
  align-items:center;
  gap:8px;
  padding:10px;
  cursor:pointer;
  border-bottom:1px solid #eee;
  transition:0.2s;
  
}

.suggestion-item img{
  width:40px;
  height:40px;
  object-fit:contain;
  border-radius:6px;
  background:#fff;
  padding:4px;
}

.suggestion-info p{
  margin:0;
  font-size:13px;
}

.suggestion-info span{
  font-size:12px;
  color:green;
  font-weight:600;
}

.suggestion-item:hover{
  background:#f9f9f9;
}
.suggestion-item:first-child{
  background:#fff8e1;
  border-left:3px solid var(--gold-main);
}

.trending{
  padding:40px 20px;
  background:#fffdf7;
  text-align:center;
}

.trending-container{
  scroll-behavior: smooth;
  display:flex;
  gap:20px;
  overflow-x:auto;
  padding:10px;
}

.trending-container::-webkit-scrollbar{
  display:none;
}

img{
  will-change: transform;
}

.price{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:3px;
  margin-top:6px;
}
.price-left{
  display:flex;
  align-items:center;
  gap:6px;
}

.new-price{
  font-size:16px;
  font-weight:700;
  color:#0a9c4a;
}

.old-price{
  text-decoration: line-through;
  color:#888;
  font-size:12px;
  margin-left:6px;
}

.badge.price-drop{
  background: linear-gradient(45deg, #00c853, #00e676);
  box-shadow:0 4px 12px rgba(0,200,83,0.3);
}


.discount{
  font-size:11px;
  font-weight:600;
  color:#e53935;
  background:#fff1f1;
  padding:2px 6px;
  border-radius:6px;
  width:fit-content;
}
.product-card{
  text-align:left;
  padding:12px;
}
.product-card p{
  margin-top:6px;
  margin:6px 0 0 0;
}

#toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #111;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 9999;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* ✅ ONLY UNDER99 PAGE GRID */
.under99-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(200px,1fr));
  gap:20px;
  padding:20px;
  background: linear-gradient(135deg, #fffdf7, #fffaf3);
  border-radius:20px;
  margin-top: 15px;

}

/* 🔥 ONLY UNDER99 PAGE CARD DESIGN */
.under99-grid .under-99-card{
  background:white;
  border-radius:16px;
  padding:16px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  border:1px solid rgba(0,0,0,0.05);
  transition:0.3s;

  cursor:pointer;

  height:auto; /* 🔥 IMPORTANT */
  min-width:auto;
  max-width:100%;
  transition: all 0.25s ease;
}
.under99-grid .under-99-card img{
  width:100%;
  height:160px;
  object-fit:contain;
  margin-bottom:10px;
  box-shadow:0 4px 12px rgba(0,0,0,0.08);
  border-radius:10px;
  background:#f9f9f9;
  padding:10px;
  transition: 0.3s;
}
.under99-grid .under-99-card:hover img{
  transform: scale(1.05);
}
.under99-grid .under-99-card p{
  font-size:14px;
  font-weight:500;
  color:#222;

  margin:8px 0;
  min-height:40px;

  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.under99-grid .mini-add{
  margin-top:10px;
  padding:10px;
  border-radius:12px;

  background: linear-gradient(135deg, #000, #444);
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
  color:white;

  font-size:13px;
  font-weight:600;
  letter-spacing:0.3px;
  transition: all 0.25s ease;
}

.under99-grid .mini-add:hover{
  background: linear-gradient(135deg, #d4af37, #f6e27a);
  color:#000;
  transform: scale(1.03);
}
.under99-grid .under-99-card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 15px 35px rgba(0,0,0,0.15),
    0 0 12px rgba(212,175,55,0.25);
  border:1px solid rgba(212,175,55,0.5);
}
.under99-grid .price{
  margin-top:6px;
  align-items:flex-start;

}
.under99-grid .price-left{
  gap:8px;
}

.under99-grid .new-price{
  font-size:18px;
}

.under99-grid .old-price{
  font-size:13px;
}
/*
body:has(.under99-grid){
  padding-top:20px !important;
}
  */

.top-bar{
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  padding:12px 0;
}

.brand-name{
  font-family:'Playfair Display', serif;
  font-size:22px;
  font-weight:700;
  color:#222;
}

.back-btn{
  position: static;
  left: 12px;
  top: 10px;

  background: none;
  color: #111;
  border: none;


  padding: 6px 14px;
  border-radius: 25px;
  font-size: 18px;
  
  cursor: pointer;

  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 4px;
}
.brand-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  font-weight: 500;  
  pointer-events: none;
  opacity: 0.85;
}
.cart-icon {
  font-size: 18px;
  padding: 6px;
  cursor: pointer;
  position: relative;
}

.cart-icon span {
  font-size: 10px;
  background: red;
  color: white;
  border-radius: 50%;
  padding: 2px 6px;
  position: absolute;
  top: -8px;
  right: -10px;
}


@media (max-width: 600px){

  .brand-name{
  font-family:'Playfair Display', serif;
  font-size:20px;
  font-weight:700;
  letter-spacing:1px;   /* 🔥 ADD */
}

  .back-btn{
    font-size:12px;
    padding:5px 10px;
  }

  .under99-grid{
    grid-template-columns:repeat(2,1fr);
    gap:12px;
    padding:12px;
   
  }

  .under99-grid .under-99-card img{
    height:120px;
  }

}

.hero-tag {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold-main);
  display: block;
  margin-bottom: 10px;
  opacity: 0.8;
}

.alt-section{
  background:#fafafa;
}
/* 🔥 PRODUCT HEADER FIX */
.product-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  position: fixed;      /* 🔥 better than sticky */
  top: 0;
  width: 100%;

  background: #fdf6f0;
  z-index: 1000;

  border-bottom: 1px solid #f0f0f0;
  backdrop-filter: blur(10px);

  box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 🔥 premium feel */
}


.footer {
  background: linear-gradient(180deg, #0d0d0d, #000);
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1;
  min-width: 200px;
  margin: 10px;
  margin-bottom: 25px;
}

.footer-col h3,
.footer-col h2 {
  margin-bottom: 10px;
}

.footer-col a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin: 5px 0;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffd700;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #aaa;
}

.location-info {
  text-align: center;
  color: #ddd;
  padding: 28px 28px;

  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.05);

  border-radius: 16px;
  display: block;
  margin: 20px auto;
  max-width: 320px;
  margin-top: 40px;

  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);

  box-shadow: 
    0 10px 30px rgba(0,0,0,0.5),
    0 0 25px rgba(212,175,55,0.08);

  transition: all 0.3s ease;
}

/* 🔥 hover effect */
.location-info:hover{
  transform: translateY(-5px);
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.6),
    0 0 35px rgba(212,175,55,0.15);
}

.location-info h3 {
  color: #fff;
  font-size: 18px;
  letter-spacing: 1px;
}
.location h2{
  text-align:center;
  font-size:36px;
  font-weight:600;
  background: linear-gradient(90deg,#fff,#d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing:1px;
  position:relative;
  display:inline-block;
  margin-bottom: 30px;
  text-shadow: 0 2px 15px rgba(212,175,55,0.15);
}


.loc-text {
  font-size: 13px;
  color: #aaa;
}

.loc-phone {
  margin-top: 8px;
  font-size: 14px;
  color: #d4af37;
}

.loc-trust {
  margin-top: 10px;
  font-size: 12px;
  color: #888;
}

.footer-logo {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 3px;
  background: linear-gradient(90deg, #d4af37, #f5d77a);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-logo::after {
  content: "";
  display: block;
  width: 80px; /* increase */
  height: 2px;
  background: linear-gradient(90deg, #d4af37, #f5d77a);
  margin-top: 10px;
}