  .product-page {
      display: flex;
      gap: 3rem;
      margin-top: 2rem;
  }

  .product-images {
      flex: 1;
  }

  .product-images img {
      width: 100%;
      border-radius: 1rem;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .thumbs {
      display: flex;
      gap: 0.5rem;
      margin-top: 1rem;
  }

  .thumbs img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 8px;
      cursor: var(--cp);
      border: 2px solid transparent;
  }

  .thumbs img.active {
      border-color: #333;
  }

  .product-details {
      flex: 1;
  }

  .product-details h1 {
      margin-bottom: .5rem;
  }

  .product-details .stars {
      margin: 0.5rem 0;
  }

  .product-details .price {
      font-size: 1.5rem;
      font-weight: bold;
      color: #444;
  }

  .product-details p {
      margin: 1rem 0;
  }

  .related {
      margin-top: 4rem;
  }

  .related h2 {
      margin-bottom: 1.5rem;
  }

  .products-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.5rem;
  }

  article {
      transform: none !important;
  }

  .card-wrapper {
      max-width: 1100px;
      margin: 0 auto;
  }

  .img-display {
      overflow: hidden;
  }

  .img-showcase {
      display: flex;
      width: 100%;
      border-radius: 10px;
      transition: all 0.5s ease;
  }

  .img-showcase img {
      min-width: 100%;
  }

  .img-select {
      display: flex;
  }

  .img-item {
      margin: 0.3rem;
  }

  .img-item:nth-child(1),
  .img-item:nth-child(2),
  .img-item:nth-child(3) {
      margin-right: 0;
  }

  .img-item:hover {
      opacity: 0.8;
  }

  .product-content {
      padding: 2rem 1rem;
  }

  .product-title {
      font-size: 2rem;
      text-transform: capitalize;
      font-weight: 700;
      position: relative;
      color: var(--ink);
      margin: 1rem 0;
  }

  .product-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 4px;
      width: 80px;
      display: none;
      background: #12263a;
  }

  .product-link {
      text-decoration: none;
      text-transform: uppercase;
      font-weight: 400;
      border-radius: 10px;
      font-size: 0.7rem;
      padding: 7px;
      display: inline-block;
      margin-bottom: 0.5rem;
      background: var(--accent);
      color: #fff;
      /* padding: 0 0.5rem; */
      transition: all 0.5s ease;
  }

  .product-link:hover {
      opacity: 0.9;
  }

  .product-rating {
      color: #c28124;
  }

  .product-rating span {
      font-weight: 600;
      color: #252525;
  }

  .product-price {
      margin: 1rem 0;
      font-size: 1rem;
      font-weight: 700;
  }

  .product-price span {
      font-weight: 400;
  }

  .last-price span {
      color: #f64749;
      text-decoration: line-through;
  }

  .new-price span {
      color: #c28124;
      font-size: larger;
      font-weight: 800;
  }

  .product-detail h2 {
      text-transform: capitalize;
      color: #8c6a3f;
      padding-bottom: 0rem;
      margin: 0 !important;
  }

  .product-detail p {
      font-size: 0.9rem;
      padding: 0.3rem;
      opacity: 0.8;
  }

  .product-detail ul {
      margin: 1rem 0;
      font-size: 0.9rem;
  }

  .product-detail ul li {
      margin: 0;
      list-style: none;
      background: url(../assets/checked.png) left center no-repeat;
      background-size: 18px;
      padding-left: 1.7rem;
      margin: 0.4rem 0;
      font-weight: 600;
      opacity: 0.9;
  }

  .product-detail ul li span {
      font-weight: 400;
  }

  .purchase-info {
      margin: 1.5rem 0;
      justify-self: center;
  }

  .p-div {
      background: linear-gradient(256deg, #ffebd1, transparent);
  }

  .purchase-info input,
  .purchase-info .btn {
      border-radius: 25px;
      text-align: center;
      padding: 0.45rem 0.8rem;
      outline: 0;
      margin-right: 0.2rem;
  }

  .purchase-info input {
      width: 60px;
  }

  .purchase-info .btn {
      cursor: var(--cp);
      color: #fff;
  }

  .purchase-info .btn:first-of-type {
      background: #256eff;
  }

  .purchase-info .btn:last-of-type {
      background: #f64749;
  }

  .purchase-info .btn:hover {
      opacity: 0.9;
  }

  .product-social-links {
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .product-social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 32px;
      height: 32px;
      color: #000;
      border: 1px solid #000;
      margin: 0 0.2rem;
      border-radius: 50%;
      text-decoration: none;
      font-size: 0.8rem;
      transition: all 0.5s ease;
  }

  .product-social-links a:hover {
      background: #2a76d3;
      border-color: transparent;
      color: #fff;
  }

  @media (max-width: 768px) {
      .product-title {
          font-size: 1.5rem ! important;
          text-transform: uppercase;
      }

      .purchase-info {
          display: flex;
          flex-direction: row;
          flex-wrap: nowrap;
          align-content: center;
          justify-content: center;
          gap: 1rem;
          align-items: center;
      }

      .product-content {
          padding: 1rem 1rem;
      }

      .p-div {
          background: linear-gradient(245deg, #eecca1, #d79f5a5e) !important;
          box-shadow: none !important;
      }
  }


  @media screen and (min-width: 992px) {
      .card {
          display: grid;
          grid-template-columns: repeat(2, 1fr);
          grid-gap: 1.5rem;
      }

      .card-wrapper {
          display: flex;
          margin-top: 2rem;
          justify-content: center;
          align-items: center;
      }

      .product-imgs {
          display: flex;
          flex-direction: column;
          justify-content: flex-start;
      }

      .product-content {
          padding-top: 0;
      }


  }


  /* Button Style */
  .vue3d-btn {
      background: #a8793c;
      color: white;
      border: none;
      padding: 10px 18px;
      font-size: 11px;
      font-weight: bold;
      border-radius: 50px;
      cursor: var(--cp);
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.3s ease;
  }

  .vue3d-btn:hover {
      background: var(--ink);
  }

  /* Modal Background with blur */
  .modal3d {
      display: none;
      position: fixed;
      z-index: 9999;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
     background: rgb(0 0 0 / 37%);
    backdrop-filter: blur(9px);
      /* blur effect */
      -webkit-backdrop-filter: blur(6px);
      justify-content: center;
      align-items: center;
  }

  /* Modal Box (popup style) */
  .modal3d-content {
      background:#d4c49233;
      padding: 10px;
      border-radius: 12px;
      max-width: 90%;
      width: 800px;
      position: relative;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
      animation: scaleIn 0.25s ease;
  }

  /* Opening animation */
  @keyframes scaleIn {
      from {
          transform: scale(0.8);
          opacity: 0;
      }

      to {
          transform: scale(1);
          opacity: 1;
      }
  }

  /* Close Button */
  .close3d {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 28px;
      cursor: var(--cp);
      color: #ffffff;
      transition: color 0.2s ease;
  }

  .close3d:hover {
      color: red;
  }

  /* Responsive iframe */
  .sketchfab-embed-wrapper {
      position: relative;
      padding-bottom: 56.25%;
      /* 16:9 ratio */
      height: 0;
      border-radius: 8px;
      overflow: hidden;
  }

  .sketchfab-embed-wrapper iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: none;
  }

   @media (max-width: 768px) { 

      .sketchfab-embed-wrapper {
            height: 100%;
        }

         .modal3d-content {
            height: 50%;
         }

   }