body {
      font-family: 'Segoe UI', sans-serif;
      background-color: #f7f7f7;
      margin: 0;
      padding: 20px;
    }

    .product-container {
      max-width: 1100px;
      margin: auto;
      background-color: #fff;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }
.disabled {
    background: grey;
  opacity: 0.5;
  cursor: none;
  pointer-events: none;
  disabled:true;
}
    .media-section {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .image-gallery {
      display: flex;
      gap: 10px;
    }

    .image-gallery img {
      width: 100px;
      height: 100px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid #ccc;
    }

    .main-image {
      width: 100%;
      border-radius: 10px;
      border: 1px solid #ddd;
    }

    .video-gallery iframe {
      width: 100%;
      height: 200px;
      border: none;
      border-radius: 10px;
    }

    .details-section h1 {
      margin-top: 0;
    }

    .price {
      font-size: 22px;
      font-weight: bold;
      margin: 10px 0;
      color: #2ecc71;
    }

    .original-price {
      text-decoration: line-through;
      color: #888;
      margin-left: 10px;
      font-size: 16px;
    }

    .description {
      margin: 15px 0;
      color: #444;
    }

    .features {
      margin: 20px 0;
    }

    .features ul {
      list-style: disc;
      padding-left: 20px;
      color: #333;
    }

    .add-to-cart_product_details {
            width: 18rem;
        height:4rem;
         right: 0;
    right: 0;   
        background-color: var(--primary-clr);
        color: var(--white-clr);
        transition: all .3s ease-out;
        cursor: pointer;
        border-radius: 10px;
    }

    .add-to-cart_product_details:hover {
    background-color: var(--tag-clr);
    color: var(--black-clr);
    }

    @media (max-width: 768px) {
      .product-container {
        grid-template-columns: 1fr;
      }

      .image-gallery {
        justify-content: center;
      }

      .image-gallery img {
        width: 80px;
        height: 80px;
      }

      .video-gallery iframe {
        height: 180px;
      }
    }