    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: #03050a;
      overflow-x: hidden;
      color: #eef2ff;
    }

    .glass-nav {
      background: rgba(3, 5, 10, 0.75);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(168, 85, 247, 0.45);
    }
    .btn-outline-light {
      border: 1px solid rgba(255,255,255,0.25);
      background: rgba(255,255,255,0.02);
      transition: all 0.25s;
    }
    .btn-outline-light:hover {
      border-color: #a855f7;
      background: rgba(168,85,247,0.1);
    }
    
    .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 62vh;
      background: rgba(3, 5, 10, 0.99);
      backdrop-filter: blur(25px);
      z-index: 40;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6rem;
      transform: translateY(-100%);
      transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
      border-radius: 0;
      border-bottom: 2px solid rgba(168, 85, 247, 0.5);
    }
    .mobile-menu-overlay.active {
      transform: translateY(0);
    }
    .mobile-menu-link {
      transition: all 0.3s ease;
      padding: 0.75rem 0;
      display: block;
    }
    .mobile-menu-link:hover {
      color: #c084fc;
    }
    .hamburger-line {
      transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
      display: block;
      width: 26px;
      height: 2.5px;
      background: white;
      border-radius: 2px;
      margin: 5px 0;
    }
    .hamburger-active .line1 { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger-active .line2 { opacity: 0; }
    .hamburger-active .line3 { transform: rotate(-45deg) translate(5px, -5px); }
    .menu-backdrop {
      position: fixed;
      top: 62vh;
      left: 0;
      width: 100%;
      height: 38vh;
      background: rgba(0,0,0,0.5);
      z-index: 39;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.4s ease;
    }
    .menu-backdrop.active { opacity: 1; pointer-events: auto; }
    
    .product-card {
      position: relative;
      border-radius: 1.5rem;
      overflow: hidden;
      aspect-ratio: 16 / 9;
      background-size: cover;
      background-position: center;
      transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.2s;
      cursor: pointer;
      box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(0, 0, 0, 0.6);
    }
    .product-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 28px 36px -12px rgba(0, 0, 0, 0.95), 0 0 0 1px rgba(168, 85, 247, 0.25);
    }

    .product-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
      transition: none; 
      pointer-events: none; 
    }

    .product-text-wrapper {
      position: absolute;
      bottom: 1rem;
      left: 1.25rem;
      text-align: left;
      z-index: 5;
      pointer-events: none; 
    }

    .product-subline {
      width: 100%; 
      height: 2px;
      background: rgba(168, 85, 247, 0.65);
      margin-bottom: 0.5rem;
      border-radius: 2px;
      opacity: 0.85;
      transition: none;
    }
    
    .product-name {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      line-height: 1.2;
      letter-spacing: -0.02em;
      background: linear-gradient(135deg, #ffffff, #e9d5ff);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 1px 2px rgba(0,0,0,0.4);
    }
    .product-desc {
      font-size: 0.7rem;
      font-weight: 400;
      color: #cbd5e6;
      margin-top: 0.2rem;
      letter-spacing: 0.3px;
      backdrop-filter: blur(2px);
      display: inline-block;
    }

    .plus-container {
      position: absolute;
      bottom: 0.8rem;
      right: 1rem;
      background: transparent; 
      border-radius: 8px; 
      width: 34px;
      height: 34px;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.4);
      transition: all 0.2s ease;
      z-index: 6;
      cursor: pointer;
      backdrop-filter: blur(4px); 
      box-shadow: none;
    }
    .plus-container i {
      font-size: 1.1rem;
      color: white;
      text-shadow: 0 0 2px rgba(0,0,0,0.5);
      transition: transform 0.1s;
    }
    .plus-container:hover {
      background: rgba(168, 85, 247, 0.25);
      border-color: #c084fc;
      transform: scale(1.03);
    }
    .plus-container:hover i {
      transform: scale(1.02);
    }

    .product-card i:not(.plus-container i) {
      display: none;
    }

    .plus-container i {
      display: inline-flex !important;
    }

    @media (max-width: 640px) {
      .product-name { font-size: 1.2rem; }
      .product-text-wrapper { bottom: 0.7rem; left: 0.8rem; }
      .mobile-menu-overlay { height: 58vh; padding-top: 5rem; }
      .menu-backdrop { top: 58vh; height: 42vh; }
      .plus-container { width: 30px; height: 30px; bottom: 0.6rem; right: 0.7rem; border-radius: 6px; }
      .plus-container i { font-size: 0.9rem; }
      .product-subline { margin-bottom: 0.35rem; height: 1.5px; }
    }
    @media (min-width: 768px) {
      .product-name { font-size: 1.7rem; }
    }

    .product-text-wrapper {
      min-width: 130px; 
    }

    .product-card:active .product-overlay,
    .product-card:focus .product-overlay {
      background: linear-gradient(135deg, rgba(0,0,0,0.45) 0%, rgba(0,0,0,0.75) 100%);
    }
    footer {
      background: #020308;
      border-top: 2px solid rgba(168, 85, 247, 0.3);