* {
    font-family: currency-symbol-v2,Figtree,Helvetica Neue,Arial,sans-serif !important;
    
}

.breadcrumb-wrapper li.breadcrumb-item.active {
    color: #282828;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.breadcrumb-wrapper .breadcrumb-item+.breadcrumb-item::before {
    float: left;
    content: "\f105";
    font-family: "Font Awesome 7 Free";
    color: var(--clr-primary);
}
        .breadcrumb {
  --bs-breadcrumb-divider: '\f105'; /* Font Awesome chevron-right unicode */
}

.breadcrumb-item + .breadcrumb-item::before {
  font-family: "Font Awesome 7 Free"; /* ✅ Font Awesome 7 name */
  font-weight: 900; /* needed for solid icons */
  content: var(--bs-breadcrumb-divider);
  color: var(--bs-breadcrumb-divider-color, #919090);
  
}
.breadcrumb-wrapper li.breadcrumb-item>a {
    color: var(--clr-primary) !important;
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
}
   

.product-gallery {
    max-width: 600px;
}

.product-gallery .swiper {
    width: 100%;
}

.product-gallery img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid #ddd;
}

h5.product-title {
    font-weight: 600 !important;
    font-size: 18px;
}
.thumbnail-imgs {
    border: solid 1px #1d8fff;
    border-radius: 8px;
       display: block;
    width: 60px;
    height: 60px;
    border: solid 1px #c8cbcd;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}
.thumbnail-imgs-wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}
.product-gallery .thumbnail-slider img {
    object-fit: contain;
    background-color: #fff;
    width: 100%;
    height: 100%;
}

/* .product-gallery .thumbnail-slider .swiper-slide-thumb-active img {
    border-color: #0d6efd;
}


.product-gallery .swiper-button-next,
.product-gallery .swiper-button-prev {
    color: #0d6efd;
    transition: all 0.3s ease;
}

.product-gallery .swiper-button-next:hover,
.product-gallery .swiper-button-prev:hover {
    color: #0a58ca;
    transform: scale(1.1);
}

.product-gallery .swiper-button-next.img-box-slider:after {
    font-size: 20px;
    background: #00000091;
    padding: 10px;
    color: white;
    border-radius: 5px 0px 0px 5px;
}

.product-gallery .swiper-button-prev.img-box-slider:after {
    font-size: 20px;
    background: #00000091;
    padding: 10px;
    color: white;
    border-radius: 0px 5px 5px 0px;
} */
.rating-grid-wrapper {
    width: 100%;
}

/* Grid layout */
.rating-grid-wrapper .rating-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 16px;
}

/* Individual row */
.rating-grid-wrapper .rating-grid .rating-row {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: center;
    gap: 15px;
}

/* Progress bar styling */
.rating-grid-wrapper .rating-grid .progress {
    height: 4px;
    background-color: #e9ecef;
}
.rating-grid-wrapper .rating-grid span, .rating-grid-wrapper .rating-grid span i {
    font-size: 14px;
}
/* Mobile: single column */
@media (max-width: 576px) {
    .rating-grid-wrapper .rating-grid {
        grid-template-columns: 1fr;
    }
}

    .usp-swiper .swiper {
      width: 100%;
      height: 100%;
    }

    .usp-swiper .swiper-slide {
    
     
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: fit-content;
    }

.add-to-cart-card .sold-by {
    padding: 10px;
    background: #f3f4f8;
    border-radius: 5px;
}

.add-to-cart-card .badge1,
.add-to-cart-card .badge2,
.add-to-cart-card .badge3 {
     background: #f3f4f8;
    padding: 3px 8px;
    font-size: 14px;
    border-radius: 4px;
    color: black;
}
.additional-info img {
    width: 13px;
    margin-right: 5px;
}
.add-to-cart-card .additional-info a,
.add-to-cart-card .additional-info button {
    font-size: 14px !important;
    background: transparent;
    border: none;
    padding: 0px;
    text-decoration: none;
    color: black;
}

/* ===== Zoom Feature ===== */
.zoom-container {
    position: relative;
    overflow: hidden;
}

.zoom-image {
    width: 100%;
    transition: transform 0.2s ease-in-out;
    transform-origin: center center;
}

.zoom-container:hover .zoom-image {
    transform: scale(2);
    /* zoom level */
    cursor: zoom-in;
}

