:root {
    --primary-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --brand-dark: #2a2a2a;
    --brand-purple: #4a2a5e;
    /* Placeholder purple */
    --accent-gold: #c5a968;
    --border-color: #e5e5e5;
    --notification-bg: #3b303e;

    /* Typography */
    --font-heading-family: "New York", Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    --font-heading-style: normal;
    --font-heading-weight: 400;

    --font-body-family: "DM Sans", sans-serif;
    --font-body-style: normal;
    --font-body-weight: 400;
    --font-body-weight-bold: 700;

    --btn-color: #3e3640;
    /* Dark button color from image */
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body-family);
    color: var(--text-dark);
    line-height: 1.5;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: #00b67a;
}

/* Notification Bar */
.notification-bar {
    background-color: var(--notification-bg);
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header */
.main-header {
    padding: 20px 0;
    border-bottom: 1px solid transparent;
}

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

.logo-text {
    font-family: var(--font-heading-family);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-icons {
    display: flex;
    gap: 20px;
}

.header-icons a {
    color: var(--text-dark);
    font-size: 18px;
}

/* Product Page Layout */
.product-page {
    padding-top: 50px;
    padding-bottom: 100px;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* Gallery */
.product-gallery {
    position: relative;
}

.main-image {
    position: relative;
    width: 100%;
}

.main-image img {
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
    cursor: pointer;
    user-select: none;
    pointer-events: auto;
}

.thumbnails {
    display: flex;
    gap: 15px;
    justify-content: center;
    /* Centered thumbnails per design might be better left aligned, but image shows centered-ish below main */
}

.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid transparent;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.thumb.active,
.thumb:hover {
    border-color: var(--text-dark);
    opacity: 1;
}

/* Mobile Gallery Slider Controls */
.gallery-slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.gallery-arrow {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all 0.3s ease;
    font-size: 14px;
    color: var(--text-dark);
    margin: 0 10px;
}

.gallery-arrow:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.gallery-dot.active {
    background: var(--text-dark);
}

.gallery-dot:hover {
    background: #999;
}

/* Hide mobile slider controls on desktop */
@media (min-width: 769px) {
    .gallery-slider-arrows {
        display: none !important;
    }

    .gallery-dots {
        display: none !important;
    }
}

/* Product Details */
.product-title {
    font-family: var(--font-heading-family);
    font-size: 32px;
    font-weight: 400;
    /* Serif often looks better lighter */
    margin-bottom: 20px;
    color: var(--text-dark);
    line-height: 1.2;
}

.benefit-list {
    list-style: none;
    margin-bottom: 25px;
}

.benefit-list li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.benefit-list i {
    color: #b08d55;
    /* Gold-ish checkmark color */
}

.price-display {
    font-family: var(--font-heading-family);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.regular-price {
    text-decoration: line-through;
    color: #999;
    font-size: 22px;
    font-weight: 400;
}

.current-price {
    color: var(--text-dark);
}

/* Bundle Selector */
.bundle-section {
    margin-bottom: 30px;
}

.bundle-header {
    text-align: center;
    position: relative;
    margin-bottom: 25px;
}

.bundle-header:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e5e5;
    z-index: 1;
}

.bundle-header span {
    background: white;
    padding: 0 15px;
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.bundle-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bundle-option {
    display: block;
    border: 1px solid var(--border-color);
    padding: 15px;
    cursor: pointer;
    border-radius: 4px;
    /* Slight roundness */
    transition: all 0.2s;
}

.bundle-option:hover {
    border-color: #bbb;
}

/* Hide default radio */
.bundle-option input[type="radio"] {
    display: none;
}

.bundle-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bundle-option input:checked+.bundle-content .radio-circle {
    border-color: var(--text-dark);
    border-width: 2px;
}

.radio-circle .dot {
    width: 10px;
    height: 10px;
    background: var(--text-dark);
    border-radius: 50%;
    display: none;
}

.bundle-option input:checked+.bundle-content .radio-circle .dot {
    display: block;
}

/* Selected state for the whole box */
.bundle-option input:checked~.bundle-content,
.bundle-option:has(input:checked) {
    border-color: var(--text-dark);
    border-width: 2px;
    margin: -1px;
    /* Offset border width change to prevent jump */
}

/* Fallback for :has if not supported broadly enough (it is mostly now, but just in case) */
.bundle-option.active-bundle {
    border: 2px solid var(--text-dark);
    padding: 14px;
    /* Adjust padding to match border size change */
}


.bundle-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.bundle-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 16px;
}

.bundle-sub {
    font-size: 13px;
    color: var(--text-light);
}

.bundle-price {
    text-align: right;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 12px;
    font-weight: 400;
}

/* Add to Cart */
.add-to-cart-btn {
    width: 100%;
    background-color: var(--btn-color);
    color: white;
    border: none;
    padding: 18px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 20px;
    transition: opacity 0.2s;
    display: block;
    text-align: center;
    text-decoration: none;
}

.add-to-cart-btn:hover {
    opacity: 0.9;
}

/* Trust Badges */
/* Trustpilot Card */
.trustpilot-card {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 30px;
    font-family: 'Inter', sans-serif;
    /* Explicitly ensure sans-serif */
}

.tp-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.tp-logo {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.tp-verified {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background-color: #00b67a;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulsing-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgba(0, 182, 122, 0.6);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

.tp-rating-row {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.tp-stars {
    display: flex;
    gap: 2px;
    margin-right: 10px;
}

.tp-stars .fa-star {
    color: white;
    background-color: #00b67a;
    padding: 3px;
    font-size: 10px;
    /* Adjust to match blocky star look if needed, FontAwesome usually is just icon */
    /* To approximate the green square stars from Trustpilot: */
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    /* Boxy */
}

/* FontAwesome usually isn't a box. Let's make it a box with the star inside */
.tp-stars .fa-star {
    background: #00b67a;
    color: white;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


.tp-score {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    margin-right: auto;
    /* Push "Excellent" to right? No, image shows it split */
}

/* Looking at image again:
Left: Stars + "4.8 out of 5"
Right: "Excellent"
*/
.tp-rating-row {
    display: grid;
    grid-template-columns: auto auto 1fr;
    /* layout is tricky from text description alone without proper grid, looking at image:
    Row is: [Stars] [4.8 out of 5] ............. [Excellent]
    */
    display: flex;
    justify-content: space-between;
}

.tp-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Let's refactor HTML slightly in next step if layout is complex, but flex space-between works if I wrap them */
/* Wait, in my HTML I put them all in one row. 
   [Stars] [Score] [Status] is what I wrote.
   Let's use flexbox to push Status to right if needed, but the image shows:
   Top: Trustpilot ..... Verified
   Mid: [Stars] 4.8 out of 5 ..... Excellent
   Bot: Based on ...
*/

.tp-score {
    margin-left: 10px;
}

.tp-status {
    margin-left: auto;
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
}

.tp-footer {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 5px;
}


/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 15px 0;
    font-family: var(--font-heading-family);
    font-size: 18px;
    cursor: pointer;
    color: var(--text-dark);
}

.accordion-content {
    /* Initially hidden logic in JS or CSS display none */
    display: none;
    padding-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

/* Active class for accordion */
.accordion-item.active .accordion-content {
    display: block;
}

.accordion-item.active .accordion-header .fa-chevron-down {
    transform: rotate(180deg);
}

/* Responsive */
@media (max-width: 768px) {
    .product-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-nav,
    .header-icons {
        display: none;
        /* Hide for simple mobile mock, usually hamburger */
    }
}


/* Accordion Content Typography */
.accordion-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.accordion-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.accordion-content strong {
    font-weight: 600;
}


/* Hero Banner Section */
.hero-banner-section {
    width: 100%;
    margin: 0;
    padding: 0;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Products Section */
.products-section {
    padding: 80px 0;
    background-color: #fff;
}

.products-section-title {
    font-family: var(--font-heading-family);
    font-size: 36px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product-image {
    width: 100%;
    margin-bottom: 25px;
    background-color: #fff;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-title {
    font-family: var(--font-heading-family);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.product-shop-btn {
    display: inline-block;
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.product-shop-btn:hover {
    color: var(--brand-purple);
}

@media (max-width: 968px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .products-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .products-section {
        padding: 60px 0;
    }
    
    .products-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
}

/* Visible Results Section */
.visible-results-section {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
}

.results-title-container {
    margin-bottom: 60px;
}

.results-section-title {
    font-family: var(--font-heading-family);
    font-size: 36px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
}

.results-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide {
    width: 25%;
    flex-shrink: 0;
    padding: 0 10px;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dark);
}

.carousel-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.carousel-dot.active {
    background: var(--text-dark);
}

.carousel-dot:hover {
    background: #999;
}

@media (max-width: 768px) {
    .visible-results-section {
        padding: 60px 0;
    }
    
    .results-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .carousel-slide {
        min-width: 50%;
        padding: 0 5px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-btn-prev {
        left: 10px;
    }
    
    .carousel-btn-next {
        right: 10px;
    }
}

/* Dr. Groot Trending on Social Section */
.trending-social-section {
    padding: 80px 0;
    background-color: #fff;
    width: 100%;
}

.trending-title-container {
    margin-bottom: 60px;
}

.trending-section-title {
    font-family: var(--font-heading-family);
    font-size: 36px;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0;
    font-weight: 400;
}

.trending-carousel {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.trending-carousel-container {
    overflow: hidden;
    position: relative;
}

.trending-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.trending-carousel-slide {
    width: 25%;
    flex-shrink: 0;
    padding: 0 10px;
}

.trending-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    background: #000;
}

.trending-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 18px;
    color: var(--text-dark);
}

.trending-carousel-btn:hover {
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.trending-carousel-btn-prev {
    left: 20px;
}

.trending-carousel-btn-next {
    right: 20px;
}

.trending-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.trending-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 0;
}

.trending-carousel-dot.active {
    background: var(--text-dark);
}

.trending-carousel-dot:hover {
    background: #999;
}

@media (max-width: 768px) {
    .trending-social-section {
        padding: 60px 0;
    }
    
    .trending-section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .trending-carousel-slide {
        min-width: 50%;
        padding: 0 5px;
    }
    
    .trending-carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .trending-carousel-btn-prev {
        left: 10px;
    }
    
    .trending-carousel-btn-next {
        right: 10px;
    }
}

/* System That Works Section */
.system-works-section {
    padding: 80px 0;
    background-color: #fff;
}

.system-works-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.system-works-image {
    width: 100%;
}

.system-image {
    width: 100%;
    height: auto;
    display: block;
}

.system-works-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.system-subtitle {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    font-weight: 500;
}

.system-title {
    font-family: var(--font-heading-family);
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.system-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
}

.system-shop-btn {
    display: inline-block;
    background: var(--text-dark);
    color: white;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background 0.3s ease;
    align-self: flex-start;
}

.system-shop-btn:hover {
    background: var(--brand-purple);
}

@media (max-width: 968px) {
    .system-works-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .system-works-image {
        order: 1;
    }
    
    .system-works-content {
        order: 2;
        text-align: center;
    }
    
    .system-shop-btn {
        align-self: center;
    }
}

@media (max-width: 768px) {
    .system-works-section {
        padding: 60px 0;
    }
    
    .system-title {
        font-size: 32px;
    }
    
    .system-description {
        font-size: 15px;
    }
}

/* Real Results, Real Reviews Section */
.real-reviews-section {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
}

.real-reviews-title {
    font-family: var(--font-heading-family);
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.real-reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 60px;
}

.rating-text {
    font-size: 18px;
    color: var(--text-dark);
}

.rating-text strong {
    font-weight: 700;
}

.rating-stars {
    display: flex;
    justify-content: center;
}

.rating-stars .stars-svg {
    width: 120px;
    height: auto;
}

.reviews-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: #f7f7f7;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.review-stars {
    margin-bottom: 15px;
}

.review-stars .stars-svg {
    width: 100px;
    height: auto;
}

.review-headline {
    font-family: var(--font-heading-family);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.review-text {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-divider {
    height: 1px;
    background-color: #ddd;
    margin-bottom: 15px;
}

.reviewer-name {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

@media (max-width: 968px) {
    .reviews-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .real-reviews-section {
        padding: 60px 0;
    }
    
    .real-reviews-title {
        font-size: 28px;
    }
    
    .real-reviews-rating {
        margin-bottom: 40px;
    }
    
    .reviews-cards-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Marketing Banner */
.marketing-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    text-align: center;
    background-color: #fff;
}

.section-title {
    font-family: var(--font-heading-family);
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 50px;
    letter-spacing: 0.5px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #f7f7f7;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.t-stars {
    margin-bottom: 15px;
    color: #4a4a4a;
    /* Dark stars per design */
    font-size: 12px;
    letter-spacing: 2px;
}

.quote-icon {
    width: 40px;
    height: 40px;
    background-color: #999;
    /* Placeholder grey for quote background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    font-size: 18px;
}

/* Adjust quote icon style to specific design if visible - usually circle with quote inside */

.t-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 25px;
    flex-grow: 1;
    /* uniform height alignment */
}

.t-author {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-dark);
}

@media (max-width: 900px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
}



/* Results Banner */
.results-banner img {
    width: 100%;
    height: auto;
    display: block;
}

/* Brand Story Section */
.brand-story-section {
    padding: 80px 0;
    background-color: #fff;
    /* or match texture from image if any, looks white/light */
}

.brand-story-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.brand-text {
    padding-right: 20px;
}

.brand-text .section-title {
    text-align: left;
    font-size: 36px;
    /* Slightly larger per design */
    line-height: 1.2;
    margin-bottom: 25px;
}

.brand-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.brand-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .brand-story-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .brand-text {
        padding-right: 0;
    }

    .brand-text .section-title {
        text-align: center;
    }
}


/* Customer Reviews Section */
.customer-reviews-section {
    padding: 60px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.reviews-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.reviews-title {
    font-family: var(--font-heading-family);
    font-size: 32px;
    font-weight: 400;
    color: var(--text-dark);
}

.write-review-btn {
    background-color: #2a2a2a;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
}

.reviews-summary {
    display: flex;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.rs-rating,
.rs-rec {
    display: flex;
    flex-direction: column;
}

.rs-score,
.rs-percent {
    font-family: var(--font-heading-family);
    font-size: 36px;
    line-height: 1;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.rs-stars {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.rs-count,
.rs-text {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.review-item {
    display: grid;
    grid-template-columns: 200px 1fr 150px;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.review-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.review-item-hidden {
    display: none;
}

.load-more-container {
    text-align: center;
    margin: 40px 0;
}

.load-more-reviews-btn {
    background: var(--text-dark);
    color: white;
    border: none;
    padding: 12px 40px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
}

.load-more-reviews-btn:hover {
    background: #333;
}

.ri-user-col .ri-stars {
    font-size: 12px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.ri-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.ri-meta {
    font-size: 12px;
    color: #666;
    margin-bottom: 3px;
}

.ri-verified {
    font-size: 11px;
    color: #666;
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ri-verified i {
    color: #00b67a;
    /* Green check */
}

.ri-title {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.ri-body {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.ri-rec-msg {
    font-size: 13px;
    color: #666;
    font-style: italic;
}

.ri-helpful-col {
    text-align: right;
}

.helpful-label {
    display: block;
    font-size: 12px;
    color: #666;
    margin-bottom: 10px;
}

.helpful-btns {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.helpful-btns button {
    background: white;
    border: 1px solid #ccc;
    padding: 5px 10px;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

@media (max-width: 768px) {
    .review-item {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .ri-helpful-col {
        text-align: left;
    }

    .helpful-btns {
        justify-content: flex-start;
    }
}


/* Footer */
.site-footer {
    background-color: #3b303e;
    /* Dark purple from image */
    color: #e5e5e5;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    font-family: var(--font-heading-family);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 60px;
    color: white;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    display: block;
}

.newsletter-box h3 {
    font-family: var(--font-heading-family);
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    font-weight: 400;
}

.newsletter-box p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.email-input-group {
    position: relative;
    max-width: 300px;
}

.email-input-group input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 4px;
}

.email-input-group button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

.address-col p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-email i {
    margin-right: 8px;
}

.policies-col h3 {
    font-family: var(--font-heading-family);
    color: white;
    font-size: 18px;
    margin-bottom: 25px;
}

.policies-col ul {
    list-style: none;
}

.policies-col li {
    margin-bottom: 12px;
}

.policies-col a {
    color: #e5e5e5;
    text-decoration: none;
    transition: color 0.2s;
}

.policies-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 11px;
    opacity: 0.6;
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-container>div {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

/* --- RESPONSIVE STYLES --- */

/* Tablet (1024px and down) */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }

    .product-title {
        font-size: 28px;
    }

    .price-display {
        font-size: 24px;
    }
}

/* Mobile (768px and down) */
@media (max-width: 768px) {

    /* Header: Show icons, Stack layout */
    .main-header .header-content {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        display: none;
        /* Hide text nav, keep logo and icons */
    }

    .header-icons {
        display: flex !important;
        /* Force show icons */
        width: 100%;
        justify-content: center;
        gap: 30px;
    }

    /* Product Layout */
    .product-container {
        grid-template-columns: 1fr;
        /* Force stack */
        gap: 30px;
    }

    .product-gallery {
        width: 100%;
    }

    .main-image,
    #mainImage {
        width: 100% !important;
        height: auto;
        display: block;
        margin: 0 auto 20px;
    }

    /* Hide thumbnails on mobile */
    .thumbnails {
        display: none !important;
    }

    /* Show mobile slider controls */
    .gallery-slider-arrows {
        display: flex !important;
    }

    .gallery-dots {
        display: flex !important;
    }

    .product-details {
        text-align: center;
        /* Center align text for mobile feel */
        width: 100%;
    }

    .benefit-list li {
        justify-content: center;
    }

    .bundle-header,
    .price-display {
        text-align: center;
    }

    .bundle-price {
        align-items: center;
        /* Center price in bundle card */
    }

    /* Marketing & Footer */
    .brand-story-container,
    .footer-container,
    .testimonials-grid {
        grid-template-columns: 1fr;
        /* Ensure single column */
    }

    .footer-container {
        text-align: center;
    }

    .section-title {
        font-size: 26px !important;
    }
}

/* Page Content Styles */
.page-content {
    padding: 80px 0;
    min-height: 60vh;
}

.page-header {
    margin-bottom: 40px;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading-family);
    font-size: 42px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.page-body {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
}

.page-body h2 {
    font-family: var(--font-heading-family);
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.page-body h3 {
    font-family: var(--font-heading-family);
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-body p {
    margin-bottom: 15px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.page-body li {
    margin-bottom: 10px;
}

.page-body strong {
    font-weight: 600;
}

@media (max-width: 768px) {
    .page-content {
        padding: 60px 0;
    }

    .page-title {
        font-size: 32px;
    }

    .page-body {
        font-size: 15px;
    }

    .page-body h2 {
        font-size: 24px;
    }

    .page-body h3 {
        font-size: 20px;
    }
}