    .product-details .product-details .product-name {
      font-size: 1.875rem;
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 1.5rem;
      color: var(--heading-color);
    }

    .product-details .product-details .pricing-section {
      margin-bottom: 1.5rem;
    }

    .product-details .product-details .pricing-section .price-display {
      display: flex;
      align-items: baseline;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }

    .product-details .product-details .pricing-section .price-display .sale-price {
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent-color);
    }

    .product-details .product-details .pricing-section .price-display .regular-price {
      font-size: 1.25rem;
      text-decoration: line-through;
      color:
        color-mix(in srgb, var(--default-color), transparent 50%);
    }

    .product-details .product-details .availability-status {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
      background: linear-gradient(135deg,
          color-mix(in srgb, #28a745, transparent 90%),
          color-mix(in srgb, #28a745, transparent 95%));
      border-radius: 12px;
      margin-bottom: 2rem;
      border: 1px solid color-mix(in srgb, #28a745, transparent 80%);
    }

    .product-details .product-details .availability-status .stock-indicator {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .product-details .product-details .availability-status .stock-indicator i {
      color: #28a745;
      font-size: 1.125rem;
    }

    .product-details .product-details .availability-status .stock-indicator .stock-text {
      font-weight: 600;
      color: var(--heading-color);
    }

    .product-details .packet-size {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-start;
      gap: 10px;
      margin-bottom: 20px;
    }

    .product-details .packet-size span {
      padding: 5px 8px;
      border: 2px solid #ddd;
      border-radius: 4px;
      font-size: 0.9rem;
      font-weight: 500;
      transition: all 0.4s ease-in-out;
      white-space: nowrap;
    }

    .product-details .product-details .benefits-list {
      padding: 1.5rem;
      background: var(--surface-color);
      border-radius: 16px;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .product-details .product-details .benefits-list .benefit-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }

    .product-details .product-details .benefits-list .benefit-item i {
      color: var(--accent-color);
      font-size: 1.125rem;
      flex-shrink: 0;
    }

    .product-details .product-details .benefits-list .benefit-item span {
      font-size: 0.875rem;
      color:
        color-mix(in srgb, var(--default-color), transparent 20%);
    }

    .product-details .product-gallery .main-showcase {
      position: relative;
      margin-bottom: 1.5rem;
      /* border-radius: 16px; */
      overflow: hidden;
      background: linear-gradient(145deg, var(--surface-color),
          color-mix(in srgb, var(--surface-color), #f8f9fa 50%));
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    }

    .product-details .product-gallery .main-showcase .image-zoom-container {
      position: relative;
      aspect-ratio: 1;
      overflow: hidden;
    }

    .product-details .product-gallery .main-showcase .image-zoom-container .main-product-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.4s ease;
      cursor: crosshair;
    }

    .product-details .product-gallery .thumbnail-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.75rem;
    }

    .product-details .product-gallery .thumbnail-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 0.75rem;
    }

    .product-details .product-gallery .thumbnail-grid .thumbnail-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .product-details .product-details .product-name {
        font-size: 2rem;
      }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .main-showcase {
        overflow-y: auto;
        /* vertical scroll allow kare */
        -webkit-overflow-scrolling: touch;
        /* smooth scroll iOS */
        max-height: 400px;
        /* ya jitna height chahiye */
        width: 100%;
        position: relative;
      }

      .main-showcase img {
        width: 100%;
        /* ensure image fits container */
        height: auto;
        display: block;
      }

      .thumbnail-grid {
        display: flex;
        overflow-x: auto;
        /* horizontal scroll for thumbnails */
        gap: 10px;
        padding-bottom: 10px;
      }

      .thumbnail-wrapper img {
        max-width: 80px;
        height: auto;
        display: block;
      }

      .product-details .product-details .product-name {
        font-size: 1.5rem;
      }
    }


    .product-details .product-gallery .thumbnail-grid .thumbnail-wrapper.active {
      border-color: var(--accent-color);
      box-shadow: 0 0 0 2px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .product-details .product-gallery .thumbnail-grid .thumbnail-wrapper {
      aspect-ratio: 1;
      border-radius: 12px;
      overflow: hidden;
      border: 2px solid transparent;
      cursor: pointer;
      transition: all 0.3s ease;
      background: var(--surface-color);
    }


    .additional-detail {
      background-color: color-mix(in srgb, var(--default-color), transparent 98%);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      padding: 30px;
      border-radius: 5px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      margin-bottom: 40px;
    }

    .additional-detail h2,
    .additional-detail h3,
    .additional-detail h4,
    .additional-detail h5 {
      color: #2a5298;
      margin-top: 20px;
    }

    .additional-detail p {
      margin: 12px 0;
      /* font-size: 15px; */
    }

    .additional-detail p a {
      color: #2a5298;
      text-decoration: none;
      border-bottom: 1px dashed #2a5298;
      transition: color 0.3s ease, border-bottom 0.3s ease;
    }

    .additional-detail p a:hover {
      color: #1d3b70;
      border-bottom: 1px solid #1d3b70;
    }

    .additional-detail ul,
    .additional-detail ol {
      margin: 15px 0 20px 20px;
      padding-left: 15px;
    }

    .additional-detail ul li,
    .additional-detail ol li {
      margin-bottom: 8px;
    }

    .additional-detail ul li strong {
      color: #444;
    }

    /* Unordered List (ul) */
    ul.styled-list {
      list-style: none;
      /* default bullets हट जाएंगे */
      margin: 0;
      margin-left: 15px;
      padding: 0;
    }

    ul.styled-list li {
      position: relative;
      padding-left: 25px;
      /* जगह bullet के लिए */
      margin-bottom: 12px;
      font-size: 16px;
      line-height: 1.6;
    }

    ul.styled-list li::before {
      content: "✔";
      /* आप icon बदल सकते हैं */
      position: absolute;
      left: 0;
      top: 0;
      color: #4CAF50;
      font-weight: bold;
      font-size: 14px;
    }

    /* Ordered List (ol) */
    ol.styled-list {
      counter-reset: my-counter;
      margin: 0;
      padding: 0;
      margin-left: 15px;
      list-style: none;
    }

    ol.styled-list li {
      counter-increment: my-counter;
      position: relative;
      padding-left: 25px;
      margin-bottom: 12px;
      font-size: 16px;
      line-height: 1.6;
    }

    ol.styled-list li::before {
      content: counter(my-counter) ".";
      position: absolute;
      left: 0;
      top: 0;
      font-weight: bold;
      color: #2196F3;
      font-size: 16px;
    }

    /* Table */
    .table-container {
      margin: 30px 0;
      overflow-x: auto;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    table {
      width: 100%;
      border-collapse: collapse;
      background: #fff;
      min-width: 700px;
    }

    table thead {
      background: var(--default-color);
      color: #fff;
    }

    table th,
    table td {
      text-align: center;
      padding: 12px 15px;
      border: 1px solid #e1e1e1;
      font-size: 14px;
    }

    table tbody tr:nth-child(even) {
      background: #f3f6ff;
    }

    table tbody tr:hover {
      background: #e9f1ff;
    }

    /* Dealer Box */
    .dealer-box {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: linear-gradient(135deg, #2a5298, #1e3c72);
      color: #fff;
      padding: 20px 25px;
      border-radius: 12px;
      margin-top: 40px;
      flex-wrap: wrap;
    }

    .dealer-box p {
      margin: 0;
      flex: 1;
      font-size: 18px;
      font-weight: 500;
    }

    .dealer-box a {
      text-decoration: none;
      background: #fff;
      color: #2a5298;
      padding: 12px 22px;
      border-radius: 30px;
      font-weight: bold;
      transition: all 0.3s ease;
    }

    .dealer-box a:hover {
      background: #ffcb05;
      color: #000;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .dealer-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
      }

      table {
        min-width: 100%;
      }
    }