    :root {
      --primary: #ff6b98;
      --secondary: #a18aff;
      --accent: #5ce1e6;
      --gold: #d4af37;
      --dark: #1a1a2e;
      --light: #fef6fb;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      background-color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      color: var(--light);
      overflow-x: hidden;
      perspective: 1000px;
    }
    
    .header {
      text-align: center;
      padding: 3rem 2rem;
      position: relative;
      overflow: hidden;
    }
  
    
    .header h1 {
      font-family: 'Playfair Display', serif;
      font-size: 4rem;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, var(--primary), var(--secondary), var(--accent));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      text-shadow: 0 0 20px rgba(255, 107, 152, 0.3);
    }
    
    .header p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto;
      opacity: 0.8;
    }
    
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 3rem;
      padding: 3rem;
      max-width: 1500px;
      margin: 0 auto;
    }
    
    .product-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      border-radius: 0px;
      overflow: hidden;
      transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      transform-style: preserve-3d;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
      cursor: pointer;
      position: relative;
    }
    
    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 50% 0%, rgba(255, 107, 152, 0.1) 0%, transparent 70%);
      transition: all 0.8s ease;
      z-index: -1;
    }
    
    .product-image {
      height: 250px;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(45deg, #2a2a4a, #1a1a2e);
    }
    
    .product-image img {
      max-width: 80%;
      max-height: 80%;
      object-fit: contain;
      transition: all 0.5s ease;
      filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    }
    
    .product-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: var(--gold);
      color: var(--dark);
      padding: 0.5rem 1rem;
      border-radius: 50px;
      font-weight: bold;
      font-size: 0.8rem;
      box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    }
    
    .product-info {
      padding: 2rem;
      position: relative;
    }
    
    .product-category {
      position: absolute;
      top: -15px;
      left: 20px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      padding: 0.3rem 1rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: bold;
      box-shadow: 0 5px 15px rgba(255, 107, 152, 0.3);
    }
    
    .product-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
      color: var(--light);
    }
    
    .product-price {
      font-size: 1.8rem;
      font-weight: bold;
      margin-bottom: 1rem;
      color: var(--gold);
    }
    
    .product-description {
      opacity: 0.8;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    
    .product-colors {
      display: flex;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    .color-option {
      width: 25px;
      height: 25px;
      border-radius: 50%;
      cursor: pointer;
      border: 2px solid transparent;
      transition: all 0.3s ease;
    }
    
    .color-option:hover {
      transform: scale(1.2);
    }
    
    .color-option.active {
      border-color: var(--light);
      transform: scale(1.1);
    }
    
    .product-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      width: 100%;
      padding: 1rem;
      border: none;
      border-radius: 50px;
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      color: white;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 5px 20px rgba(255, 107, 152, 0.3);
    }
    
    .product-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(255, 107, 152, 0.4);
    }
    
    .product-btn:active {
      transform: translateY(0);
    }
    
    .product-card:hover {
      transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    }
    
    .product-card:hover .product-image img {
      transform: scale(1.1) rotate(5deg);
    }
    
    .product-card:hover::before {
      transform: scale(1.2);
      opacity: 0.5;
    }
    
    .floating-particles {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: -1;
    }
    
    .floating-particle {
      position: absolute;
      background: linear-gradient(45deg, var(--primary), var(--secondary));
      border-radius: 50%;
      opacity: 0.1;
      animation: float 15s infinite linear;
    }
    
    @keyframes float {
      0% {
        transform: translateY(0) rotate(0deg);
      }
      50% {
        transform: translateY(-100px) rotate(180deg);
      }
      100% {
        transform: translateY(0) rotate(360deg);
      }
    }
    
    .glow-effect {
      position: absolute;
      width: 200px;
      height: 200px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 107, 152, 0.2) 0%, transparent 70%);
      filter: blur(30px);
      animation: pulse 8s infinite alternate;
    }
    
    @keyframes pulse {
      0% {
        transform: scale(1);
        opacity: 0.3;
      }
      100% {
        transform: scale(1.5);
        opacity: 0.1;
      }
    }
    
    .glow-1 {
      top: 20%;
      left: 10%;
      background: radial-gradient(circle, rgba(255, 107, 152, 0.2) 0%, transparent 70%);
    }
    
    .glow-2 {
      bottom: 10%;
      right: 15%;
      background: radial-gradient(circle, rgba(161, 138, 255, 0.2) 0%, transparent 70%);
    }
    
    .glow-3 {
      top: 50%;
      left: 50%;
      background: radial-gradient(circle, rgba(92, 225, 230, 0.2) 0%, transparent 70%);
    }
    
    .menu-buttons {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    
    .menu-btn {
      padding: 0.7rem 1.5rem;
      border: none;
      border-radius: 50px;
      background: rgba(255, 255, 255, 0.1);
      color: var(--light);
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    
    .menu-btn:hover, .menu-btn.active {
      background: linear-gradient(90deg, var(--primary), var(--secondary));
      box-shadow: 0 5px 15px rgba(255, 107, 152, 0.3);
    }
    
    @media (max-width: 768px) {
      .header h1 {
        font-size: 2.5rem;
      }
    }


    /* ===== Modal (Custom Alert) ===== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  justify-content: center;
  align-items: start;
  animation: fadeIn 0.25s ease-in-out;
}

.modal-content {
  position: fixed;
  background: #1a1a1a;
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  max-width: 350px;
  width: 90%;
  text-align: unset;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
  animation: popIn 0.3s ease-in-out;
}

.modal-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
  transition: 0.2s;
}
.modal-close:hover {
  color: #fff;
}

.modal-btn {
  margin-top: 1.5rem;
  background: #ff4081;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.modal-btn:hover {
  background: #ff6099;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.hidescroll::-webkit-scrollbar {
    display: none;
}


#price15 {
  right: 20px;
}