/* ========== RESET ========== */
:root {
  --main-font: 'Spicy Rice', cursive;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffef9;
  color: #333;
  overflow-x: hidden;
}

/* ========== TOP HEADER ========== */
.top-header {
  background-color: #3e2723;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding: 0.4rem 1rem;
  flex-wrap: wrap;
  z-index: 4;
}

.top-header i {
  color: #fbc02d; /* warm gold */
  margin-right: 5px;
}

/* ========== MAIN HEADER / NAVBAR ========== */
header {
  width: 100%;
  background-color: #ffffff; /* changed to white for cleaner look */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.384);
  position: sticky;
  top: 0;
  z-index: 1000;
  font-family: var(--main-font);

  border-bottom: 3px solid #fbc02d1a; /* subtle golden border */
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3e2723;
  letter-spacing: 0.5px;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  
  gap: 2rem;
  padding: 5px 1px;
}
#navLinks{
    background-color: #ffffff; /* changed to white for cleaner look */
}
.nav-links a {
  text-decoration: none;
  color: #66332a;
  font-weight: 500;
  position: relative;
  transition: color 0.3s;
  font-size: 1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #fbc02d;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #fbc02d;
}

/* CART ICON */
.cart-icon {
  font-size: 1.1rem;
  color: #3e2723;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.cart-icon:hover {
  color: #fbc02d;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;

  gap: 5px;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: #3e2723;
  border-radius: 5px;
  transition: all 0.3s ease;
}



/* ========== CART SIDEBAR ========== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -350px;
  width: 350px;
  height: 100%;
  background-color: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  z-index: 2000;
  padding: 1.5rem;
  overflow-y: auto;
}

.cart-sidebar.open {
  right: 0;
}

.cart-sidebar h2 {
  margin-bottom: 1rem;
  font-weight: 600;
  color: #3e2723;
}

.close-cart {
  font-size: 1.3rem;
  cursor: pointer;
  float: right;
  color: #3e2723;
}


.logo-cantainer{
    display: flex;
    gap: 20px;
    align-items: baseline;
}
.logo{
    transform: translateY(-5px);
}
#fixed-logo {
  width: 40px;    
 }

 #fixed-logo1{
    width: 100px;
    height: 100px;
    border-radius: 5%;
 }
















/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #ffffff;
    flex-direction: column;
    width: 100%;
    text-align: center;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  }

  .nav-links.open {
    max-height: 300px;
  }

  .hamburger {
    display: flex;
  }
  #headeremail{
    display: none;
  }
   #headerphone{
    display: none;
  }

}




#whatsapplogo{
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  z-index: 100;
}

/* Show tooltip on hover */
#whatsapp-logo a:hover #whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  ri
}

@media (max-width: 600px) {
  
  #whatsapplogo{
    position: fixed;
    bottom: 30px;
  right: 30px;
  width: 50px;
  z-index: 100;
}
  }




  /* Small screen adjustments */
@media (max-width: 768px) {

  /* Reduce navbar padding */
  .navbar {
    padding: 0.2rem 1rem;
  }

  /* Hide full logo text, keep small image */
  .logo {
    font-size: 1rem;
    display: none; /* optional if you want only logo image */
  }

  #fixed-logo {
    width: 35px; /* smaller logo */
    height: auto;
    margin-top: 5px;
  }

  /* Reduce nav link font size */
  .nav-links a {
    font-size: 0.9rem;
    padding: 5px 0;
  }
  .nav-links{
    top: 40px
  }

  /* Reduce icons size */
  .cart-icon {
    font-size: 1rem;
  }
.search-icon{
  display: none;
}
  /* Hamburger size smaller */
  .hamburger div {
    width: 18px;
    height: 2px;
  }

  /* Adjust top-header if exists */
  .top-header {
    font-size: 0.8rem;
    gap: 1rem;
    padding: 0.3rem 0.5rem;
  }
}







@media (max-width: 600px) {


}
#loginicon{
  color: rgb(0, 0, 0);
}
#loginicon:hover{
  color: rgb(234, 255, 0);
}




.cart-item {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 10px;
  margin: 8px 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.cart-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
}

.cart-info {
  flex: 1;
}

.cart-title {
  font-size: 14px;
  font-weight: 600;
}

.cart-weight {
  font-size: 12px;
  color: #777;
}

.cart-price {
  font-size: 14px;
  color: #e67e22;
  font-weight: 600;
  margin-top: 2px;
}

.remove-btn {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #d00;
  cursor: pointer;
}





#logedinuser2 {
  width: 25px;
  height: 25px;
  border: 2px solid rgb(31, 62, 116);
  border-radius: 50%;
  cursor: pointer;
  margin: 0;
  font-weight: bolder;
  align-content: center;
  font-size: 1rem;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  background-color: rgb(31, 62, 116);
  color: wheat;
}

#logedinuser2:hover {
  background-color: rgb(255, 255, 255);
  transition: .5s;
  color: black;
}

@media (max-width: 600px) {
  #logedinuser2 {
  width: 23px;
  height: 23px;
  font-size: 12px;
  }
}


#logedinuser1{
  display: none;
}
#logedinuser2{
  display: none;
}