/* header css */

.exp_btn{
    background: linear-gradient(135deg, #d4b370, #926a2d);      
    font-weight: 600;
    color:#fff;
    border-color:#b45309;

    
 }

   /* Navbar background blur */
.navbar-blur {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  height: 80px;
  z-index: 1050;
}

/* Brand */
.brand-logo {
  width: 120px;
  
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  
}

.brand-logo img{
  width: 100%;
}


.brand-title {
  font-size: 1.1rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.75rem;
  color: #6b7280;
}

/* Navigation links */
.nav-link {
  font-size: 0.9rem;
  color: #0f172a;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #926a2d;
}

.nav-link.active {
  color: #926a2d!important;
  font-weight: 600;
}

/* Icon buttons */
.icon-btn {
  padding: 8px;
  border-radius: 10px;
  color: #0f172a;
  transition: background 0.3s;
}

.icon-btn:hover {
  background: #f1f5f9;
}

/* Cart badge */
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #b28b48;
  color: #ffffff;
  font-size: 0.7rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Body offset for fixed navbar */
body {
  padding-top: 80px;
}


/* footer css */

.footer {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #ffffff;
  }
  
  .footer h5 {
    font-weight: 700;
  }
  
  .footer small {
    color: #94a3b8;
  }
  
  .footer-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }
  
  .footer-logo {
    width: 100px;
    
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
  }
  
  .footer-logo img{
    width: 100%;
  }


  .footer-title {
    margin-bottom: 1.5rem;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.6rem;
  }
  
  .footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color:  #b28b48;
  }
  
  .social-icon {
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.3s;
  }
  
  .social-icon:hover {
    background: #b28b48;
    color: #ffffff;
  }
  
  .footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #cbd5e1;
    font-size: 0.9rem;
  }
  
  .footer-contact li {
    display: flex;
    gap: 10px;
    margin-bottom: 1rem;
  }
  
  .footer-contact i {
    color: #b28b48;
    font-size: 1.1rem;
  }
  
  .footer-bottom {
    border-top: 1px solid #334155;
    margin-top: 3rem;
    padding-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
  }
  
  .bottom-links {
    display: flex;
    gap: 1.5rem;
  }
  
  .bottom-links a {
    color: #94a3b8;
    text-decoration: none;
  }
  
  .bottom-links a:hover {
    color: #b28b48;
  }