 /* Fonts (Google Fonts) */
 @import url('https://fonts.googleapis.com/css2?family=Playfair+Display&family=Poppins&display=swap');

 /* Reset & basics */
 * {
   box-sizing: border-box;
   margin: 0; padding: 0;
   font-family: 'Poppins', sans-serif;
   scroll-behavior: smooth;
 }
 body {
   background-color: #0a0a0a; /* very deep black */
   color: #d4af37; /* gold */
   min-height: 100vh;
   
 }
 a { 
   text-decoration: none;
   color: #d4af37;
   transition: color 0.3s ease;
 }
 a:hover, a:focus {
   color: #8b0000; /* deep red */
 }

 /* Navbar styles */
 nav {
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 2rem;
   border-bottom: 1px solid #d4af37;
   position: sticky;
   top: 0;
   z-index: 1000;
 }
 
.logo img{
  height: 110PX;
  width: 150px;
}
 /* .logo {
   font-family: 'Playfair Display', serif;
   font-size: 1.8rem;
   font-weight: 700;
   letter-spacing: 2px;
   cursor: pointer;
 } */

 /* Nav links container */
 .nav-links {
   display: flex;
   gap: 3rem;
   
 }

 .nav-links a {
   font-weight: 600;
   font-size: 1rem;

   position: relative;
 }


 


 /* Underline hover effect */
 .nav-links a::after {
   content: '';
   position: absolute;
   width: 0;
   height: 2px;
   background: #8b0000;
   left: 0; bottom: -4px;
   transition: width 0.3s ease;
 }
 .nav-links a:hover::after {
   width: 100%;
 }

 /* Hamburger */
 .hamburger {
   display: none;
   flex-direction: column;
   cursor: pointer;
   gap: 5px;
 }
 .hamburger div {
   width: 25px;
   height: 3px;
   background-color: #d4af37;
   border-radius: 2px;
   transition: all 0.3s ease;
 }

 .close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #d4af37;
}

/* slidesow  */
 .slideshow-container {
    position: relative;
    max-width: 100%;
    height: 500px; /* Adjust height as needed */
    overflow: hidden;
  }

  .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
  }

  .slide.active {
    opacity: 1;
  }

  .slide-content {
    position: absolute;
    bottom: 50px;
    left: 50px;
    color: white;
    font-family: 'Arial', sans-serif;
    background: rgba(0,0,0,0.4);
    padding: 20px;
    border-radius: 8px;
  }

  .slide-content h2 {
    margin: 0 0 10px;
  }

  .slide-content button {
    background-color: #d4af37;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    opacity: 0.5;
  }

  .slide-content button:hover {
    background-color:#8b0000;
  }


#About .tit{
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

#About .tit img{
  width: 10%;
}

#About p{
  text-align: center;
}

/* Sale Banner Styling */
.sale-banner {
  background-color: #8B0000; /* deep red */
  color: gold;
  text-align: center;
  padding: 25px 20px;
  border-bottom: 2px solid gold;
  animation: fadeSlideIn 1.2s ease-out forwards;
  position: relative;
  z-index: 1000;
}

/* Tagline */
.sale-text {
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0;
  animation: pulse 2s infinite;
}

.subtext {
  font-size: 1rem;
  margin: 10px 0;
  color: #ffd700;
  font-style: italic;
}

/* Highlight keywords */
.highlight {
  color: #fffacd; /* light golden */
  font-weight: 700;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, gold, #ffcc00);
  color: #000;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: buttonPop 1.5s ease-in-out infinite;
}

.cta-button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 15px gold;
}

/* Animations */
@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  } 
}

@keyframes pulse {
  0%, 100% {
    color: gold;
  }
  50% {
    color: #fffacd;
  }
}

@keyframes buttonPop {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}




.footer {
  background-color: #000; /* Black */
  color: #d4af37; /* Gold */
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer a {
  color: #d4af37;
  text-decoration: none;
}

.footer a:hover {
  color: #b71c1c; /* Deep red for hover effect */
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
/* 
.footer-logo {
  width: 70px;
  /* margin-bottom: 5px; 
} */

.contact-item {
  margin: 8px 0;
  font-size: 0.95rem;
}

.footer-links, .footer-categories {
  min-width: 200px;
}

.footer-links h4, .footer-categories h4, .footer-logo {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #fff;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin: 6px 0;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 20px;
  font-size: 0.85rem;
  color: #aaa;
}


.product-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center; /* or space-around / space-between */
  gap: 10px;
  padding: 10px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 2px 10px rgba(217, 217, 182, 0.1);
  justify-content: space-between;
  padding: 20px;
  border: 2px solid #d4af37 ;
  border-radius: 10px;
  text-align: center;
  width: 200px;
  margin: 10px;
  flex: 1 1 300px;   /* minimum width for each card */
  max-width: 320px;
}



.product-card:hover {
  transform: translateY(-10px);
}

.product-card img {
  width: 100%;
   height: 200px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card h3 {
  font-size: 1.2em;
  margin-top: 10px;
}

.product-card p {
  font-size: 0.9em;
  color: #7f8c8d;
}

.product-card span {
  font-size: 1.1em;
  color: #2ecc71;
  margin: 10px 0;
}

.product-card button {
  background-color:  #b71c1c;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.product-card button:hover {
  color: gold;
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
  padding-top: 190px;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
  border: 4px solid white;
  border-radius: 10px;
}

/*.close {*/
/*  position: absolute;*/
/*  top: 10px;*/
/*  right: 30px;*/
/*  z-index: 1000;*/
/*  color: white;*/
/*  font-size: 40px;*/
/*  font-weight: bold;*/
/*  cursor: pointer;*/
/*}*/

.close {
  position: absolute;
  top: 10px;     /* distance from top of cart-modal-content */
  right: 10px;   /* distance from right */
  z-index: 1100; /* higher than modal */
  color: #d4af37; /* gold color for visibility */
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}












.cart-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  
}




.cart-modal-content {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  margin: auto;
  cursor: pointer;
  
   position: relative; 
}

.cart-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

.cart-item button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
}

.cart-item button:hover {
  background-color: #c0392b;
}
.cart-item .quantity-controls button {
  padding: 8px 9px; /* Your reduced size */
  font-size: 14px;
  cursor: pointer;
  border: 1px solid #ccc;
  background-color: #c0392b;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
}

#cartButton {
  display: inline-block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #b71c1c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#cartButton:hover {
  color: gold;
}
#checkoutButton{
  padding: 14px;
  text-align: center;
  background-color: #c0392b;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 10px;
}

.titleshop{
  text-align: center;
  margin-top: 40px;
}

#shop h3{
  text-align: center;
}








  .close-btn {
    display: none;
  }
  
  @media (max-width: 768px) {
    .close-btn {
      display: block;
    }
  }


 
 /* Responsive */
 @media (max-width: 768px) {
   .nav-links {
     position: fixed;
     top: 0;
     right: 0;
     height: 100vh;
     width: 200px;
     background-color: #0a0a0a;
     flex-direction: column;
     align-items: flex-start;
     padding: 4rem 1rem;
     transform: translateX(100%);
     transition: transform 0.3s ease;
     box-shadow: -3px 0 5px rgba(0,0,0,0.5);
     z-index: 100;
   }
   .nav-links.active {
     transform: translateX(0);
   }
   .nav-links a {
     padding: 1rem 0;
     font-size: 1.2rem;
   }
   .hamburger {
     display: flex;
   }
 }