  body {
      box-sizing: border-box;
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    html, body {
      width: 100%;
      height: 100%;
      overflow-x: hidden;
    }
    
    body {
      font-family: 'Inter', sans-serif;
    }
    
    .serif-font {
      font-family: 'Playfair Display', serif;
    }
    
    .fade-in {
      animation: fadeIn 0.8s ease-in;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .slide-up {
      animation: slideUp 0.6s ease-out;
    }
    
    @keyframes slideUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .product-card {
      transition: all 0.3s ease;
    }
    
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    }
    
    .category-card {
      transition: all 0.3s ease;
    }
    
    .category-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }
    
    .btn-primary {
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    
    .floating-icon {
      animation: float 3s ease-in-out infinite;
    }
    
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
    }
    
    .cart-badge {
      animation: bounce 0.5s ease;
    }
    
    @keyframes bounce {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.2); }
    }
    
    .modal-backdrop {
      backdrop-filter: blur(8px);
    }
    
    .sticky-header {
      transition: all 0.3s ease;
    }
    
    .sticky-header.scrolled {
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .parallax-bg {
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
    }
    
    .countdown-timer {
      font-family: 'Inter', sans-serif;
      font-weight: 600;
    }
    
    input:focus, textarea:focus, select:focus {
      outline: none;
      ring: 2px;
      ring-color: #93C5FD;
    }
    
    .toast {
      animation: toastSlide 0.3s ease-out;
    }
    
    @keyframes toastSlide {
      from { transform: translateX(400px); opacity: 0; }
      to { transform: translateX(0); opacity: 1; }
    }

    .loading-spinner {
      border: 3px solid #f3f4f6;
      border-top: 3px solid #60A5FA;
      border-radius: 50%;
      width: 24px;
      height: 24px;
      animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    .view-section {
      display: none;
    }

    .view-section.active {
      display: block;
    }
    .slideshow-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: slideFade 25s infinite;
}

/* 5 images --> each 5 seconds */
.slide-image:nth-child(1) { animation-delay: 0s; }
.slide-image:nth-child(2) { animation-delay: 5s; }
.slide-image:nth-child(3) { animation-delay: 10s; }
.slide-image:nth-child(4) { animation-delay: 15s; }
.slide-image:nth-child(5) { animation-delay: 20s; }

@keyframes slideFade {
    0% { opacity: 0; }
    5% { opacity: 1; }
    20% { opacity: 1; }
    25% { opacity: 0; }
    100% { opacity: 0; }
}

/* Floating emoji animation */
.floating-icon {
    animation: float 6s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-18px); }
    100% { transform: translateY(0px); }
}

/* Fade-in content */
.fade-in {
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.marquee {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}

.marquee-inner {
    display: inline-flex;
    animation: marqueeMove 18s linear infinite;
}

.marquee-item {
    font-size: 2rem;
    font-weight: 700;
    margin-right: 3rem;
    background: linear-gradient(90deg, #0ea5e9, #ec4899, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
    
@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
/* Container */
.marquee-img {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

/* Track */
.marquee-track {
    display: flex;
    gap: 2rem;
    animation: scrollImages 28s linear infinite;
}

/* Images */
.marquee-photo {
    height: 500px; /* Larger image height */
    min-width: 420px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform .3s ease;
}

.marquee-photo:hover {
    transform: scale(1.05);
}

/* Animation */
@keyframes scrollImages {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

