
    * {
      font-family: 'Inter', sans-serif;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Oswald', sans-serif;
    }
    
    body {
      background-color: #111827; /* gray-900 */
      color: #ffffff;
    }
    
    .accent {
      color: #a3e635; /* lime-400 */
    }
    
    .accent-bg {
      background-color: #a3e635;
      color: #111827;
    }
    
    .accent-border {
      border-color: #a3e635;
    }
    
    .carousel-item {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 4s ease-in-out;
      z-index: 0;
      pointer-events: none;
      will-change: opacity;
    }
    
    .carousel-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
    
    .carousel-item.active {
      opacity: 1;
      z-index: 1;
      pointer-events: auto;
    }
    
    .carousel-container {
      position: relative;
    }
    
    .faq-item {
      border-bottom: 1px solid #374151;
    }
    
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
    }
    
    .faq-item.active .faq-content {
      max-height: 500px;
      transition: max-height 0.5s ease-in;
    }
    
    .size-btn {
      transition: all 0.2s;
    }
    
    .size-btn.selected {
      background-color: #a3e635;
      color: #111827;
      border-color: #a3e635;
    }
    
    .size-btn:disabled {
      opacity: 0.3;
      cursor: not-allowed;
      border-color: #4b5563;
    }
    
    .size-btn:disabled:hover {
      border-color: #4b5563;
      transform: none;
    }
    
    /* Quick View Modal */
    .quick-view-modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      z-index: 1000;
      align-items: center;
      justify-content: center;
      padding: 2rem;
    }
    
    .quick-view-modal.active {
      display: flex;
    }
    
    .quick-view-content {
      position: relative;
      max-width: 90vw;
      max-height: 90vh;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .quick-view-image {
      max-width: 100%;
      max-height: 90vh;
      object-fit: contain;
      border-radius: 8px;
    }
    
    .quick-view-close {
      position: absolute;
      top: 1rem;
      right: 1rem;
      background: rgba(0, 0, 0, 0.7);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.2s;
      z-index: 1001;
    }
    
    .quick-view-close:hover {
      background: rgba(163, 230, 53, 0.9);
      border-color: #a3e635;
      transform: scale(1.1);
    }
    
    .product-card-image {
      cursor: pointer;
    }
    
    .size-indicator {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      border-radius: 6px;
      background: rgba(163, 230, 53, 0.1);
      border: 1px solid rgba(163, 230, 53, 0.3);
      color: #a3e635;
      font-size: 12px;
      font-weight: 600;
      transition: all 0.2s;
    }
    
    .size-indicator:hover {
      background: rgba(163, 230, 53, 0.2);
      border-color: #a3e635;
      transform: scale(1.1);
    }
  