:root {
      --white: #ffffff;
      --beige: #f6f1eb;
      --sand: #dcc6a0;
      --black: #000000;
      --charcoal: #1c1c1c;
      --gray: #5a5a5a;
      --border: #e0dad3;
      --accent: #d4bfaa;
    }
body {
      margin: 0;
      font-family: 'Segoe UI', sans-serif;
      background-color: var(--white);
      color: var(--charcoal);
    }
    .top-banner {
  background-color: var(--accent); /* pastel accent color */
  color: var(--black); 
  padding: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
header {
  margin-top: 2.5rem; /* to avoid overlap with banner */
}
header {

      background-color: var(--beige);
      padding: 5px 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
     z-index: 1000;
    }
.logo {
      font-size: 2.5rem;
      color: var(--black);
      font-family:'Herr Von Muellerhoff';
    }
nav a {
      margin-left: 20px;
      text-decoration: none;
      color: var(--charcoal);
      font-weight:bold;
      font-size: 1.25rem;
    }
nav a.active {
      color: var(--accent);
    }
nav a:hover {
      color: var(--accent);
    }
.hero {
      display: flex;
      flex-wrap: wrap;
      padding: 60px 40px;
      background-color: var(--beige);
      align-items: center;
    }
.hero-text {
      flex: 1 1 300px;
      padding: 20px;
      padding-left: 100px;
    }
.hero-text h2 {
      font-size: 42px;
      margin-bottom: 20px;
      margin-right:250px;
      color: var(--black);
    }
.hero-text p {
      font-size: 18px;
      color: var(--gray);
    }
.btn {
      background-color: var(--black);
      color: var(--white);
      padding: 12px 24px;
      border: none;
      margin-top: 20px;
      font-size: 16px;
      cursor: pointer;
      transition: all 0.3s ease;
    }
.btn:hover {
      background-color: var(--sand);
      color: var(--black);
    }
.product-image {
      flex: 1 1 300px;
      padding: 20px;
      display: flex;
      justify-content: center;
    }
.product-image img {
      width: 100%;
      max-width: 320px;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }
.section h2 {
  text-align: center;
  font-size: 2rem;
  margin: 20px 0;
  color: var(--black);
}
.slider-container {
  position: relative;
  overflow: hidden;
  padding: 20px 60px;
  
  background-color: var(--white);
}
    .products {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
    
    }

.product-card {
        flex: 0 0 auto;
          scroll-snap-align: start;
            text-align: center;
        min-width: 250px;
  max-width: 220px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--beige);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.product-card:hover {
  transform: translateY(-5px);
}
.product-card img {
      width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
    }
.product-card h3 {
  text-align: center;
  padding: 10px;
  font-size: 20px;
  color: var(--charcoal);
  background-color: var(--white);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  border: 1px solid var(--border);
  color: var(--black);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 22px;
  cursor: pointer;
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.slider-btn:hover {
  background-color: var(--accent);
  color: var(--white);
}
.slider-btn.left {
  left: 0;
}
.slider-btn.right {
  right:  0;
}
.products::-webkit-scrollbar {
  display: none;
}
.products {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

footer {
      background-color: var(--beige);
      text-align: center;
      padding: 20px;
      font-size: 14px;
      color: var(--gray);
      border-top: 1px solid var(--border);
    }

/* Responsive footer */
.site-footer {
  background-color: var(--beige);
  color: var(--black);
  padding: 3rem 1.5rem 1rem;
  font-size: 0.95rem;
}
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand h3 {
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.footer-contact h4,
.footer-links h4,
.footer-newsletter h4 {
  margin-bottom: 0.6rem;
  color: var(--charcoal);
}

.footer-contact p,
.footer-links li {
  margin: 0.3rem 0;
}
.footer-contact i {
  margin-right: 8px;
  color: var(--accent);
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links ul li a {
  text-decoration: none;
  color: var(--black);
}
.footer-links ul li a:hover {
  color: var(--accent);
}
.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.footer-newsletter input {
  padding: 0.5rem;
  border: 1px solid var(--gray);
  border-radius: 6px;
}
.footer-newsletter button {
  background-color: var(--accent);
  color: var(--black);
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
}
.footer-newsletter button:hover {
  background-color: var(--sand);
}
.social-icons a {
  font-size: 1.4rem;
  margin-right: 1rem;
  color: var(--black);
  transition: color 0.3s ease, transform 0.3s ease;
}
.social-icons a:hover {
  color: var(--accent);
  transform: scale(1.2);
}
.footer-contact a {
  color: var(--black);
  text-decoration: none;
}
.footer-contact a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.shopcat {
  padding: 2rem;
  background-color: var(--white);
}
.shopcat h2{
text-align: center;
font-size: 35px;

font-weight: 700;
}
.sproducts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.sproduct-card {
  width: 300px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--beige);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.sproduct-card img {
  width: 100%;
  height:300px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}
.sproduct-card h3 {
  text-align: center;
  padding: 10px;
  font-size: 20px;
  color: var(--charcoal);
  background-color: var(--white);
}
.sproduct-card:hover {
  transform: translateY(-5px);
}
.kproducts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 6rem;
  padding: 6rem;
  background-color: var(--beige);
}
.kpro {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}
.kpro:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.kpro img {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  max-height: 400px;
  object-fit: cover;
}
.kpro h3 {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin: 10px 0 5px;
}
.kpro p {
  font-size: 1rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}
.top-actions {
 display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-btn,
.wishlist-btn,
.buy-btn{
font-size: 1rem;
  border: none;
  border-radius: 8px;
  padding: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;;
}
.cart-btn {
  background-color: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
  width: 170px;
  height: 50px;
}
.cart-btn:hover {
  background-color: var(--sand);
}
.wishlist-btn {
  background-color: var(--white);
  color: var(--charcoal);
  border: 1px solid var(--border);
  width: 170px;
  height: 50px;
  font-size: 1.2rem;
}
.wishlist-btn.active {
  
  color: red;
}
.wishlist-btn:hover {
  background-color: var(--sand);
}
.buy-btn {
background-color: var(--accent);
  color: var(--white);
  padding: 0.6rem;
  font-size: 0.95rem;
}
.buy-btn:hover {
  background-color: var(--charcoal);
}
 .section-p1{
  padding: 40px 80px;
}
#cart{
  overflow-x: auto;
}
#cart table{
  width:100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}
#cart table img{
  width: 70px;
}
#cart table td:nth-child(1){
  width: 100px;
  text-align: center;
}
#cart table td:nth-child(2){
  width: 150px;
  text-align: center;
}
#cart table td:nth-child(3){
  width: 250px;
  text-align: center;
}
#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6){
  width: 150px;
  text-align: center;
}
#cart table td:nth-child(5) input{
  width: 70px;
  padding: 10px 5px 10px 15px;
}
#cart table thead{
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}
#cart table thead td{
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding:18px 0 ;
}
#cart table tbody tr td{
  padding-top:15px;
}
#cart table tbody td{
  padding-top:13px;
}
input[type="number"] {
  width: 50px;
  padding: 5px;
}
.app-btn {
background-color: var(--accent);
  color: var(--white);
  border: none;
  width: 150px;
  height: 40px;
  border: none;
  border-radius:5px ;
  cursor: pointer;

}
.app-btn:hover {
  background-color: var(--charcoal);
}
#cart-add{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#coupon{
  width: 40%;
  margin-bottom: 30px;
}
#coupon h3,
#subtotal h3{
  padding-bottom: 15px;
}
#coupon input{
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}
#subtotal{
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}
#subtotal table{
  border-collapse:collapse ;
  width: 100%;
  margin-bottom: 20px;
}
#subtotal table td{
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}
 .pay-btn {
      background-color: var(--accent, #7b5d5d);
      color: white;
      padding: 15px 30px;
      border: none;
      font-size: 1rem;
      cursor: pointer;
    }
     .checkout-container {
      max-width: 700px;
      margin: 60px auto;
      padding: 40px;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .checkout-container h1 {
      font-size: 2.2rem;
      color: var(--black);
      margin-bottom: 1.2rem;
    }

    .amount {
      font-size: 1.5rem;
      color: var(--charcoal);
      margin-bottom: 2rem;
    }

    .pay-btn {
      background-color: var(--accent);
      color: var(--white);
      border: none;
      padding: 14px 28px;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .pay-btn:hover {
      background-color: var(--charcoal);
    }

    footer {
      margin-top: 60px;
    }
     .pro-btn {
      background-color: var(--accent);
      color: var(--white);
      border: none;
      padding: 15px 30px;
      font-size: 1rem;
      border-radius: 8px;
      cursor: pointer;
      transition: background 0.3s ease;
      text-decoration: none;
    }
    .pro-btn:hover {
  background-color: var(--charcoal);
}
.invoice-container {
      max-width: 600px;
      margin: 2rem auto;
      padding: 2rem;
      border: 1px solid var(--border, #ccc);
      border-radius: 10px;
      background: var(--white, #fff);
      font-family: Arial, sans-serif;
    }
    h1, h2 { text-align: center; }
    ul { padding-left: 20px; }
    .btn-group {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }
    button {
      padding: 0.5rem 1rem;
      background-color: var(--accent, #7b5d5d);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }
    .invoice-container {
      max-width: 700px;
      margin: 3rem auto;
      background: var(--white);
      padding: 2rem;
      border-radius: 20px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
      border: 2px solid var(--border);
    }

    h1 {
      color: var(--accent);
      text-align: center;
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }

    h2, h3 {
      text-align: center;
      color: var(--charcoal);
    }

    p, li {
      font-size: 1rem;
      line-height: 1.5;
    }

    ul {
      padding-left: 1.5rem;
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .btn-group {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-top: 2rem;
    }

    button {
      background-color: var(--accent);
      color: var(--white);
      border: none;
      padding: 0.6rem 1.2rem;
      font-size: 1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    button:hover {
      background-color: var(--charcoal);
    }

    .invoice-details {
      background-color: var(--accent);
      padding: 1rem;
      border-radius: 10px;
      margin-top: 1rem;
    }

    .invoice-details p {
      margin: 0.5rem 0;
    }
    .image-swatches {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  justify-content: center;
  padding: 5px 0;
}

.image-swatches img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--border, #ddd);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.image-swatches img:hover {
  transform: scale(1.15);
  border-color: var(--accent, #b78fa8);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.image-swatches img:active {
  transform: scale(1.05);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

    .about-container {
      max-width: 1000px;
      margin: 2rem auto;
      padding: 2rem;
      background-color: var(--beige);
      border-radius: 20px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .about-container h2 {
      color: var(--charcoal);
      margin-bottom: 1rem;
    }

    .about-section {
      margin-bottom: 2rem;
    }

    .about-section p {
      line-height: 1.6;
    }
    
    .image-section {
      margin: 2rem 0;
      text-align: center;
    }

    .image-section img {
      max-width:250px;
      border-radius: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    


    /* MOBILE OPTIMIZATION: Only for screens up to 768px */
/* ===== Mobile Responsive Styles ===== */



.faq-section {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
  background: var(--bg);
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.faq-heading {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text);
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.faq-question {
  background: var(--accent);
  color: var(--text);
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.3s;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: var(--hover);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  padding: 0 1rem;
  transition: max-height 0.4s ease-in-out, padding 0.3s;
}

.faq-answer.open {
  padding: 1rem;
  max-height: 500px;
}

.arrow {
  transition: transform 0.3s ease;
}

.faq-question.active .arrow {
  transform: rotate(180deg);
}


.contact-section {
  background-color: var(--bg);
  padding: 3rem 2rem;
  max-width: 800px;
  margin: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.section-heading {
  text-align: center;
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-intro {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.4rem;
  color: var(--text);
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fff;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.submit-btn {
  background-color: var(--accent);
  color: white;
  padding: 0.9rem 1.5rem;
  border: none;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  align-self: center;
}

.submit-btn:hover {
  background-color: var(--charcoal);
}
.icon-badge {
  position: relative;
  display: inline-block;
}

.badge {
  position: absolute;
  top: -6px;
  right: -10px;
  background: var(--accent, #ff4d6d);
  color: white;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 50%;
  display: none;
}
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
  }
  nav#mobileMenu {
    display: flex;
    gap: 1rem;
  }

 
#whatsappPopup {
  display: none;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.top-banner {
  background-color: var(--accent); /* pastel accent color */
  color: var(--black); 
  padding: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: center;
  z-index: 1000;
  position: fixed;
  top: 0;
  width: 100%;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header {
  margin-top: 2.5rem; /* to avoid overlap with banner */
}

@media (max-width: 768px) {
  .top-banner {
    font-size: 0.85rem;
  }
  header {
    padding: 10px 20px;
    flex-wrap: wrap;
    position: relative;
  }
  nav#mobileMenu {
      display: none;
      flex-direction: column;
      background: var(--white);
      position: absolute;
      top: 60px;
      right: 10px;
      padding: 1rem;
      border-radius: 0.5rem;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    nav#mobileMenu.show {
      display: flex;
    }
    .mobile-toggle {
      display: inline-block;
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
    }

  .logo {
    font-size: 2rem;
    flex: 1 0 100%;
    text-align: center;
  }

  nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: var(--beige);
    padding: 1rem 0;
    border-top: 1px solid var(--border);
  }

  nav a {
    margin: 10px 0;
    font-size: 1.2rem;
    text-align: center;
  }

  
  .hero {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
  }

  .hero-text {
    padding: 0;
  }

  .hero-text h2 {
    font-size: 30px;
    margin: 0 0 15px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .product-image {
    padding: 10px;
  }

  .product-image img {
    max-width: 90%;
  }

  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .checkout-container {
    padding: 20px;
    margin: 20px auto;
  }

  .about-container {
    padding: 1rem;
    margin: 1rem;
  }
.kproducts {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}



 .kpro {
  background: var(--white);
  padding: 0.6rem;
  border-radius: 1rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto; /* remove fixed height */
  transition: transform 0.2s ease;
}

.kpro img {
  width: 100%;
  aspect-ratio: 1 / 1; /* Ensures square images */
  object-fit: cover;
  border-radius: 1rem;
}
.kpro h3 {
  font-size: 0.9rem;
  margin: 0.4rem 0 0.2rem;
  font-weight: 600;
}

.kpro p {
  font-size: 0.85rem;
  color: var(--charcoal);
  margin: 0.2rem 0;
}

.kpro .btn-group {
  gap: 0.3rem;
  margin-top: 0.4rem;
}

.kpro .image-swatches {
    justify-content: center;
    gap: 4px;
    margin: 0.4rem 0;
  }

  .image-swatches img {
    width: 36px;
    height: 36px;
  }

.kpro button, .kpro .buy-now-btn {
    flex: 1;
    padding: 0.3rem 0.6rem;
    border: none;
    border-radius: 1rem;
    background-color: var(--accent);
    color: var(--black);
    font-size: 0.85rem;
    font-weight: 500;
    }
    
  .kpro button:hover, .kpro .buy-now-btn:hover {
    background-color: var(--charcoal);
    color: var(--white);
  }


  .invoice-container {
    padding: 1rem;
    margin: 1rem;
  }

  #cart-add {
    flex-direction: column;
    gap: 1.5rem;
  }

  #coupon, #subtotal {
    width: 100%;
  }

  .slider-container {
    padding: 10px;
  }
  
  nav {
    display: none; /* Hidden by default on mobile, shown on toggle */
    flex-direction: column;
    background-color: var(--beige);
    width: 100%;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
  }

  nav a {
    margin: 10px 0;
    font-size: 1.2rem;
    text-align: center;
  }
  .search-form {
    width: 90%;
    top: 60px;
    right: 5%;
  }

  .search-form input {
    width: 100%;
  }
   .search-popup {
    top: 70px;
    right: 20px;
    width: calc(100% - 40px);
  }

  .search-popup input {
    width: 70%;
  }

  .search-popup button {
    width: 20%;
  }
   .contact-section {
    padding: 2rem 1rem;
  }

  .section-heading {
    font-size: 1.6rem;
  }

  .submit-btn {
    width: 100%;
  }
}
.tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #f07c7c;
  color: white;
  font-size: 1.2rem;
  padding: 3px 6px;
  border-radius: 4px;
  z-index: 1;
}
.kpro {
  position: relative;
}
.bouquet-banner {
  width: 100%;
  margin: 3rem 0 0;
  padding: 0;
  background-color: var(--beige);
}

.bouquet-banner img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* Popup Overlay with fade animation */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 28, 28, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Scale animation for popup box */
.popup-box {
  background-color: var(--white);
  border: 2px solid var(--border);
  padding: 2rem;
  max-width: 400px;
  width: 90%;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  animation: scaleIn 0.4s ease forwards;
  position: relative;
}

@keyframes scaleIn {
  to { transform: scale(1); }
}

.popup-box input[type="email"] {
  padding: 0.6rem;
  border: 1px solid var(--border);
  width: 100%;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  background: var(--beige);
  color: var(--charcoal);
  font-size: 1rem;
}

.popup-login-btn {
  background-color: var(--accent);
  color: var(--white);
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: 0.3s;
}

.popup-login-btn:hover {
  background-color: var(--sand);
}

.close-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray);
  position: absolute;
  top: 20px;
  right: 30px;
  cursor: pointer;
}
