/* -----------------------------
   GLOBAL STYLE
------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background: #0d0d0d;
    color: #fff;
  }
  
  /* -----------------------------
     PRODUCT CONTAINER
  ------------------------------*/
  .product-container {
    display: flex;
    gap: 40px;
    padding: 60px 6%;
    justify-content: center;
    align-items: flex-start;
  }
  
  /* -----------------------------
     LEFT : IMAGE GALLERY
  ------------------------------*/
  .gallery {
    flex: 1;
  }
  
  .main-image {
    width: 100%;
    margin-bottom: 20px;
  }
  
  .main-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    border: 2px solid #222;
    transition: 0.3s ease;
  }
  
  .main-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(255,20,147,0.5);
  }
  
  /* Thumbnails */
  .thumbnails img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px;
    cursor: pointer;
    border: 2px solid #444;
    transition: 0.3s ease;
  }
  
  .thumbnails img:hover {
    border-color: #ff1493;
  }
  
  /* 360° Video */
  .interactive {
    margin-top: 20px;
  }
  
  .interactive h4 {
    margin-bottom: 10px;
    color: #ff66c4;
  }
  
  .interactive iframe {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    border: 2px solid #222;
  }
  
  /* -----------------------------
     RIGHT : PRODUCT DETAILS
  ------------------------------*/
  .product-details {
    flex: 1;
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #222;
  }
  
  .title {
    font-size: 2rem;
    margin-bottom: 8px;
  }
  
  .brand span {
    color: #ff66c4;
    font-weight: 600;
  }
  
  .price {
    margin: 18px 0;
  }
  
  .price h2 {
    font-size: 2rem;
    color: #ff66c4;
  }
  
  .price del {
    color: #999;
    margin-left: 10px;
  }
  
  .deal {
    color: #00ff95;
    margin-left: 10px;
  }
  
  .key-features {
    list-style: none;
    margin: 20px 0;
    line-height: 1.8;
    font-size: 1rem;
  }
  
  .description {
    margin: 20px 0;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  .variations {
    margin: 20px 0;
  }
  
  .variations label {
    display: block;
    margin: 10px 0;
    font-size: 1rem;
  }
  
  .variations select,
  .variations input {
    margin-left: 10px;
    padding: 6px 10px;
    border-radius: 6px;
    border: none;
  }
  
  /* Add to cart button */
  .btn {
    width: 100%;
    padding: 12px;
    margin: 20px 0;
    background: linear-gradient(135deg, #ff1493, #7a00b3);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .btn:hover {
    background: #ff1493;
    transform: translateY(-3px);
  }
  
  .availability {
    margin-top: 15px;
    opacity: 0.9;
    line-height: 1.6;
  }
  
  /* -----------------------------
     RESPONSIVE MEDIA QUERIES
  ------------------------------*/
  
  /* ---------- LAPTOP / TABLET (1024px) ---------- */
  @media (max-width: 1024px) {
    .product-container {
      gap: 30px;
      padding: 40px 5%;
    }
  
    .interactive iframe {
      height: 260px;
    }
  }
  
  /* ---------- TABLET (768px) ---------- */
  @media (max-width: 768px) {
    .product-container {
      flex-direction: column;
      padding: 40px 6%;
    }
  
    .product-details {
      margin-top: 20px;
    }
  
    .title {
      font-size: 1.8rem;
    }
  
    .main-image img {
      height: auto;
    }
  }
  
  /* ---------- MOBILE (480px) ---------- */
  @media (max-width: 480px) {
    .product-container {
      padding: 30px 4%;
    }
  
    .title {
      font-size: 1.6rem;
    }
  
    .interactive iframe {
      height: 200px;
    }
  
    .btn {
      padding: 10px;
      font-size: 1rem;
    }
  
    .main-image img {
      border-radius: 10px;
    }
  }
  