/* Body Mist Product Template Styles - Matching Shopify */
        .product-single {
            display: flex;
            flex-wrap: wrap;
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .product-single__left {
            flex: 0 0 55%;
            max-width: 55%;
            position: relative;
        }

        .product-single__right {
            flex: 0 0 45%;
            max-width: 45%;
            padding-left: 60px;
        }

        /* Product Tags */
        .product-tags--container {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 10;
        }

        .product-top-tag {
            background: #fff;
            color: #000;
            font-size: 10px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            padding: 8px 12px;
            display: inline-block;
        }

        /* Gallery Slider with Click Zones */
        .product-gallery {
            position: relative;
            overflow: hidden;
        }

        .product-gallery__slides {
            display: flex;
            transition: transform 0.3s ease;
        }

        .product-gallery__slide {
            flex: 0 0 100%;
            min-width: 100%;
        }

        .product-gallery__slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Click zones for navigation */
        .gallery-nav-zone {
            position: absolute;
            top: 0;
            height: 100%;
            width: 50%;
            cursor: pointer;
            z-index: 20;
            display: flex;
            align-items: center;
        }

        .gallery-nav-zone--prev {
            left: 0;
            justify-content: flex-start;
            padding-left: 15px;
            cursor: w-resize;
        }

        .gallery-nav-zone--next {
            right: 0;
            justify-content: flex-end;
            padding-right: 15px;
            cursor: e-resize;
        }

        .gallery-nav-zone:hover .nav-arrow {
            width: 30px;
            height: 30px;
            background: none !important;
            border-radius: 0;
            opacity: 0.4;
            transition: opacity 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none; /* Let the zone handle the click */
        }

        .nav-arrow {
            width: 30px;
            height: 30px;
            background: none !important;
            border-radius: 0;
            opacity: 0.4;
            transition: opacity 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            pointer-events: none; /* Let the zone handle the click */
        }

        /* Slider Dots */
        /* Product Meta Info */
        .product-single__meta {
            
        }

        .product-single__title {
            font-size: 28px;
            font-weight: 400;
            letter-spacing: 0.02em;
            margin: 0 0 15px;
            text-transform: uppercase;
        }

        .product-single__description {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 20px;
        }

        .product-single__description a {
            color: #000;
            text-decoration: underline;
        }

        /* Reviews Summary */
        .product-single__reviews-summary {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 25px;
            font-size: 13px;
            cursor: pointer;
        }

        .reviews-stars {
            display: flex;
            gap: 2px;
        }

        .reviews-stars svg {
            width: 14px;
            height: 14px;
            fill: #000;
        }

        .reviews-rating {
            color: #000;
            font-weight: 500;
        }

        .reviews-count {
            color: #666;
        }

        /* Scent Selector */
        .product-single__variants-selector {
            margin-bottom: 25px;
        }

        .scent-selector {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .scent-option {
            width: 60px;
            height: 80px;
            border: 2px solid transparent;
            cursor: pointer;
            padding: 4px;
            transition: border-color 0.2s ease;
            background: #f5f5f5;
        }

        .scent-option:hover,
        .scent-option.active {
            border-color: #000;
        }

        .scent-option img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .current-scent {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .current-scent__label {
            color: #666;
        }

        .current-scent__name {
            font-weight: 600;
            color: #000;
        }

        /* Price */
        .product-single__price {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        /* Add to Cart / Waitlist Button */
        .product-single__add-to-cart {
            margin-bottom: 20px;
        }

        .btn--add-to-cart,
        .btn--waitlist {
            width: 100%;
            padding: 18px 30px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border: none;
            cursor: pointer;
            transition: opacity 0.2s ease;
        }

        .btn--add-to-cart {
            background: #000;
            color: #fff;
        }

        .btn--waitlist {
            background: #000;
            color: #fff;
        }

        .btn--add-to-cart:hover,
        .btn--waitlist:hover {
            opacity: 0.85;
        }

        /* Complete Your Routine - Upsell Section */
        .product-upsell {
            border-top: 1px solid #ddd;
            margin-top: 0;
            padding-top: 1.5rem;
            padding-bottom: 24px;
        }

        .product-upsell__title {
            font-size: 12px;
            font-weight: 400;
            letter-spacing: 0.06em;
            line-height: 1.2;
            text-transform: uppercase;
            margin: 0 0 20px 0;
        }

        .upsell-product {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .upsell-product__image-wrapper {
            width: 120px;
            min-width: 120px;
            background-color: #f5f5f5;
            border-radius: 0.75rem;
            overflow: hidden;
            position: relative;
        }

        .upsell-product__image-wrapper::before {
            content: '';
            display: block;
            padding-top: 100%;
        }

        .upsell-product__image-wrapper img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .upsell-product__info {
            padding-left: 17px;
            flex: 1;
        }

        .upsell-product__name {
            font-size: 16px;
            font-weight: 400;
            line-height: 1.2;
            text-transform: uppercase;
            margin: 0 0 8px 0;
        }

        .upsell-product__fragrance {
            font-size: 12px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin: 0 0 10px 0;
            color: #000;
        }

        .upsell-product__add-btn {
            display: inline-block;
            border: 1px solid #000;
            background: transparent;
            color: #000;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 8px 12px;
            border-radius: 20px;
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .upsell-product__add-btn:hover {
            background: #000;
            color: #fff;
        }

        .upsell-product__price {
            display: inline;
        }

        .upsell-product__price--sale {
            color: inherit;
        }

        .upsell-product__price--compare {
            text-decoration: line-through;
            color: #a8a8a8;
            margin-left: 3px;
        }

        /* Accordions - Closed by default with + icon */
        .product-accordions {
            max-width: 700px;
            margin: 20px auto 0;
            border-top: 1px solid #e5e5e5;
        }

        .accordion-group {
            border-bottom: 1px solid #e5e5e5;
        }

        .accordion-trigger {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 20px 0;
            background: none;
            border: none;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            cursor: pointer;
            text-align: left;
			color: #000;
        }

        .accordion-icon {
            font-size: 20px;
            font-weight: 300;
            line-height: 1;
        }

        .accordion-content {
            display: none;
            padding: 0 0 25px;
            font-size: 14px;
            line-height: 1.7;
            color: #444;
        }

        .accordion-content.show {
            display: block;
        }

        .full-ingredients__trigger {
            display: inline-block;
            margin-top: 15px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #000;
            text-decoration: underline;
            cursor: pointer;
        }

        /* Ingredients Modal */
        .ingredients-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            justify-content: center;
            align-items: center;
        }

        .ingredients-modal.show {
            display: flex;
        }

        .ingredients-modal__content {
            background: #fff;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 40px;
            position: relative;
        }

        .ingredients-modal__close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
        }

        .ingredients-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 20px;
        }

        /* You Might Also Like Section */
        .related-products-section {
            max-width: 1400px;
            margin: 20px auto 40px;
            padding: 0 20px;
        }

        .related-products__header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
        }

        .related-products__title {
            font-size: 24px;
            font-weight: 400;
            margin: 0;
        }

        .related-products__shop-all {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            color: #000;
            text-decoration: none;
        }

        .related-products__shop-all:hover {
            text-decoration: underline;
        }

        .related-products__grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        /* Mobile slideshow */
        @media (max-width: 767px) {
            .related-products__grid {
                display: flex;
                overflow-x: auto;
                scroll-snap-type: x mandatory;
                gap: 20px;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding-bottom: 10px;
            }

            .related-products__grid::-webkit-scrollbar {
                display: none;
            }

            .related-product-card {
                flex: 0 0 calc(50% - 10px);
                min-width: calc(50% - 10px);
                scroll-snap-align: start;
            }
        }

        @media (min-width: 768px) and (max-width: 1024px) {
            .related-products__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .related-product-card {
            position: relative;
        }

        .related-product-card__image {
            background: #f5f5f5;
            margin-bottom: 15px;
            position: relative;
        }

        .related-product-card__image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .related-product-card__badge {
            position: absolute;
            top: 10px;
            left: 10px;
            background: #fff;
            padding: 5px 10px;
            font-size: 9px;
            font-weight: 600;
            letter-spacing: 0.1em;
            text-transform: uppercase;
        }

        .related-product-card__quick-add {
            position: absolute;
            bottom: 10px;
            right: 10px;
            width: auto;
            height: auto;
            border-radius: 50%;
            border: none;
            background: transparent;
            cursor: pointer;
            padding: 0;
            line-height: 0;
            transition: all 0.2s ease;
        }

        .related-product-card__quick-add:hover {
            background: transparent;
        }

        .related-product-card__quick-add svg circle,
        .related-product-card__quick-add svg rect {
            transition: all 0.2s ease;
        }

        .related-product-card__quick-add:hover svg circle {
            fill: #000;
        }

        .related-product-card__quick-add:hover svg rect {
            fill: #fff;
            stroke: #fff;
        }

        .related-product-card__title {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin: 0 0 5px;
        }

        .related-product-card__title a {
            color: #000;
            text-decoration: none;
        }

        .related-product-card__scent {
            font-size: 11px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 8px;
        }

        .related-product-card__price {
            font-size: 14px;
            font-weight: 500;
        }

        /* Customer Reviews Section */
        .reviews-section {
            max-width: 1000px;
            margin: 20px auto;
            padding: 0 20px;
        }

        .reviews-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .reviews-header__left {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .reviews-buttons-row {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .reviews-rating-summary {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .reviews-rating-summary__score {
            font-size: 14px;
            font-weight: 600;
        }

        .reviews-rating-summary__stars svg {
            width: 14px;
            height: 14px;
            fill: #000;
        }

        .reviews-rating-label {
            font-size: 10px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        .reviews-filters-btn {
            padding: 8px 16px;
            border: 1px solid #ddd;
            background: #fff;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.05em;
            cursor: pointer;
            border-radius: 20px;
			color: #000
        }

        .reviews-count-label {
            font-size: 12px;
            color: #000;
            margin-top: 20px;
        }

        .reviews-header__right {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 15px;
        }

        .btn--write-review {
            padding: 8px 16px;
            background: #fff;
            border: 1px solid #ddd;
            font-size: 11px;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 20px;
            transition: all 0.2s ease;
			color: #000
        }

        .btn--write-review:hover {
            border-color: #000;
        }

        .reviews-sort {
            font-size: 11px;
            color: #666;
        }

        .reviews-sort select {
            border: none;
            background: none;
            font-size: 11px;
            font-weight: 500;
            cursor: pointer;
        }

        /* Individual Review */
        .reviews-list {
            border-top: 1px solid #e5e5e5;
        }

        .review-item {
            padding: 25px 0;
            border-bottom: 1px solid #e5e5e5;
            display: grid;
            grid-template-columns: 150px 1fr;
            gap: 30px;
        }

        .review-author {
            font-size: 13px;
            font-weight: 600;
        }

        .review-verified {
            font-size: 10px;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-top: 4px;
        }

        .review-content__stars {
            display: flex;
            gap: 2px;
            margin-bottom: 10px;
        }

        .review-content__stars svg {
            width: 12px;
            height: 12px;
            fill: #000;
        }

        .review-content__text {
            font-size: 13px;
            line-height: 1.6;
            color: #444;
        }

        /* Product Media Section - Video and Images */
        .product-media-section {
            max-width: 1400px;
            margin: 20px auto;
            padding: 0 20px;
        }

        .product-media__video {
            width: 100%;
            margin-bottom: 20px;
        }

        .product-media__video video {
            width: 100%;
            height: auto;
            display: block;
        }

        .product-media__images {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .product-media__images img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .related-products__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Media Overlay Styles (Desktop & Mobile) */
                 .product-media__item {
                    position: relative;
                    width: 100%;
                 }

                 .media-overlay {
                     position: absolute;
                     bottom: 20px;
                     left: 20px;
                     right: 20px;
                     color: #fff;
                     z-index: 2;
                     text-align: left;
                     pointer-events: none;
                 }

                 .media-overlay__title {
                     font-size: 19px;
                     font-weight: 400;
                     text-transform: uppercase;
                     margin: 0 0 5px 0;
                     color: inherit;
                     line-height: 1.3;
                     font-family: inherit;
                 }

                 .media-overlay__text {
                     font-size: 15px;
                     line-height: 1.4;
                     margin: 0;
                     color: inherit;
                     font-family: inherit;
                 }

                


    .product-single {
        padding: 0 !important;
    }
    .product-single__left {
        padding: 0 !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    .product-single__right {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 0 20px 20px 20px !important;
        margin-top: 0 !important;
    }
}

        .gallery-scrollbar {
            width: 60px;
            height: 2px;
            background: #e5e5e5;
            margin: 20px auto 0;
            position: relative;
            overflow: hidden;
            border-radius: 2px;
        }
        .gallery-scrollbar__track {
            width: 100%;
            height: 100%;
            position: relative;
        }
        .gallery-scrollbar__thumb {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            background: #000;
            transition: transform 0.3s ease, width 0.3s ease;
            transform-origin: left;
        }

        .nav-arrow svg {
            width: 24px;
            height: 24px;
            stroke: #000;
            stroke-width: 1.2px;
        }
        
    
        .nav-arrow {
            opacity: 0.6 !important;
        }
        .nav-arrow svg {
            width: 20px !important;
            height: 20px !important;
        }
        .gallery-scrollbar {
            margin-top: 15px !important;
            display: block !important;
        }
    }
    
            .product-single__right {
            padding: 0 20px 20px 20px !important;
            margin-top: 0 !important;
        }
        .gallery-nav-zone {
            width: 60px !important;
            pointer-events: auto !important;
            z-index: 30 !important;
        }
        .nav-arrow {
            opacity: 0.6 !important;
        }
        .nav-arrow svg {
            width: 20px !important;
            height: 20px !important;
        }
        .gallery-scrollbar {
            margin-top: 15px !important;
            display: block !important;
        }
    }


    .product-single__right {
        padding: 0 20px 20px 20px !important;
        margin-top: 0 !important;
    }
    .gallery-nav-zone {
        width: 60px !important;
        pointer-events: auto !important;
        z-index: 30 !important;
    }
    .nav-arrow {
        opacity: 0.6 !important;
    }
    .nav-arrow svg {
        width: 20px !important;
        height: 20px !important;
    }
    .gallery-scrollbar {
        margin-top: 15px !important;
        display: block !important;
    }
}

/* --- 1:1 REFINED CORRECT DISPLAY MATCH --- */
.product-gallery {
    border-radius: 0;
    overflow: hidden;
}

.product-gallery__thumbnails {
    display: none !important;
}

.gallery-scrollbar {
    width: 60px;
    height: 2px;
    background: #e5e5e5;
    margin: 20px auto 0;
    position: relative;
    border-radius: 2px;
}
.gallery-scrollbar__thumb {
    background: #000;
}

.product-single__right {
    padding: 0 16px 20px 16px !important;
    margin-top: 0 !important;
}

.product-media-section {
    padding: 0 10px;
    margin: 30px 0;
}
.product-media__item {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 10px;
    position: relative;
}
.product-media__images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.media-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 15px;
    background: linear-gradient(transparent, rgba(0,0,0,0.3));
    color: #fff;
    pointer-events: none;
}
.media-overlay__title {
    font-size: 13px; /* Smaller text as requested */
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
}
.media-overlay__text {
    font-size: 11px; /* Smaller text as requested */
    opacity: 0.9;
    line-height: 1.3;
}

.reviews-section {
    padding: 30px 15px;
}

@media (max-width: 768px) {
    .product-single__right {
        padding: 0 16px 20px 16px !important;
    }
    .gallery-nav-zone {
        width: 60px !important;
        pointer-events: auto !important;
        z-index: 30 !important;
    }
    .nav-arrow {
        opacity: 0.4 !important; /* Clean gray arrows */
    }
    .nav-arrow svg {
        stroke: #000;
    }
}


/* Fix Scent Selector */

.scent-selector {
    display: flex !important;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.scent-option {
    width: 60px;
    height: 80px;
    flex-shrink: 0;
    cursor: pointer;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    transition: border-color 0.2s;
}
.scent-option.active {
    border-color: #000;
}
.scent-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.current-scent {
    margin-top: 15px;
    font-size: 13px;
    line-height: 1.4;
}
.current-scent__label {
    text-transform: uppercase;
    font-weight: 600;
}
.current-scent__name {
    font-weight: 600;
}
.current-scent__notes {
    display: block;
    color: #666;
    margin-top: 4px;
}

/* --- BIGGER MEDIA SECTION MATCH --- */
.product-media-section {
    padding: 0 8px !important;
    margin: 30px 0 !important;
}
.product-media__item {
    border-radius: 12px !important;
    margin-bottom: 8px !important;
}
.product-media__images {
    gap: 8px !important;
}

.media-overlay {
    padding: 25px 20px !important;
    background: linear-gradient(transparent, rgba(0,0,0,0.5)) !important;
}
.media-overlay__title {
    font-size: 18px !important; /* Back to larger size */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 6px !important;
    letter-spacing: 0.05em !important;
}
.media-overlay__text {
    font-size: 14px !important; /* Back to larger size */
    opacity: 1 !important;
    line-height: 1.4 !important;
}

@media (max-width: 768px) {
    .product-single__right {
        padding: 0 16px 20px 16px !important;
    }
}



/* --- FINAL MEDIA OVERLAY REFINEMENT --- */
.product-media-section {
    padding: 0 6px !important; /* Move media closer to screen edges */
    margin: 25px 0 !important;
}

.product-media__item {
    border-radius: 10px;
    margin-bottom: 8px;
}

.product-media__images {
    gap: 8px;
}

.media-overlay {
    position: absolute;
    bottom: 15px !important;
    left: 15px !important;
    right: 15px !important;
    text-align: left !important;
    padding: 0 !important;
    background: none !important; /* Remove dark background if it blocks video */
    background: linear-gradient(transparent, rgba(0,0,0,0.2)) !important; /* Very subtle for readability */
}

.media-overlay__title {
    font-size: 11px !important; /* Much smaller text */
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 2px !important;
    letter-spacing: 0.08em !important;
    color: #fff !important;
}

.media-overlay__text {
    font-size: 9px !important; /* Tiny, elegant text */
    opacity: 0.85 !important;
    line-height: 1.2 !important;
    color: #fff !important;
    max-width: 80%; /* Don't cover the whole width */
}

/* Ensure no global padding is pushing the media sections in */
@media (max-width: 768px) {
    .section, .shopify-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}



/* --- VERTICAL FULL-WIDTH MEDIA LAYOUT --- */
.product-media-section {
    padding: 0 4px !important;
    margin: 30px 0 !important;
}

.product-media__images {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.product-media__item {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5; /* Matches the vertical feel */
    border-radius: 12px !important;
    overflow: hidden;
}
.product-media__item img, .product-media__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    background: none !important; /* Remove the "weird shadow" gradient */
    padding: 20px !important;
    bottom: 0 !important;
    left: 0 !important;
    text-align: left !important;
}

.media-overlay__title {
    font-size: 14px !important;
    font-weight: 700 !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important; /* Extremely subtle for legibility without being a "weird shadow" */
}

.media-overlay__text {
    font-size: 11px !important;
    max-width: 90% !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}



/* --- REVIEWS 1:1 MATCH --- */
.reviews-section {
    padding: 40px 20px;
    background: #fff;
}

.reviews-summary-centered {
    text-align: center;
    max-width: 400px;
    margin: 0 auto 40px;
}

.reviews-rating-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 5px;
}
.rating-score {
    font-size: 18px;
    font-weight: 600;
}
.rating-stars, .review-item-stars {
    display: flex;
    gap: 2px;
}
.rating-stars svg, .review-item-stars svg {
    width: 14px;
    height: 14px;
    fill: #000;
}

.average-rating-label {
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: #666;
    margin-bottom: 25px;
}

.reviews-actions-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn--wide-pill {
    width: 100%;
    border-radius: 100px;
    border: 1px solid #000;
    background: #f9f9f9;
    padding: 14px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-transform: uppercase;
}

.reviews-sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 12px;
}
.reviews-total-count {
    color: #000;
}
.reviews-sort-dropdown {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-row {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.review-row:last-child {
    border-bottom: none;
}

.review-author-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 2px;
}
.review-verified-tag {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.05em;
    margin-bottom: 15px;
}

.review-stars-date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.review-date {
    font-size: 11px;
    color: #999;
}

.review-body-text {
    font-size: 13px;
    line-height: 1.5;
    color: #333;
}



/* --- GLOBAL SPACING TIGHTENING --- */
.reviews-section {
    padding-bottom: 20px !important;
}

.related-products-section {
    margin-top: 20px !important;
    padding-top: 0 !important;
}

.related-products__header {
    margin-bottom: 20px !important;
}

/* Ensure no excessive bottom padding on the last section */
main#MainContent section:last-of-type {
    margin-bottom: 40px !important;
}
