    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #FFF9F3;
      color: #3A2E2A;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Playfair Display', serif;
    }

    .poppins {
      font-family: 'Poppins', sans-serif;
    }

    .soft-card {
      background: #ffffff;
      border-radius: 24px;
      box-shadow: 0 4px 20px rgba(243, 198, 198, 0.15);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .soft-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 40px rgba(243, 198, 198, 0.25);
    }

    .gold-glow {
      box-shadow: 0 4px 20px rgba(201, 162, 77, 0.3);
    }

    .gold-glow:hover {
      box-shadow: 0 8px 30px rgba(201, 162, 77, 0.5);
    }

    .btn-primary {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border-radius: 50px;
      padding: 16px 32px;
      font-size: 14px;
      cursor: pointer;
      border: none;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .pastel-bg {
      background: linear-gradient(135deg, #FFF9F3 0%, #F3C6C6 50%, #E6DFF1 100%);
    }

    @keyframes snowfall {
      0% {
        transform: translateY(-10px) translateX(0);
        opacity: 1;
      }
      100% {
        transform: translateY(100vh) translateX(20px);
        opacity: 0.3;
      }
    }

    .snowflake {
      position: absolute;
      top: -10px;
      color: #F3C6C6;
      opacity: 0.6;
      animation: snowfall linear infinite;
      pointer-events: none;
      font-size: 20px;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-20px); }
    }

    .floating {
      animation: float 6s ease-in-out infinite;
    }

    @keyframes gentlePulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .pulse-gentle {
      animation: gentlePulse 3s ease-in-out infinite;
    }

    .product-card {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(201, 162, 77, 0.1), transparent);
      transition: left 0.6s ease;
    }

    .product-card:hover::before {
      left: 100%;
    }

    .toast {
      position: fixed;
      top: 20px;
      right: 20px;
      background: linear-gradient(135deg, #F3C6C6, #C9A24D);
      padding: 1rem 1.5rem;
      border-radius: 50px;
      box-shadow: 0 10px 40px rgba(243, 198, 198, 0.4);
      z-index: 1000;
      animation: slideIn 0.4s ease;
      color: white;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
    }

    @keyframes slideIn {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .modal-overlay {
      background: rgba(58, 46, 42, 0.8);
      backdrop-filter: blur(10px);
    }

    .modal-content {
      animation: modalSlide 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes modalSlide {
      from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
      }
      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    input:focus, textarea:focus, select:focus {
      outline: none;
      border-color: #F3C6C6;
      box-shadow: 0 0 0 3px rgba(243, 198, 198, 0.2);
    }

    .gold-text {
      color: #C9A24D;
    }

    .rose-text {
      color: #F3C6C6;
    }

    .lavender-bg {
      background-color: #E6DFF1;
    }

    .rose-bg {
      background-color: #F3C6C6;
    }

    .category-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      cursor: pointer;
    }

    .category-card::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 60%;
      background: linear-gradient(to top, rgba(58, 46, 42, 0.8), transparent);
      transition: height 0.4s ease;
    }

    .category-card:hover::after {
      height: 100%;
    }

    .badge {
      position: absolute;
      top: 12px;
      right: 12px;
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 12px;
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      letter-spacing: 0.5px;
      border: 2px solid #C9A24D;
      background: rgba(255, 255, 255, 0.95);
      color: #C9A24D;
    }

    .scroll-smooth {
      scroll-behavior: smooth;
    }

    @media (max-width: 768px) {
      .btn-primary {
        padding: 14px 24px;
        font-size: 12px;
      }
    }

    .nav-link {
      position: relative;
      transition: color 0.3s ease;
      font-family: 'Poppins', sans-serif;
      background: none;
      border: none;
      cursor: pointer;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: #C9A24D;
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    @keyframes countdown-pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }

    .countdown-digit {
      animation: countdown-pulse 1s ease-in-out infinite;
    }

    .filter-btn {
      transition: all 0.3s ease;
      border: 2px solid transparent;
      background: white;
      cursor: pointer;
    }

    .filter-btn.active {
      border-color: #C9A24D;
      background: rgba(201, 162, 77, 0.1);
      color: #C9A24D;
    }

    .filter-btn:hover {
      border-color: #F3C6C6;
      background: rgba(243, 198, 198, 0.1);
    }

    #app-container {
      width: 100%;
      height: 100%;
      overflow-y: auto;
    }