.product-specs-detail .divider {
    width: 100%;
    height: 1px;
    background-color: #a3a3a3;
}

.product-specs-detail img.express-Icon {
    height: 30px;
    width: auto;
}

.product-specs-detail span.product-specs-tickers {
    font-size: 14px;
}

/* Zoom styles (from before) */
.zoom-container {
    position: relative;
    overflow: hidden;
}

.zoom-image {
    width: 100%;
    transition: transform 0.2s ease-in-out;
    transform-origin: center center;
}

.zoom-container:hover .zoom-image {
    transform: scale(2);
    cursor: zoom-in;
}

/* Variant styles */
.variant-list {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.variant-item {
    width: 100px;
    height: fit-content;
    /* border-radius: 50%; */
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}
.variant-item:hover {
    border: 1px solid blue;
    border: 1px solid blue;
    border-radius: 12px;
    height: fit-content;
    /* padding: 10px; */
}
.variant-item>img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
}

.variant-item.active {
    border: 1px solid blue;
    border-radius: 12px;
    height: fit-content;
    /* padding: 10px; */
}


.modal-img>img {
    max-width: 100px;
    width: 100%;
    height: auto;
    margin: auto;
}

ul.policy-list>li {
    display: flex;
    align-items: start;
    gap: 5px;
}

ul.policy-list>li>span {
    line-height: 17px;
}




/* Animation */
.offcanvas-end {
    transition: all 0.5s ease-in-out;
}

.offcanvas-1 .selected-offer-btn>img {
    width: 16px !important;
}

.offcanvas-1 .offer-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-left: 0px !important;
    border-right: 0px;
    border-radius: 0px !important;
    padding-bottom: 0px;
}

/* .offcanvas-1 .offer-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
} */
.add-to-cartoffer-btn {
    background-color: #f7f9fe;
    color: #3866df;
    font-weight: 700;
}
.offcanvas-1 .offer-price {
    font-weight: 700;
    color: #404553;
    -webkit-margin-end: 4px;
    margin-inline-end: 4px;
    font-size: 17px;
}
.offcanvas-1 .offcanvas-title {
    font-size: 16px;
    font-weight: 700;
}
.offcanvas-1 .offer-animation.active {
    background-color: #fcfbf4;
}
.offcanvas-1 .btn-close {
    font-size: 12px;
}

.offcanvas-1 .offer-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    margin-left: 8px;
}

.offcanvas-1 .offer-badge {
    border-radius: 5px;
    background: #dff1d9;
    color: #2d8e02;
    font-weight: bolder !important;
    padding: .1em .5em;
    font-size: 12px;
}

.offcanvas-1 .tag-badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 7px;
    border-radius: 5px;
    color: #fff;
}

.offcanvas-1 .tag-supermall {
    /* background-color: #2c3eeb; */
}
.offcanvas-1 .tag-supermall img {
    max-width: 53px !important;
    width: 53px !important;
}
.offcanvas-1 .tag-express {
    
}

.offcanvas-1 .offer-btn {
    font-weight: 600;
    font-size: 0.9rem;
}

.offcanvas-1 .rating {
    color: #2d8e02;
    font-weight: 600;
}

