/* ===== Right Side (Black with Slant + Gold Divider) ===== */



.header-right {
  flex: 1;
  background: #d63384;
  color: rgb(15, 13, 13);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 15px 20px;
  position: relative;
  clip-path: polygon(5% 0, 100% 0, 100% 100%, 0% 100%);
  overflow: hidden;
  border-radius: 0px 10px 10px 20px;
  
}

/* ===== Golden Slant Line ===== */
.header-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px; /* small shift so it aligns 
  width: 6%;  /* same slope area */
  height: 100%;
  background: linear-gradient(to bottom, #d4af37, #c88a36, #b8860b); 
  /* luxury gold gradient */
  clip-path: polygon(50% 0, 50% 50%, 0% 100%, 0% 0);
  z-index: 5;
}


 body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
    }

    /* Header wrapper */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(-75deg, #000 50%, #fff 50%);
      clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      padding: 0 40px;
      transition: all 0.4s ease;
      z-index: 1000;
   
    }

    /* Scroll effect */
    header.scrolled {
      height: 70px;
      box-shadow: 0 4px 15px rgba(73, 209, 36, 0.2);
    }

    /* Brand name */
    .logo {
      font-size: 1.8rem;
      font-weight: 700;
      color: #c88a36;
      z-index: 2;
      transition: all 0.3s ease;
    }

    /* Nav links */
    nav {
      display: flex;
      gap: 30px;
      z-index: 2;
    }

    nav a {
      text-decoration: none;
      font-size: 1rem;
      font-weight: 700;
      color: #fff;
      position: relative;
      transition: color 0.3s ease;
    }

    nav a::after {
      content: "";
      position: absolute;
      width: 0%;
      height: 2px;
      background:  black;
      left: 0;
      bottom: -5px;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    /* Cart icon */
    

    .cart:hover {
      transform: scale(1.2);
      color: white;
    }

       
    
    nav #cart {
      color: black;
      font-size: 2.5rem;
      cursor: pointer;
      transition: transform 0.3s ease;
    }
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav a {
    padding: 10px 0;
  }

  nav #cart {
    font-size: 2rem;
  }
}
.header-right{
  margin-left: 20px;

}.footer {
  background: #fff;
  color: #444;
  padding: 60px 20px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  box-shadow: 0 -2px 15px rgba(0,0,0,0.05);
 
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2 {
  font-size: 1.8rem;
  color: #c88a36; /* gold accent */
  margin-bottom: 10px;
  font-weight: 600;
}

.footer h3 {
  color: #c88a36;
  margin-bottom: 15px;
  font-weight: 500;
}


.footer p, 
.footer a {
  color: #555;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.footer a:hover {
  color: #c88a36;
  text-shadow: 0 0 5px rgba(200,138,54,0.4);
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.whatsapp-btn {
  display: inline-block;
  background:  black;
  color: white !important;
  padding: 10px 18px;
  border-radius: 25px;
  margin-top: 10px;
  transition: 0.3s;
  font-weight: 500;
}

.whatsapp-btn:hover {
  background:  #25d366;
  transform: scale(1.05);
  color: white;
}

.social-icons a {
  font-size: 1.4rem;
  margin-right: 15px;
  color: #666;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #c88a36;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #eee;
  text-align: center;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}
 
    .footer a { color: #ff9ecf; text-decoration: none; }
    .footer a:hover { text-decoration: underline; }
.logo1 {
  width: 80px;
  margin-right: 20px;
  border-radius: 20px;
}
.header-left {
  padding-left: 10px;
  margin-left: -30px;
}

.cart-count {
  position: absolute;
  top: 8px;
  right: 10px;
  background: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  display: none; /* hidden if 0 */
  animation: bounce 0.6s ease;
  z-index: 999;
}

@keyframes bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}.whatsapp-dot {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
  100% { transform: scale(1); opacity: 1; }
}
