    body {
      box-sizing: border-box;
    }
    
    * {
      font-family: 'Satisfy', cursive;
    }
    
    .font-serif {
      font-family: 'Satisfy', cursive;
    }
    
    .font-cursive {
      font-family: 'Satisfy', cursive;
    }
    
    .sparkle {
      position: fixed;
      width: 4px;
      height: 4px;
      background: radial-gradient(circle, #CFA5B4 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      animation: sparkle-float 4s infinite ease-in-out;
      z-index: 1;
    }
    
    @keyframes sparkle-float {
      0%, 100% { transform: translateY(0) scale(1); opacity: 0; }
      50% { transform: translateY(-100px) scale(1.5); opacity: 1; }
    }
    
    .gradient-bg {
      background: linear-gradient(135deg, #F6DCE7 0%, #FFF9F4 50%, #CAB5D7 100%);
    }
    
    .card-hover {
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    
    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(207, 165, 180, 0.3);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, #CFA5B4 0%, #CAB5D7 100%);
      color: white;
      transition: all 0.3s ease;
    }
    
    .btn-primary:hover {
      box-shadow: 0 8px 20px rgba(207, 165, 180, 0.4);
      transform: translateY(-2px);
    }
    
    .fade-in {
      animation: fadeIn 0.8s ease-in-out;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(20px); }
      to { opacity: 1; transform: translateY(0); }
    }
    
    .glassmorphism {
      background: rgba(255, 249, 244, 0.8);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(207, 165, 180, 0.2);
    }
    
    .product-zoom {
      transition: transform 0.3s ease;
    }
    
    .product-zoom:hover {
      transform: scale(1.05);
    }
    
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }
    
    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #CFA5B4, #CAB5D7);
      transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
      width: 100%;
    }
    
    .loading-ribbon {
      width: 100px;
      height: 100px;
      border: 4px solid #F6DCE7;
      border-top-color: #CFA5B4;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
      to { transform: rotate(360deg); }
    }
    
    .cart-badge {
      position: absolute;
      top: -8px;
      right: -8px;
      background: #CFA5B4;
      color: white;
      font-size: 0.7rem;
      width: 20px;
      height: 20px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .filter-checkbox:checked + label {
      background: linear-gradient(135deg, #CFA5B4 0%, #CAB5D7 100%);
      color: white;
    }
    
    .modal-overlay {
      background: rgba(42, 42, 42, 0.6);
      backdrop-filter: blur(5px);
    }
    
    .hero-slider {
      position: relative;
      overflow: hidden;
    }
    
    .slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    
    .slider-image {
      min-width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 20px;
    }
    
    .slider-dots {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 16px;
    }
    
    .slider-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(207, 165, 180, 0.3);
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .slider-dot.active {
      background: #CFA5B4;
      transform: scale(1.3);
    }
    
    .info-modal-content {
      max-height: 80vh;
      overflow-y: auto;
    }
    
    .typewriter {
      overflow: hidden;
      border-right: 3px solid;
      white-space: nowrap;
      animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
      display: inline-block;
    }
    
    @keyframes typing {
      from { width: 0 }
      to { width: 100% }
    }
    
    @keyframes blink-caret {
      from, to { border-color: transparent }
      50% { border-color: currentColor }
    }
    
    .marquee-container {
      width: 100%;
      overflow: hidden;
      background: rgba(207, 165, 180, 0.2);
      padding: 12px 0;
      position: relative;
    }
    
    .marquee-content {
      display: flex;
      animation: marquee 30s linear infinite;
      white-space: nowrap;
    }
    
    .marquee-item {
      padding: 0 40px;
      font-size: 1.1rem;
      font-weight: 500;
    }
    
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    
    .hero-bg-slider {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    
    .hero-bg-slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
    
    .hero-bg-slide.active {
      opacity: 1;
    }
    
    .hero-content-overlay {
      position: relative;
      z-index: 1;
    }