.offcanvas-1 .offer-animation {
    animation: fadeInUp 0.6s ease-in-out both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.Nudges {
    display: flex;
    align-items: center;
    gap: 7px;
}

img.Nudges_nudgeIcon__NsoYR {
    width: 15px;
    height: auto;
}

.Nudges_nudgeText {
    font-size: 13px;
}


 .Nudgeswrapper {
    width: max-content;
    height: 30px;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 6px;
    background: #fff;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
    /* Inner container with animation */
    .NudgesInner {
      display: flex;
      flex-direction: column;
      animation: scrollUp 6s linear infinite;
    }

    /* Each item */
    .Nudges {
      display: flex;
      align-items: center;
      gap: 6px;
      height: 30px;
      flex-shrink: 0;
    }

    /* Icon */
    .Nudges_nudgeIcon__NsoYR {
      width: 16px;
      height: 16px;
      object-fit: contain;
    }

    /* Text */
    .Nudges_nudgeText {
      font-size: 14px;
      color: #333;
      font-weight: 500;
      white-space: nowrap;
    }

    /* Keyframes for seamless loop */
    @keyframes scrollUp {
      0%   { transform: translateY(0); }
      100% { transform: translateY(-40%); }
    }

/* producr review  */


/* Tabs */
.product-review-wrapper .review-tabs {
    border-bottom: 2px solid #f0f0f0;
}

.product-review-wrapper .review-tabs .nav-link {
    font-weight: 600;
    color: #555;
    padding: 12px 24px;
    border-bottom: 3px solid transparent;
    transition: all .25s;
}

.product-review-wrapper .review-tabs .nav-link.active {
    color: #111;
    border-color: #007bff;
}

/* Ratings */
.product-review-wrapper .rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: #111;
}

.product-review-wrapper .rating-bar {
    height: 10px;
    border-radius: 10px;
    background: #eee;
    overflow: hidden;
}

.product-review-wrapper .rating-bar-fill {
    height: 100%;
    border-radius: 10px;
    background: #4caf50;
}

.product-review-wrapper .info-box {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 18px;
    margin-top: 15px;
}

.product-review-wrapper .summary-box {
    background: aliceblue;
    border-radius: 10px;
    padding: 18px;
}

/* Swiper small tweaks */
.product-review-wrapper .swiper {
    width: 100%;
    padding-top: 6px;
    padding-bottom: 6px;
}

.product-review-wrapper .swiper-slide img {
    border-radius: 10px;
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: 1px solid #ddd;
    display: block;
}

.product-review-wrapper .swiper-button-prev,
.product-review-wrapper .swiper-button-next {
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.product-review-wrapper .swiper-button-prev
 {
  left: 0;
}
.product-review-wrapper .swiper-button-next{
    right: 0;
}
/* small screens: reduce image size */
@media (max-width:480px) {
    .product-review-wrapper .swiper-slide img {
        height: 76px;
        width: 76px;
    }
}

/* fade animation */
.product-review-wrapper .fade-section {
    animation: fadeIn .45s ease both;
}


.swiper-button-next.cr-review-sld:after {
    font-size: 20px;
    background: #00000091;
    padding: 10px;
    color: white;
    border-radius: 5px 0px 0px 5px;
}

.swiper-button-prev.cr-review-sld:after {
    font-size: 20px;
    background: #00000091;
    padding: 10px;
    color: white;
    border-radius: 0px 5px 5px 0px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px)
    }

    to {
        opacity: 1;
        transform: none
    }
}



