    /* new css */
    /* body { */
      /* background-color: #fffaf6; */
      /* font-family: "Poppins", sans-serif; */
    /* } */

    .product-container {
      padding: 50px 0;
    }

    /* Zoom Container */
    .zoom-container {
      /* height: 400px; */
      height: 80vh;
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
      background-color: #fff;
      border-radius: 8px;
    }

    .zoom-container img,
    .zoom-container video {
      width: 100%;
      border-radius: 8px;
      transition: transform 0.3s ease;
      object-fit: cover;
    }

    .zoom-container:hover img.zoomable {
      transform: scale(1.2);
    }

    /* Thumbnail styling */
    .thumbs img,
    .thumbs video {
      width: 80px;
      height: 80px;
      object-fit: cover;
      cursor: pointer;
      border: 2px solid transparent;
      border-radius: 6px;
      transition: 0.3s;
    }

    .thumbs img:hover,
    .thumbs video:hover,
    .thumbs img.active,
    .thumbs video.active {
      border-color: #a52a2a;
    }

    .product-title {
      color: #8b1a1a;
      font-weight: 600;
      font-size: 1.8rem;
    }

    .price {
      font-size: 1.4rem;
      font-weight: 600;
    }

    .old-price {
      text-decoration: line-through;
      color: gray;
      font-size: 1rem;
      margin-left: 8px;
    }

    .discount {
      color: #b71c1c;
      font-weight: 600;
      font-size: 1rem;
    }

    .option-btn {
      border: 1px solid #aaa;
      background-color: #fff;
      padding: 6px 12px;
      margin-right: 8px;
      border-radius: 4px;
      cursor: pointer;
    }

    .option-btn.active {
      border-color: #b71c1c;
      background-color: #ffe9e9;
      font-weight: 600;
    }

    .add-cart-btn {
      background: #fff;
      border: 1px solid #a52a2a;
      color: #a52a2a;
      padding: 10px;
      text-transform: uppercase;
      font-size: 0.9rem;
      transition: all 0.3s ease;
    }

    .add-cart-btn:hover {
      background-color: #a52a2a;
      color: #fff;
    }

    .buy-now-btn {
      background-color: #8b1a1a;
      color: #fff;
      border: none;
      padding: 10px;
      text-transform: uppercase;
      font-size: 0.9rem;
      width: 100%;
      transition: 0.3s;
    }

    .buy-now-btn:hover {
      background-color: #6b0f0f;
    }

    .product-features {
      border-top: 1px solid #eee;
      margin-top: 40px;
      padding-top: 20px;
      text-align: center;
    }

    .feature-icon {
      font-size: 1.8rem;
      color: #a52a2a;
      margin-bottom: 10px;
    }

    .description-section {
      /* background-color: #fff; */
      border-radius: 10px;
      /* padding: 25px; */
      margin-top: 40px;
      /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
    }

    .desc-title {
      font-weight: 600;
      color: #8b1a1a;
      margin-bottom: 15px;
    }

    .desc-content {
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .show-more-btn {
      background: none;
      border: none;
      color: #a52a2a;
      font-weight: 600;
      margin-top: 10px;
      cursor: pointer;
      padding: 0;
    }

    .show-more-btn:hover {
      text-decoration: underline;
    }

    @media (max-width: 767px) {
      .description-section {
        padding: 20px;
      }
    }

    @media (max-width: 768px) {
      .thumbs img,
      .thumbs video {
        width: 60px;
        height: 60px;
      }
    }

    @media (hover: none) {
      .zoom-container:hover img.zoomable {
        transform: none;
      }
    }