:root{
  --primary:#111827;   
  --accent:#cfa670;    
  --light:#ffffff;
  --muted:#f6f6f6;
  --text:#222;
}

body{
  font-family:'Segoe UI',sans-serif;
  background:var(--muted);
  color:var(--text);
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    font-weight: 400;
}

/* ================= NAVBAR ================= */
.main-nav{
  background:var(--primary);
}
.main-nav .navbar-brand{
  color:var(--accent);
  font-size:22px;
  letter-spacing:2px;
  font-weight:300;
}
.main-nav .nav-link{
  color:#fff;
  font-weight:300;
  padding:10px 15px;
}
.main-nav .nav-link:hover{
  color:var(--accent);
}
.dropdown-menu{
  border:none;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.dropdown-item:hover{
  background:var(--accent);
  color:#fff;
}

/* ================= SEARCH ================= */
.search-input{
  border-radius:20px;
  padding-left:15px;
}
.search-dropdown{
  position:absolute;
  top:110%;
  right:0;
  width:320px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 15px 40px rgba(0,0,0,0.15);
  display:none;
  z-index:9999;
  padding:15px;
}

/* ================= HERO SLIDER ================= */
.hero-slider{ margin-top:0; }
.hero-slide{
  height:70vh;
  background-size:cover;
  background-position:center;
  position:relative;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
}
.hero-overlay h1{
  font-size:42px;
  font-weight:700;
  letter-spacing:1px;
}

/* ================= CATEGORY SECTION ================= */
.category-card{
  position:relative;
  display:block;
  border-radius:12px;
  overflow:hidden;
  height:220px;
}
.category-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}
.category-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:20px;
  font-weight:600;
  letter-spacing:1px;
}
.category-card:hover img{ transform:scale(1.1); }
.category-card:hover .category-overlay{ background:rgba(0,0,0,0.55); }

.search-dropdown{
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    border-radius:10px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
    display:none;
    z-index:9999;
    padding:15px;
}
.search-section-title{
    font-size:12px;
    text-transform:uppercase;
    color:#888;
    margin-top:8px;
}
.search-item{
    padding:6px 0;
    display:flex;
    align-items:center;
    gap:10px;
}
.search-item img{
    width:45px;
    height:45px;
    border-radius:6px;
    object-fit:cover;
}
.search-item a{
    text-decoration:none;
    color:#222;
}
.search-item a:hover{ color:#0d6efd; }

/* ================= PRODUCT CARDS ================= */
.card{
  border:none;
  border-radius:12px;
  overflow:hidden;
  transition:.3s;
  background:#fff;
}
.card:hover{
  transform:translateY(-6px);
  box-shadow:0 15px 30px rgba(0,0,0,.15);
}
.card img{
  height:220px;
  object-fit:cover;
}
.product-title{
  font-size:12px;
  font-weight:400;
}

/* ================= SECTION TITLE ================= */
.section-title{
  font-weight:500;
  text-transform:uppercase;
  letter-spacing:1px;
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .hero-slide{ height:50vh; }
  .hero-overlay h1{ font-size:26px; }
  .search-dropdown{ width:100%; right:0; }
}


/*.product-title{font-size:1.8rem;font-weight:600}*/
.product-price{font-size:1.5rem;color:#0d6efd}
.product-main-img{max-height:450px;object-fit:contain}
.product-thumb-img{height:90px;object-fit:cover;cursor:pointer;border:1px solid #ddd}
@media(max-width:768px){.product-main-img{max-height:300px}}