/* specs  */

 .specs-container {
            
            margin: 0 auto;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        .specs-container .specs-header {
            background: var(--bg-primary);
            color: white;
            padding: 7px 20px;
            font-weight: 600;
            font-size: 1.4rem;
        }
        .specs-container .specs-table {
            width: 100%;
            border-collapse: collapse;
        }
        .specs-container .specs-table tr {
            border-bottom: 1px solid #e9ecef;
        }
        .specs-container .specs-table tr:last-child {
            border-bottom: none;
        }
        .specs-container .specs-table td {
            padding: 12px 20px;
            vertical-align: top;
        }
        .specs-container .specs-table td:first-child {
            font-weight: 500;
            width: 40%;
            color: #495057;
        }
        .specs-container .specs-table td:last-child {
            color: #212529;
        }
        .specs-container .product-title {
            text-align: center;
            padding: 20px;
            background: linear-gradient(to right, #f8f9fa, #e9ecef, #f8f9fa);
            border-bottom: 1px solid #dee2e6;
            margin-bottom: 10px;
        }
        .specs-container .product-title h1 {
            font-weight: 600;
            color: #343a40;
            margin-bottom: 5px;
        }
        .specs-container .product-title p {
            color: #6c757d;
            margin: 0;
        }
        .specs-container .specs-columns {
            display: flex;
            flex-wrap: wrap;
        }
        .specs-container .specs-column {
            flex: 1;
            min-width: 300px;
        }
        @media (max-width: 768px) {
            .specs-container .specs-columns {
                flex-direction: column;
            }
             .specs-container .specs-table td {
          font-size: 12px;
        }
        }


        /* customer review slider  */

        .customer-review-sld .zoom-image {
    max-width: 250px;
    width: 100%;
    transition: transform 0.2s ease-in-out;
    transform-origin: center center;
}
.customer-review-sld .zoom-container {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.customer-review-sld .review-images>img {
    max-width: 60px;
    width: 100%;
    height: auto;
    border: 1px solid lightgray;
    border-radius: 10px;
}


.customer-review-sld .swiper-button-next.img-box-slider:after {
    font-size: 20px;
    background: #00000091;
    padding: 10px;
    color: white;
    border-radius: 5px 0px 0px 5px;
}

.customer-review-sld .swiper-button-prev.img-box-slider:after {
    font-size: 20px;
    background: #00000091;
    padding: 10px;
    color: white;
    border-radius: 0px 5px 5px 0px;
}


span.product-specs-tickers {
    font-weight: 500;
    font-size: 13px;
}
.ec-rec-card .product-image img {
    max-height: 300px !important;
    height: 300px !important;
    width: 100% !important;
    object-fit: cover;
}
/* variant slider  */

.variant-slider-parent {
    
      margin: 40px 0px;
    }

    .variant-slider-parent .swiper {
      padding: 10px 0;
    }

    .variant-slider-parent .swiper-slide {
      width: 100px !important;
      border: 2px solid transparent;
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .variant-slider-parent .swiper-slide img {
      width: 100%;
      height: auto;
      border-bottom: 1px solid #eee;
    }

    .variant-slider-parent .swiper-slide p {
      margin: 8px 0;
      text-align: center;
      font-weight: 500;
      font-size: 11px;
    }

    /* Active / Selected Variant */
    .variant-slider-parent .swiper-slide.active-variant {
      border-color: #0d6efd;
      box-shadow: 0 0 10px rgba(13, 110, 253, 0.3);
    }

    /* Unavailable Variant (Disabled) */
    .variant-slider-parent .swiper-slide.disabled-variant {
      opacity: 0.3;
      position: relative;
    }

    .variant-slider-parent .swiper-slide.disabled-variant::after {
      content: "";
      position: absolute;
      top: 10%;
      left: 10%;
      width: 80%;
      height: 80%;
      border-top: 2px solid #ccc;
      transform: rotate(-45deg);
    }

    .variant-slider-parent h6 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #666;
      letter-spacing: 0.5px;
    }
    div#productDescription_feature_div {
    width: 100% !important;
}



  .variants-wrapper .option-btn {
      border: 1px solid #ccc;
      border-radius: 8px;
      padding: 10px 20px;
      margin: 5px;
      transition: all 0.3s;
      cursor: pointer;
    }
      .warranty-cards-wrapper {
      overflow: auto;
    }
    .variants-wrapper .option-btn.active, .option-btn:hover {
      border-color: #0d6efd;
      background: #e7f0ff;
      color: #0d6efd;
    }
 .variants-wrapper .warranty-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    transition: 0.3s;
    background: #fff;
    height: 100%;
    min-width: 400px;
}
    .variants-wrapper .warranty-card:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      transform: translateY(-3px);
    }
    .variants-wrapper .price {
      font-size: 1.2rem;
      font-weight: 600;
      color: #0d6efd;
    }

       .warrantySwiper .swiper-slide {
      width: 300px;
    }
    .warrantySwiper .swiper-button-next,
    .warrantySwiper .swiper-button-prev {
      color: #0d6efd;
    }

    .variants-wrapper .warranty-card img {
    width: 20px;
    height: auto;
}
.extend-w-img>img {
    width: 39px !important;
}

.warranty-cards-wrapper .w-year {
    width: max-content;
    /* padding-block: 2px; */
    /* padding-inline: 6px; */
    color: #3866df;
    font-weight: 600;
    font-size: 12px;
    line-height: 16px;
    background-color: #3866df30;
    border-radius: 2px;
    padding: 3px;
}



   .ad-card {
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      padding: 16px;
      font-family: 'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      background: #e5e7eb;
      max-width: 350px;
      transition: box-shadow 0.3s ease;
    }
    .ad-card:hover {
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }
   .ad-card .seller-logo {
    height: 70px;
}
 .ad-card .shop-link {
    color: #0073e6;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    width: auto;
    border-radius: 4px;
    font-weight: 600;
    font-style: normal;
    color: #3866df;
    font-size: 14px;
}
    .ad-card .shop-link:hover {
      text-decoration: underline;
    }
    .ad-card .product-img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
    }
    .ad-1 .txt-info {
    font-size: 14px;
    font-weight: 700 !important;
    text-align: start;
    color: #404553;
}
    .ad-card .price {
      font-weight: 600;
      font-size: 18px;
      color: #222;
      margin-top: 6px;
    }
    .ad-card .currency {
      font-family: 'Figtree', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    }
    .ad-card .tag {
      background: #ffeb00;
      color: #000;
      font-weight: 600;
      font-size: 12px;
      border-radius: 4px;
      padding: 2px 8px;
      display: inline-block;
      margin-top: 5px;
    }
    .ad-card .ad-label {
      font-size: 12px;
      color: #999;
      text-align: right;
    }

     .ad-card .yxy-info {
    font-size: 12px;
    font-weight: 700;
    text-align: start;
    color: #404553;
}



 .ad-card .ad-2 .product-img {
    max-width: 79px;
}



