
/* ======================================================
   PRODUCT DETAIL PAGE - SCREENSHOT MATCH + SELECTABLE COLORS
   Paste at the bottom of your main CSS
   ====================================================== */

.product-detail-page {
    padding: 70px 0 20px !important;
    background: #ffffff !important;
}

.product-detail-container {
    width: min(100% - 32px, 980px) !important;
    margin: 0 auto !important;

    display: grid !important;
    grid-template-columns: 430px 1fr !important;
    gap: 90px !important;
    align-items: start !important;
}

.product-detail-gallery {
    display: grid !important;
    grid-template-columns: 46px 1fr !important;
    gap: 32px !important;
    align-items: start !important;
}

.product-thumbnail-row {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    width: 46px !important;
}

.thumb-btn {
    width: 63px !important;
    height: 85.4px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    background: #e8e8e6 !important;
    border: 1px solid transparent !important;
    cursor: pointer !important;
    overflow: hidden !important;
}

/* .thumb-btn.active {
    border-color: #111111 !important;
} */

.thumb-btn img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.product-main-image {
    width: 397.3px !important;
    height: 539px !important;
    background: #e2e2e0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
}

.product-main-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    object-position: center !important;
    display: block !important;
}

.product-detail-info {
    width: 100% !important;
    max-width: 330px !important;
    padding-top: 8px !important;
}

.product-detail-info h1 {
    margin: 0 0 7px !important;
    color: rgba(0, 0, 0, 1) !important;
    font-size: 24px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
}
.product-name-last-word {
    color: rgba(113, 118, 128, 1) !important;
}
.product-detail-info .price {
    margin-bottom: 15px !important;
    color: rgba(32, 32, 32, 1) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
    font-family: PP Neue Montreal, Arial, sans-serif !important;
    margin-top: 13px !important;

}

/* Selectable color images / fallback color boxes */
.detail-colour-options {
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 7px !important;

    margin: 32px 0 13px !important;
}

.detail-colour-choice {
    width: 43.3px !important;
    height: 58.8px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    background: #e2e2e0 !important;

    cursor: pointer !important;

    /* important: allow active line to go lower */
    overflow: visible !important;
    position: relative !important;
}

.detail-colour-image-option img {
    width: 100% !important;
    height: 100% !important;

    object-fit: contain !important;
    object-position: center !important;

    display: block !important;
}

