 body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Lato', sans-serif;
      overflow-x: hidden;
      background: #FFFFFF;
    }

    .font-playfair {
      font-family: 'Playfair Display', serif;
    }

    .font-vibes {
      font-family: 'Great Vibes', cursive;
    }

    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 2px 10px rgba(183, 110, 121, 0.1);
    }

    .hero-section {
      position: relative;
      width: 100%;
      height: 100%;
    min-height: 110vh;  /* Increase height */
    padding-top: 120px; /* Adjust text spacing */
    padding-bottom: 10px;
      background: linear-gradient(135deg, #F4C9D8 0%, #F7EEDB 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .sparkle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(183, 110, 121, 0.6);
      border-radius: 50%;
      animation: float 6s infinite ease-in-out;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
      50% { opacity: 1; }
      100% { transform: translateY(-100px) translateX(50px); opacity: 0; }
    }

    .btn-primary {
      background: linear-gradient(135deg, #B76E79 0%, #F4C9D8 100%);
      color: white;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      box-shadow: 0 4px 15px rgba(183, 110, 121, 0.3);
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(183, 110, 121, 0.4);
    }

    .btn-secondary {
      background: transparent;
      color: #B76E79;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 600;
      transition: all 0.3s ease;
      border: 2px solid #B76E79;
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: #B76E79;
      color: white;
    }

    .collection-card {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      transition: all 0.4s ease;
      background: white;
      box-shadow: 0 4px 15px rgba(183, 110, 121, 0.1);
    }

    .collection-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 30px rgba(183, 110, 121, 0.2);
    }

    .collection-card:hover .card-image {
      transform: scale(1.05);
    }

    .card-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      align-items: center;
      justify-content: center;
      animation: fadeIn 0.3s ease;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 20px;
      padding: 40px;
      max-width: 500px;
      width: 90%;
      position: relative;
      animation: slideUp 0.3s ease;
      max-height: 90%;
      overflow-y: auto;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { transform: translateY(50px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    .close-modal {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: #B76E79;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .close-modal:hover {
      background: #F4C9D8;
    }

    .form-input {
      width: 100%;
      padding: 12px 20px;
      border: 2px solid #EAEAEA;
      border-radius: 50px;
      font-size: 16px;
      transition: all 0.3s ease;
      margin-bottom: 16px;
    }

    .form-input:focus {
      outline: none;
      border-color: #B76E79;
    }

    .toast {
      position: fixed;
      top: 100px;
      right: 20px;
      background: white;
      padding: 16px 24px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      z-index: 3000;
      animation: slideInRight 0.3s ease;
      display: none;
    }

    .toast.active {
      display: block;
    }

    @keyframes slideInRight {
      from { transform: translateX(400px); }
      to { transform: translateX(0); }
    }

    .badge {
      position: absolute;
      top: 10px;
      right: 10px;
      background: #B76E79;
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .cart-item {
      display: flex;
      gap: 16px;
      padding: 16px;
      background: #F7EEDB;
      border-radius: 10px;
      margin-bottom: 12px;
    }

    .cart-item-image {
      width: 80px;
      height: 80px;
      object-fit: cover;
      border-radius: 8px;
    }

    .section-title {
      font-size: 48px;
      font-weight: 700;
      color: #B76E79;
      text-align: center;
      margin-bottom: 16px;
    }

    .section-subtitle {
      font-size: 18px;
      color: #666;
      text-align: center;
      margin-bottom: 40px;
    }

    .icon-btn {
      background: none;
      border: none;
      cursor: pointer;
      font-size: 20px;
      color: #B76E79;
      transition: all 0.3s ease;
      padding: 8px;
      position: relative;
    }

    .icon-btn:hover {
      transform: scale(1.1);
    }

    .icon-badge {
      position: absolute;
      top: 0;
      right: 0;
      background: #B76E79;
      color: white;
      border-radius: 50%;
      width: 18px;
      height: 18px;
      font-size: 11px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
    }

    .content-section {
      background: white;
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 4px 15px rgba(183, 110, 121, 0.1);
      margin-bottom: 30px;
    }

    .link-list {
      list-style: none;
    }

    .link-list li {
      margin-bottom: 12px;
    }

    .link-list a {
      color: #666;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .link-list a:hover {
      color: #B76E79;
      padding-left: 8px;
    }
/* Background Slideshow */
#hero-slideshow {
  position: absolute;
  inset: 0;
}

#hero-slideshow img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

#hero-slideshow img.active {
  opacity: 1;
}

/* Typewriter Effect */
.typewriter {
  overflow: hidden;
  white-space: nowrap;
  border-right: 4px solid #B76E79;
  width: 0;
  animation: typing 4s steps(40, end) forwards, blink 0.7s infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Sparkle Effect */
.sparkle {
  width: 12px;
  height: 12px;
  background: #FFD1DC;
  position: absolute;
  border-radius: 50%;
  animation: sparkleAnim 4s linear infinite;
  opacity: 0.8;
}

@keyframes sparkleAnim {
  0% { transform: scale(0.5); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.5); opacity: 0.3; }
}

/* Marquee */
.marquee-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  height: 300px;
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
}

.collection-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.collection-img:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.18);
}
  #popup-overlay {
    transition: opacity 0.3s ease;
  }
  #popup-overlay.flex {
    opacity: 1;
  }
  #popup-overlay.hidden {
    opacity: 0;
  }

/* Infinite Track */
.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scrollMarquee 18s linear infinite;
}

/* Images */
.marquee-track img {
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
}

/* Animation */
@keyframes scrollMarquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Move exactly half because images duplicated */
}
