    body {
      box-sizing: border-box;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --ivory: #FAF8F5;
      --charcoal: #2C2C2C;
      --beige: #D4C4B0;
      --olive: #8B9A7E;
      --gold: #C9A961;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      overflow-x: hidden;
    }

    .font-playfair {
      font-family: 'Playfair Display', serif;
    }

    .font-poppins {
      font-family: 'Poppins', sans-serif;
    }

    .smooth-transition {
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .card-hover:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .image-zoom {
      overflow: hidden;
    }

    .image-zoom img {
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .image-zoom:hover img {
      transform: scale(1.08);
    }

    .btn-primary {
      background: var(--charcoal);
      color: var(--ivory);
      padding: 14px 32px;
      border-radius: 2px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      border: none;
      cursor: pointer;
    }

    .btn-primary:hover {
      background: var(--olive);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }

    .btn-secondary {
      background: transparent;
      color: var(--charcoal);
      padding: 14px 32px;
      border: 2px solid var(--charcoal);
      border-radius: 2px;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .btn-secondary:hover {
      background: var(--charcoal);
      color: var(--ivory);
    }

    .overlay {
      background: linear-gradient(135deg, rgba(44,44,44,0.7) 0%, rgba(44,44,44,0.4) 100%);
    }

    .nav-link {
      position: relative;
      color: var(--charcoal);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after {
      width: 100%;
    }

    .section-title {
      font-size: 3rem;
      font-weight: 600;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      animation: fadeIn 0.3s ease;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: var(--ivory);
      padding: 48px;
      border-radius: 4px;
      max-width: 600px;
      width: 90%;
      max-height: 90%;
      overflow-y: auto;
      position: relative;
      animation: slideUp 0.4s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes slideUp {
      from { 
        opacity: 0;
        transform: translateY(30px);
      }
      to { 
        opacity: 1;
        transform: translateY(0);
      }
    }

    .filter-btn {
      padding: 10px 24px;
      border: 2px solid var(--beige);
      background: transparent;
      color: var(--charcoal);
      border-radius: 24px;
      cursor: pointer;
      transition: all 0.3s ease;
      font-weight: 500;
      font-size: 14px;
    }

    .filter-btn:hover, .filter-btn.active {
      background: var(--charcoal);
      color: var(--ivory);
      border-color: var(--charcoal);
    }

    .product-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--gold);
      color: white;
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    .toast {
      position: fixed;
      bottom: 32px;
      right: 32px;
      background: var(--charcoal);
      color: var(--ivory);
      padding: 16px 24px;
      border-radius: 4px;
      display: none;
      align-items: center;
      gap: 12px;
      z-index: 1001;
      animation: slideInRight 0.4s ease;
    }

    .toast.active {
      display: flex;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(400px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    input[type="text"], input[type="email"], input[type="password"], textarea {
      width: 100%;
      padding: 14px 18px;
      border: 2px solid var(--beige);
      border-radius: 2px;
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      transition: border-color 0.3s ease;
      background: var(--ivory);
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: var(--olive);
    }

    .wishlist-btn {
      position: absolute;
      top: 16px;
      left: 16px;
      background: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      border: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .wishlist-btn:hover {
      background: var(--gold);
      color: white;
      transform: scale(1.1);
    }

    .wishlist-btn.active {
      background: var(--gold);
      color: white;
    }

    @media (max-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
      
      .modal-content {
        padding: 32px 24px;
      }

      #desktop-nav {
        display: none;
      }

      .hero-buttons {
        flex-direction: column;
        width: 100%;
      }

      .hero-buttons button {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .section-title {
        font-size: 1.5rem;
      }
    }
/* Visibility helpers */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Badge style */
.badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--gold);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    display: none;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* Responsive breakpoint */
@media (max-width: 900px) {
    .desktop-only { display: none !important; }
    .mobile-only { display: inline-block !important; }
}