/* fallback swatch should still show admin color */
.detail-colour-choice.detail-colour-swatch {
    background: var(--swatch-color, #e2e2e0) !important;
}

/* active underline */
.detail-colour-choice.active::after {
    content: "" !important;
    position: absolute !important;

    left: 1px !important;
    right: 1px !important;

    /* move line down */
    bottom: -1px !important;

    height: 2px !important;
    background: #111111 !important;
    z-index: 5 !important;
}

/* Size buttons */
.detail-size-options {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 5px !important;
    margin: 0 0 17px !important;
}

.size-btn {
    min-width: 38px !important;
    height: 31px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 8px !important;
    margin: 0 !important;

    border: 1px solid rgba(65, 70, 81, 1) !important;
    background: #ffffff !important;
     font-family: PP Neue Montreal, Arial, sans-serif !important;
    color: rgba(83, 88, 98, 1)1 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    cursor: pointer !important;
}

.size-btn.active {
    background: rgba(0, 0, 0, 1) !important;
    border-color: rgba(0, 0, 0, 1) !important;
    color: #ffffff !important;
}

.product-detail-accordion {
    margin-top: 26px !important;
    margin-bottom: 28px !important;
    border-top: 1px solid #e6e6e6 !important;
}

.accordion-item {
    border-bottom: 1px solid #e6e6e6 !important;
}

.accordion-header {
    width: 100% !important;
    height: 51px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;

    padding: 0 !important;
    border: none !important;
    background: transparent !important;

    color: rgba(83, 88, 98, 1) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    font-family: PP Neue Montreal, Arial, sans-serif !important;

    cursor: pointer !important;
}

.accordion-icon {
    color: #535862 !important;
    font-size: 20px !important;
    line-height: 1 !important;
}

.accordion-body {
    display: none !important;
    padding: 0 0 14px !important;

    color: #555555 !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
}

.accordion-item.open .accordion-body {
    display: block !important;
}

.detail-cart-row {
    display: grid !important;
    grid-template-columns: 1fr 18px !important;
    gap: 10px !important;
    align-items: center !important;
    margin-top: 2px !important;
}

.add-to-cart {
    width: 100% !important;
    height: 57px !important;

    border: 1px solid  rgba(65, 70, 81, 1) !important;
    background: #ffffff !important;

    color: rgba(65, 70, 81, 1) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: uppercase !important;

    cursor: pointer !important;
}

.add-to-cart:hover {
    background: #111111 !important;
    border-color: #111111 !important;
    color: #ffffff !important;
}

/* ======================================================
   PRODUCT DETAIL - AFTER ADD TO CART FIX
   ====================================================== */
/* ======================================================
   AFTER ADD TO CART - SAME EXACT WIDTH AS ADD TO CART
   ====================================================== */

.detail-cart-added {
    width: 100% !important;
}

.detail-cart-added-row {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 1fr 18px !important;
    gap: 10px !important;
    align-items: center !important;

    margin-top: 2px !important;
}

.detail-added-main {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: 38% 1fr !important;
    gap: 10px !important;
    align-items: center !important;
}

.detail-qty-box,
.detail-checkout-now {
    width: 100% !important;
    height: 57px !important;

    border: 1px solid #414651 !important;
    background: #ffffff !important;
    color: #414651 !important;

    display: flex !important;
    align-items: center !important;

    box-sizing: border-box !important;
}

.detail-qty-box {
    justify-content: space-between !important;
    padding: 0 24px !important;
}

.detail-checkout-now {
    justify-content: center !important;

    text-decoration: none !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;

    font-size: 14px !important;
    font-weight: 500 !important;
    line-height: 1 !important;
}

.detail-qty-btn {
    border: none !important;
    background: transparent !important;
    color: #252B37 !important;

    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;

    cursor: pointer !important;
    padding: 0 !important;
    margin: 0 !important;
}

.detail-qty-value {
    color: #252B37 !important;
    font-size: 18px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.detail-cart-added .detail-wishlist-btn {
    width: 18px !important;
    height: 57px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: none !important;
    background: transparent !important;
    color: #111111 !important;

    padding: 0 !important;
    margin: 0 !important;
}

.detail-cart-added .wishlist-icon {
    width: 18px !important;
    height: 22px !important;
}

/* MOBILE */
@media (max-width: 768px) {
    .detail-cart-added-row {
        grid-template-columns: 1fr 18px !important;
        gap: 6px !important;
        margin-top: 8px !important;
    }

    .detail-added-main {
        grid-template-columns: 38% 1fr !important;
        gap: 6px !important;
    }

    .detail-qty-box,
    .detail-checkout-now {
        height: 43px !important;
    }

    .detail-qty-box {
        padding: 0 12px !important;
    }

    .detail-qty-btn,
    .detail-qty-value {
        font-size: 13px !important;
    }

    .detail-checkout-now {
        font-size: 8px !important;
    }

    .detail-cart-added .detail-wishlist-btn {
        width: 18px !important;
        height: 43px !important;
    }

    .detail-cart-added .wishlist-icon {
        width: 10px !important;
        height: 12px !important;
    }
}

/* Wishlist button */
.detail-wishlist-btn {
    width: 24px !important;
    height: 32px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;
    margin: 0 !important;

    border: none !important;
    background: transparent !important;

    color: #111111 !important;
    cursor: pointer !important;
}

.wishlist-icon {
    width: 14px !important;
    height: 18px !important;
    display: block !important;
}

.detail-wishlist-btn.active .wishlist-icon path {
    fill: #111111 !important;
    stroke: #111111 !important;
}

/* Wishlist snackbar */
.wishlist-snackbar {
    position: fixed !important;
    left: 50% !important;
    bottom: 28px !important;
    transform: translateX(-50%) translateY(20px) !important;

    min-width: 190px !important;
    padding: 12px 18px !important;

    background: #111111 !important;
    color: #ffffff !important;

    font-size: 12px !important;
    font-weight: 400 !important;
    text-align: center !important;

    opacity: 0 !important;
    pointer-events: none !important;

    z-index: 999999 !important;
    transition: opacity 0.25s ease, transform 0.25s ease !important;
}

.wishlist-snackbar.show {
    opacity: 1 !important;
    transform: translateX(-50%) translateY(0) !important;
}

.size-error {
    margin: 0 0 8px !important;
    color: #b91c1c !important;
    font-size: 10px !important;
}

/* ======================================================
   PRODUCT DETAIL MOBILE - SCREENSHOT MATCH
   ====================================================== */

@media (max-width: 768px) {
    .product-detail-page {
        padding: 61px 0 24px !important;
        background: #ffffff !important;
    }

    .product-detail-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;

        display: block !important;
    }

    /* Hide side thumbnails on mobile */
    .product-thumbnail-row {
        display: none !important;
    }

    .product-detail-gallery {
        width: 100% !important;
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .product-main-image {
        width: 100% !important;
        height: 260px !important;

        background: #e2e2e0 !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        overflow: hidden !important;
        margin: 0 !important;
    }

    .product-main-image img {
        width: 78% !important;
        height: 78% !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block !important;
    }

    .product-detail-info {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px 10px 0 !important;
        margin: 0 !important;
    }

    .product-detail-info h1 {
        margin: 0 0 4px !important;
      
        line-height: 1.15 !important;
        color: #111111 !important;
    }

    .product-detail-info .price {
        margin: 0 0 8px !important;
        line-height: 1 !important;
        color: #5E5E5E !important;
    }

    /* Color thumbnails */
    .detail-colour-options {
        margin: 7px 0 8px !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        flex-wrap: wrap !important;
    }

    .detail-colour-choice {
        width:43px !important;
        height: 58px !important;
        min-width: 22px !important;

        background: #e2e2e0 !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;

        overflow: visible !important;
        position: relative !important;
    }

    .detail-colour-image-option img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        display: block !important;
    }

    .detail-colour-choice.active::after {
        content: "" !important;
        position: absolute !important;
        left: 2px !important;
        right: 2px !important;
        bottom: -3px !important;
        height: 1px !important;
        background: #111111 !important;
    }

    /* Sizes */
    .detail-size-options {
        margin: 8px 0 10px !important;
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        flex-wrap: wrap !important;
    }

    .size-btn {
        min-width: 38px !important;
        height: 31px !important;
        padding: 0 5px !important;

        border: 1px solid #d6d6d6 !important;
        background: #ffffff !important;

        color: #535862 !important;
       
        line-height: 1 !important;
    }

    .size-btn.active {
        background: #000000 !important;
        border-color: #000000 !important;
        color: #ffffff !important;
    }

    /* Accordion */
    .product-detail-accordion {
        margin: 12px 0 12px !important;
        border-top: 1px solid #eeeeee !important;
    }

    .accordion-header {
        height: 49px !important;
       
        color: #535862 !important;
    }

    

    .accordion-body {
        padding: 0 0 8px !important;
       
        line-height: 1.5 !important;
        
    }

    /* Cart row */
    .detail-cart-row {
        display: grid !important;
        grid-template-columns: 1fr 18px !important;
        gap: 6px !important;
        align-items: center !important;
        margin-top: 8px !important;
    }

    .add-to-cart {
        width: 100% !important;
        height: 43px !important;

        border: 1px solid #414651 !important;
        background: #ffffff !important;
        line-height: 1 !important;
    }

    .detail-wishlist-btn {
        width: 18px !important;
        height: 20px !important;
    }

    .wishlist-icon {
        width: 24px !important;
        height: 24px !important;
    }

    /* Related products */
    .related-section,
    .product-related-section {
        padding: 14px 10px 0 !important;
        margin: 0 !important;
    }

    .related-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .related-title {
        margin: 0 0 8px !important;
        color: #111111 !important;
    }

    .related-product-grid,
    .home-products-grid.related-product-grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px 5px !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .related-product-grid .home-product-image {
        aspect-ratio: 1 / 1.2 !important;
    }

    .related-product-grid .home-product-info h3,
    .related-product-grid .home-product-info p {
      
        line-height: 1.1 !important;
    }

    .related-product-grid .product-swatches span {
        width: 4px !important;
        height: 4px !important;
    }
}
/* ======================================================
   PRODUCT DETAIL MOBILE - REMOVE TOP SPACE ABOVE IMAGE
   ====================================================== */

@media (max-width: 768px) {
    .product-detail-page {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .product-detail-container {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .product-detail-gallery {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .product-main-image {
        margin-top: 0 !important;
        width: 100% !important;
        height: 390px !important;
        background: #e2e2e0 !important;
    }

    .product-main-image img {
        width: 85% !important;
        height: 85% !important;
        object-fit: contain !important;
        object-position: center center !important;
    }
}

@media (max-width: 520px) {
    .product-main-image {
        height: 390px !important;
    }
}

/* ======================================================
   PRODUCT DETAIL MOBILE SWIPE GALLERY
   ====================================================== */

.product-mobile-gallery {
    display: none !important;
}

@media (max-width: 768px) {
    .product-detail-gallery {
        display: none !important;
    }

    .product-mobile-gallery {
        width: 100% !important;
        display: block !important;
        overflow: hidden !important;
        background: #ffffff !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .product-mobile-slider {
        width: 100% !important;
        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        background: #e2e2e0 !important;
    }

    .product-mobile-slider::-webkit-scrollbar {
        display: none !important;
    }

    .product-mobile-slide {
        min-width: 100% !important;
        width: 100% !important;
        height: 380px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        scroll-snap-align: start !important;
        background: #e2e2e0 !important;
    }

    .product-mobile-slide img {
        width: 88% !important;
        height: 88% !important;
        object-fit: contain !important;
        object-position: center center !important;
        display: block !important;
    }

    .product-mobile-dots {
        width: 100% !important;
        height: 42px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        gap: 11px !important;
        background: #ffffff !important;
    }

    .product-mobile-dot {
        width: 12px !important;
        height: 4px !important;

        padding: 0 !important;
        margin: 0 !important;

        border: none !important;
        border-radius: 0 !important;
        background: #f1f1f1 !important;

        cursor: pointer !important;
    }

    .product-mobile-dot.active {
        width: 22px !important;
        background: #000000 !important;
    }
}

@media (max-width: 520px) {
    .product-mobile-slide {
        height: 380px !important;
    }
}
/* ======================================================
   FIX CART SUCCESS MODAL
   ====================================================== */

.cart-success-modal {
    position: fixed !important;
    inset: 0 !important;
    z-index: 99999 !important;

    display: none !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 20px !important;
    background: rgba(0, 0, 0, 0.45) !important;
}

.cart-success-modal.active {
    display: flex !important;
}

.cart-success-card {
    width: 100% !important;
    max-width: 360px !important;

    background: #ffffff !important;
    color: #111111 !important;

    padding: 32px 28px !important;
    text-align: center !important;

    border-radius: 0 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
}

.cart-success-card h3 {
    margin: 14px 0 8px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #111111 !important;
}

.cart-success-card p {
    margin: 0 0 24px !important;
    font-size: 13px !important;
    color: #555555 !important;
}

.cart-success-icon-wrap {
    display: flex !important;
    justify-content: center !important;
}

.cart-success-icon-ring {
    width: 54px !important;
    height: 54px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #111111 !important;
    border-radius: 50% !important;
}

.cart-success-icon {
    font-size: 22px !important;
    color: #111111 !important;
}

.cart-success-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

.cart-success-btn {
    height: 38px !important;
    min-width: 110px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 18px !important;

    border: 1px solid #111111 !important;
    background: #ffffff !important;

    color: #111111 !important;
    font-size: 11px !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.cart-success-btn.dark {
    background: #111111 !important;
    color: #ffffff !important;
}


/* ======================================================
   FIX RELATED PRODUCTS SECTION
   ====================================================== */

.product-related-section,
.related-section {
    width: 100% !important;
    background: #ffffff !important;
    padding: 48px 18px 80px !important;
    margin: 0 !important;
}

.related-container {
    width: 100% !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

.related-title {
    margin: 0 0 14px !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: rgba(0, 0, 0, 1) !important;
}

.related-product-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 6px !important;
}

.related-product-grid a {
    display: block !important;
    text-decoration: none !important;
    color: #111111 !important;
}

.related-product-grid .product-card {
    width: 100% !important;
}

.related-product-grid .product-image {
    width: 100% !important;
    aspect-ratio: 1 / 1.18 !important;
    background: #e2e2e0 !important;
    overflow: hidden !important;
}

.related-product-grid .product-image img {
    width: 100% !important;
    height: 100% !important;

    display: block !important;

    object-fit: contain !important;
    object-position: center !important;
}

.related-product-grid .product-card h3 {
    margin: 8px 0 2px !important;
    font-size: 11px !important;
    font-weight: 400 !important;
    color: #111111 !important;
}

.related-product-grid .product-card p {
    margin: 0 !important;
    font-size: 10px !important;
    color: #111111 !important;
}





/* ======================================================
   RELATED PRODUCTS - MOBILE HORIZONTAL SCROLL
   ====================================================== */

@media (max-width: 768px) {
    .product-related-section {
        padding: 14px 0 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    .product-related-section .related-container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .product-related-section .related-title {
        margin: 0 10px 8px !important;
    }

    .product-related-section .related-product-grid {
        display: flex !important;
        grid-template-columns: none !important;
        flex-wrap: nowrap !important;

        gap: 6px !important;

        width: 100% !important;
        max-width: 100% !important;

        overflow-x: auto !important;
        overflow-y: hidden !important;

        padding: 0 10px 10px !important;
        margin: 0 !important;

        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
    }

    .product-related-section .related-product-grid::-webkit-scrollbar {
        display: none !important;
    }

    .product-related-section .related-product-grid {
        scrollbar-width: none !important;
    }

    .product-related-section .related-product-grid .home-product-card {
        flex: 0 0 calc((100vw - 26px) / 2.15) !important;
        width: calc((100vw - 26px) / 2.15) !important;
        max-width: calc((100vw - 26px) / 2.15) !important;

        scroll-snap-align: start !important;
    }

    .product-related-section .related-product-grid .home-product-image {
        aspect-ratio: 1 / 1.32 !important;
        width: 100% !important;
    }
     .product-swatches {
        gap: 2px !important;
        margin-top: 2px !important;
    }

    .product-swatches span {
        width: 5px !important;
        height: 5px !important;
    }

  
}

.product-swatches {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
}

.product-swatches span {
    width: 9px;
    height: 9px;
    display: inline-block;
    border-radius: 1px;
    border: 1px solid rgba(217, 217, 217, 1);
}

.home-product-info .product-swatches {
    margin-top: 4px;
}
/* ======================================================
   MOBILE SWATCH SIZE FIX
   Make product/related swatches more visible on mobile
   ====================================================== */

@media (max-width: 768px) {
    .product-related-section .product-swatches,
    .related-product-grid .product-swatches,
    .home-product-info .product-swatches {
        display: flex !important;
        align-items: center !important;
        gap: 4px !important;
        margin-top: 4px !important;
        flex-wrap: wrap !important;
    }

    .product-related-section .product-swatches span,
    .related-product-grid .product-swatches span,
    .home-product-info .product-swatches span {
        width: 5.09px !important;
        height: 5.09px !important;
        min-width:5.09px !important;
        min-height: 5.09px !important;

        display: inline-block !important;
        border-radius: 1px !important;
        border: 1px solid rgba(217, 217, 217, 1) !important;
    }
}
/* ======================================================
   PRODUCT DETAIL REVIEWS
   ====================================================== */

.product-review-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 14px;
}

.review-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.review-star {
    position: relative;
    display: inline-block;
    color: #d1d5db;
    font-size: 16px;
    line-height: 1;
    stroke: #D4AF37 !important;
    border: #D4AF37;
}

.review-star.full {
    color: #D4AF37;
}

.review-star.half {
    color: #d1d5db;
}

.review-star.half::before {
    content: "★";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    overflow: hidden;
    color: #111111;

}

.review-rating-text {
    color: #535862;
    font-size: 13px;
    line-height: 1;
}

.review-rating-text strong {
    color: #111111;
    font-weight: 500;
}

.product-review-list {
    display: grid;
    gap: 14px;
    margin-top: 12px;
}

.product-review-item {
    padding-top: 12px;
    border-top: 1px solid #eeeeee;
}

.product-review-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 6px;
}

.product-review-top strong {
    color: #111111;
    font-size: 13px;
    font-weight: 500;
}

.review-stars.small .review-star {
    font-size: 12px;
}

.product-review-item p {
    margin: 0 0 6px;
    color: #535862;
    font-size: 13px;
    line-height: 1.6;
}

.product-review-item small {
    color: #8a8a8a;
    font-size: 11px;
}

@media (max-width: 768px) {
    .product-review-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .product-review-top {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }
}
/* ======================================================
   PRODUCT REVIEWS
   Gold stars + scroll after 2 reviews
   ====================================================== */

.product-reviews-list {
    max-height: 260px;
    overflow-y: auto;
    padding-right: 8px;
    margin-top: 18px;
}

/* Review card spacing */
.product-review-card {
    padding: 16px 0;
    border-bottom: 1px solid #eeeeee;
}

/* Gold stars */
.product-review-stars,
.review-stars,
.rating-stars {
    color: #D4AF37 !important;
}

/* If your stars are SVG icons */
.product-review-stars svg,
.review-stars svg,
.rating-stars svg {
    stroke: #D4AF37 !important;
    fill: #D4AF37 !important;
}

/* Scrollbar */
.product-reviews-list::-webkit-scrollbar {
    width: 4px;
}

.product-reviews-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.product-reviews-list::-webkit-scrollbar-thumb {
    background: #c7c7c7;
    border-radius: 20px;
}