.option-btn {
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.2s ease;
    text-align: center;
    padding: 5px;
}

.option-btn:hover {
    border-color: #555;
}

.option-btn.active {
    border: 2px solid #222;
    font-weight: 600;
}


.option-btn {
    padding: 10px 20px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    cursor: pointer;
}

.option-btn:hover:not(.disabled) {
    border-color: #007bff;
    background: #f8f9fa;
}

.option-btn.active {
    border-color: #007bff;
    background: #007bff;
    color: white;
}

.option-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f5f5f5;
}

.variant-slider-parent {
    position: relative;
    margin-bottom: 1rem;
}

/* .swiper-slide {
    width: auto;
    text-align: center;
    transition: all 0.3s ease;
}

.swiper-slide .variation-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #ddd;
    transition: all 0.3s ease;
}

.swiper-slide.active-variant .variation-image {
    border-color: #007bff;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.swiper-slide.disabled-variant {
    opacity: 0.5;
}

.swiper-slide:hover:not(.disabled-variant) .variation-image {
    transform: scale(1.05);
    border-color: #007bff;
}

.swiper-slide p {
    font-size: 0.85rem;
    margin-top: 5px;
    color: #333;
}

.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
} */






.out-of-stock-banner__content.d-flex.align-items-center.gap-1 {
    display: flex;
    flex-direction: row;
    padding: 8px 16px 8px 12px;
    align-items: flex-start;
    gap: 8px;
    align-self: stretch;
    border-radius: 8px;
    background: #fff8e0;
}


.out-of-stock-banner__content__text {
    font-size: 14px;
}

.out-of-stock-banner__content__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-wrapper .price-now {
    font-size: 32px;
}

.price-wrapper .price-old {
    font-size: 14px;
    color: #19222a66;
}
.price-wrapper .discount {
    background: #ffe6e6;
    border-radius: 5px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1px 2px;
}

.installment-highlight-cta {
    display: flex;
    align-items: center;
    gap: 2px;
}
.installment-highlight-cta__badge {
    border: 1px solid #3be34f;
    color: #1c832a;
    background: #e6ffe9;
    padding: 0px 2px;
    border-radius: 4px;
    font-size: 12px;
}
.installment-highlight-cta__info {
    font-size: 14px;
    color: #6b6b6b;
}
i {
    font-family: FontAwesome 7 Free;
    font-family: "Font Awesome 7 Free" !important;
}
.swiper-button-prev:after, .swiper-button-next:after{
    display: none;
}

.swiper-button-next, .swiper-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--clr-primary);
    /* top: calc(100% - 125px); */
    cursor: pointer;
    box-shadow: 0 1px 6px #0000001a;
    /* bottom: 0; */
    border: 1px solid gainsboro;
}
.usp-swiper .swiper-button-next, .usp-swiper .swiper-button-prev {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--clr-primary);
    /* top: calc(100% - 125px); */
    cursor: pointer;
    box-shadow: 0 1px 6px #0000001a;
    top: 0px !important;
    border: 1px solid gainsboro;
    bottom: 0;
    margin: auto;
}

.swiper.usp-swiper {
    height: 60px;
}
.rating-wrapper {
    width: fit-content;
    border: 1px solid #c8cbcd;
    padding: 2px 5px;
    border-radius: 6px;
    display: flex;
    align-items: center;
}
.rating-wrapper .rating-data span:first-child {
    color: #19222ab3;
    font-size: 14px;
    font-weight: 600;
}

.rating-wrapper .rating-data span:last-child {
    color: #7d7d7d;
    font-size: 14px;
}


.variants-wrapper .option-title {
    font-weight: 300;
    margin-bottom: 8px;
    font-size: 14px;
}

.variants-wrapper .option-title span {
    color: red;
    font-weight: 500;
}

.variants-wrapper .option-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    color: #7d7d7d;
    font-size: 14px;
}

.variants-wrapper .option-btn img {
    width: 18px;
    height: auto;
}

.variants-wrapper .option-btn.active {
    border: 1px solid #0d6efd;
    color: #0d6efd;
}

.variants-wrapper .option-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.variants-wrapper .option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}



/* ===== PARENT PREFIX ===== */


/* Protection Card */
.product-extra .product-extra__protection {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
    background: #fff;
}



.product-extra .product-extra__title {
    font-weight: 600;
    margin-bottom: 4px;
}

.product-extra .product-extra__desc {
    font-size: 14px;
    color: #475467;
}

.product-extra .product-extra__desc a {
    color: #0d6efd;
    text-decoration: none;
}

/* Voucher Header */
.product-extra .product-extra__voucher-header h6 {
    font-weight: 600;
}

.product-extra .product-extra__seeall {
    color: #0d6efd;
    font-size: 14px;
    text-decoration: none;
}

/* Voucher Card */
.product-extra .product-extra__voucher-card {
    display: flex;
    gap: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    min-width: 300px;
}

.product-extra .product-extra__voucher-left {
    min-width: 90px;
    text-align: center;
    font-size: 13px;
    color: #475467;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0px 10px 10px;
}
.product-extra__voucher-right p {
    font-size: 14px !important;
    line-height: 1.3;
    width: 100%;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-break: break-all;
    -webkit-line-clamp: 1;
    overflow: hidden;
}



.product-extra__voucher-right span {
    font-size: 12px !important;
}
.product-extra .product-extra__voucher-left img {
    width: 44px;
    margin-bottom: 6px;
}
.product-extra .product-extra__shield>img {
    max-width: 32px;
}
.product-extra .product-extra__badge {
    background: #e8f2ff;
    color: #0d6efd;
    font-size: 12px;
    padding: 0px 6px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
    font-weight: 600;
}
.voucher-detail__desc>a {
     font-weight: 600;
     text-decoration: none;
}
/* Next Arrow Card */
.product-extra .product-extra__voucher-next {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #fff;
    height: 100%;
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
}
.voucher-detail__desc>div, .voucher-detail__desc>a {
    font-size: 12px;
}

.voucher-detail__desc {
    color: grey;
}

.voucher__halfmoon{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 12px;
    z-index: 0;
}

.voucher__halfmoon--separator {
    display: flex;
    align-items: center;
    padding: 0 6px;
    height: 100%;
    z-index: 0;
    background-color: #fff;
}
.voucher__halfmoon--separator .separator {
    height: 100%;
    border-right: 1px dashed #e1e3e4;
}

.halfmoon-rotate{
    transform: rotate(180deg);
}

.voucher__halfmoon svg {
    width: 14px;
}

img {}

.add-to-my-carts .store-logo>img {
    width: 56px;
    height: 56px;
}

.add-to-my-carts .authorized-seller-info img {
    width: 18px;
    height: 18px;
    margin-right: 3px;
}

.add-to-my-carts .authorized-seller-info h6 {
    display: flex;
    align-items: flex-start;
}

.store-link {
    font-size: 14px;
}

.shipping-info-wrapper .inf {
    font-size: 14px;
}

.thumbnail-imgs img {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 6px;
}

.thumbnail-imgs img.active {
    border-color: #0d6efd;
}


    /* Tabs */
.product-review-wrapper .spec-tabs .nav-link {
  border: none;
  color: #6b7280;
  padding: 12px 0px;
  font-weight: 500;
}

.product-review-wrapper .spec-tabs .nav-link.active {
  color: #0d6efd;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 0px !important;
  
}



.product-review-wrapper .spec-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

.product-review-wrapper .spec-label {
  color: #6b7280;
  font-size: 14px;
}

.product-review-wrapper .spec-value {
  font-size: 14px;
  font-weight: 500;
}

/* Read more */
.product-review-wrapper .read-more-btn {
  color: #0d6efd;
  font-size: 14px;
  font-weight: 500;
}

/* Smooth collapse animation */
.product-review-wrapper .spec-collapse {
  transition: all 0.3s ease;
}






#overview-section .celwidget img {
  width: 100% !important;
  min-width:100% !important;
  max-width: 100% !important;
  height: auto !important;
  position: relative !important;
  
}
#overview-section .celwidget.aplus-module .aplus-module-wrapper .apm-sidemodule {
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: fit-content !important;
    height: fit-content !important;
    max-height: fit-content !important;
}
#overview-section .celwidget.aplus-module .aplus-module-wrapper .apm-sidemodule .apm-hero-image {
    min-height: fit-content !important;
    height: fit-content !important;
    max-height: fit-content !important;
}
/* #overview-section .celwidget.aplus-module .aplus-module-wrapper .apm-sidemodule .apm-hero-image {
    height: fit-content !important;
     height: fit-content !important;
    min-height: fit-content !important;
} */

/* #overview-section .celwidget.aplus-module .aplus-module-wrapper .apm-sidemodule {
    height: fit-content !important;
    min-height: fit-content !important;
}  */
#overview-section div#productDescription {
    margin: 0px !important;
}
#overview-section .celwidget.aplus-module.launchpad-company-logo.aplus-standard {
    min-width: 100% !important;
}

#overview-section .celwidget.aplus-module {
    min-width: 100% !important;
}

#overview-section .celwidget.aplus-module .aplus-module-wrapper {
    min-width: 100% !important;
    max-width: 100% !important;
}


#overview-section .apm-sidemodule.apm-spacing {
    display: flex;
    flex-direction: column;
    min-width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    height: max-content !important;
}

#overview-section .apm-sidemodule-textright {
    max-height: fit-content !important;
    height: auto;
    height: fit-content !important;
}
div#productDescription, div#productDescription>p {
    margin-left: 0px !important;
}






/* Mobile responsive */
@media (max-width: 576px) {
  .product-review-wrapper .spec-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .product-review-wrapper .spec-label {
    font-size: 13px;
  }
}

span.rating-score {
    font-size: 40px;
    font-weight: 600;
}







.ratings-section .review-tab {
  border-radius: 10px;
  background: #f1f3f5;
  color: #111;
  font-weight: 500;
}

.ratings-section .review-tab.active {
  background: #0d6efd;
  color: #fff;
}

.ratings-section .rating-score {
  font-size: 36px;
  font-weight: 700;
}

.ratings-section .rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.ratings-section .rating-row span {
  width: 16px;
  font-size: 13px;
}

.ratings-section .progress {
  height: 6px;
  border-radius: 6px;
  background: #e5e7eb;
  flex-grow: 1;
}

.ratings-section .photo-list img,
.ratings-section .photo-more {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  object-fit: cover;
}

.ratings-section .photo-more {
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ratings-section .summary-box {
  background: #f4faff;
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.ratings-section .rating-score {
    font-size: 40px;
    font-weight: 600;
}
@media (max-width: 576px) {
  .ratings-section .rating-score {
    font-size: 28px;
  }
}
.photo-list img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 4px;
}

.photo-more {
    position: absolute;
    top: 0px;
    bottom: 0;
    margin: auto;
    z-index: 99;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 700;
    background: #2424246e;
}

.rating-navlink {
    background: #f1f2f2 !important;
    color: #060606 !important;
    padding: 7px 10px !important;
}

.rating-navlink.active {
    background: #1d8fff !important;
    color: white !important;
}








.review-card {
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  height: 100%;
  /* max-width: 380px; */
}

.review-card .review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-card .review-stars i {
  color: #fbbf24;
  font-size: 14px;
}

.review-card .review-date {
  font-size: 13px;
  color: #9ca3af;
  margin-left: 6px;
}

.review-card .review-like {
  font-size: 14px;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 4px;
}

.review-card .review-like i {
  font-size: 16px;
}

.review-card .review-variant {
  font-size: 13px;
  color: #6b7280;
  margin-top: 6px;
}

.review-card .review-text {
  font-size: 15px;
  color: #111827;
  line-height: 1.6;
  margin-top: 10px;
}

.review-card .review-text a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

.review-card .review-images {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.review-card .review-images img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
}

.review-card .review-name {
  font-size: 13px;
  font-weight: 600;
  color: #111827;
  margin-top: 8px;
}

.product-meta .meta-row span {
    font-size: 14px;
}

.product-meta .meta-row .meta-value a {
    text-decoration: none;
}

.product-meta .meta-row .meta-value img {
    width: 18px;
    height: auto;
} 