* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* html overflow removed to fix sticky scroll */

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #ffffff;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.header {
    padding: 20px 0;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 40px;
}

.logo-image {
    height: 170px;
    width: auto;
    display: block;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 20px;
    align-self: start;
    height: fit-content;
    z-index: 10;
    width: 80%;
    margin: 0 auto;
}

.main-image {
    width: 100%;
    aspect-ratio: 1;
    background-color: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.thumbnail-gallery {
    display: flex;
    align-items: center;
    gap: 10px;
}

.thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
}

.thumbnails::-webkit-scrollbar {
    display: none;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

.thumbnail:hover {
    border-color: #d4c5e0;
}

.thumbnail.active {
    border-color: #6b4d7a;
}

.nav-btn {
    background: white;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background-color: #f5f5f5;
}

/* Product Info */
.product-info {
    padding: 10px 0;
}

.product-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.rating {
    margin-bottom: 15px;
}

.star {
    color: #ffd700;
    font-size: 20px;
}

.price-section {
    margin-bottom: 20px;
}

.price-section .shipping {
    margin-top: 8px;
    display: table;
    /* Force new line behavior if needed, or keeping it inline-block with top margin works if parent is block */
}

.price {
    font-size: 32px;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.shipping {
    display: inline-block;
    background: linear-gradient(90deg, #00C853, #00E676, #00C853);
    background-size: 200% auto;
    color: white;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 2px 5px rgba(0, 200, 83, 0.4);
    animation: shine 3s linear infinite;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.viewing {
    font-size: 14px;
    color: #333;
}

.stock-info {
    margin-bottom: 25px;
}

.stock-info p {
    font-size: 14px;
    margin-bottom: 8px;
}

.progress-bar {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    border: 1px solid #d4c5e0;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    width: 10%;
    height: 100%;
    background-color: #6b4d7a;
    border-radius: 4px;
}

/* Instruction Text */
.selection-instruction {
    background: linear-gradient(135deg, #fab547 0%, #f89e17 100%);
    color: #ffffff;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    border: 2px solid #FFB74D;
    font-size: 16px;
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(230, 81, 0, 0.15);
}

/* Quantity Options */
.quantity-options {
    margin-bottom: 25px;
}

.option {
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option:hover {
    border-color: #b8a5c9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.option.selected {
    border-color: #6b4d7a;
    background-color: #f9f7fb;
}

/* Best offer styling removed - will only show when selected */

.badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background-color: #6b4d7a;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.quantity-label {
    font-weight: 600;
    font-size: 16px;
}

.option-price {
    font-weight: 700;
    font-size: 20px;
    color: #6b4d7a;
}

.treatment-info {
    color: #4caf50;
    font-size: 13px;
}

.discount-info {
    color: #4caf50;
    font-size: 13px;
    font-weight: 500;
}

/* Buy Button */
.buy-button {
    width: 100%;
    background: linear-gradient(135deg, #00E676 0%, #00C853 100%);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 200, 83, 0.3);
}

.buy-button:hover {
    background: linear-gradient(135deg, #00C853 0%, #009624 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.5);
}

.buy-button:active {
    transform: translateY(0);
}

/* Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

/* Product Description */
.product-description {
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    border-top: 1px solid #e5e5e5;
}

.description-title {
    font-size: 26px;
    font-weight: 700;
    color: #6b4d7a;
    line-height: 1.4;
    margin-bottom: 20px;
}

.description-text {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 16px;
}

/* Animated Rollers Section - Full Width */
.rollers-section {
    margin: 0;
    width: 100%;
    max-width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
}

.roller {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 15px 0;
    position: relative;
}

.roller-top {
    background-color: #dacdeb;
    margin-bottom: 2px;
}

.roller-bottom {
    background-color: #dacdeb;
}

.roller-track {
    display: flex;
    width: fit-content;
}

.roller-content {
    display: flex;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
}

.roller-item {
    color: #5a3d66;
    font-size: 14px;
    font-weight: 600;
    padding: 0 20px;
    display: inline-block;
    white-space: nowrap;
}

.roller-separator {
    color: rgba(255, 255, 255, 0.5);
    padding: 0 10px;
    display: inline-block;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

/* Premium Features Section */
.premium-features {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
    max-width: 900px;
    margin: 0 auto;
}

.features-image {
    width: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
}

.features-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(107, 77, 122, 0.15);
}

.features-content {
    width: 100%;
}

.features-title {
    font-size: 32px;
    font-weight: 700;
    color: #6b4d7a;
    line-height: 1.3;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    text-align: center;
}

.features-subtitle {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 500;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f9f7fb 0%, #ffffff 100%);
    border: 1px solid #e5dded;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(107, 77, 122, 0.12);
    border-color: #d4c5e0;
}

.feature-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-text h3 {
    font-size: 17px;
    font-weight: 700;
    color: #6b4d7a;
    margin-bottom: 6px;
    line-height: 1.3;
}

.feature-text p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.features-footer {
    font-size: 18px;
    color: #6b4d7a;
    font-weight: 600;
    line-height: 1.6;
    padding: 24px;
    background: linear-gradient(135deg, #dacdeb 0%, #d2b9f3 100%);
    color: #6b4d7a;
    border-radius: 12px;
    text-align: center;
}

/* Before/After Results Section */
.results-section {
    background: linear-gradient(135deg, #f9f7fb 0%, #ffffff 100%);
    padding: 60px 0;
    margin: 0;
}

.results-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #6b4d7a;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 12px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.results-subtitle {
    font-size: 20px;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 20px rgba(107, 77, 122, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    border: 2px solid #f0f0f0;
}

.result-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(107, 77, 122, 0.2);
    border-color: #d4c5e0;
}

.result-image {
    width: 100%;
    aspect-ratio: 3/2;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-title {
    font-size: 19px;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin: 20px 20px 16px 20px;
    line-height: 1.3;
}

.result-benefits {
    list-style: none;
    padding: 0 20px 20px 20px;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.result-benefits li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.result-benefits svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.result-benefits span {
    flex: 1;
}

/* Science Section */
.science-section {
    padding: 60px 0;
    text-align: center;
}

.science-title {
    font-size: 28px;
    font-weight: 700;
    color: #6b4d7a;
    line-height: 1.4;
    margin-bottom: 30px;
    text-transform: uppercase;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.science-content {
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.science-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.science-icons-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.science-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 160px;
}

.science-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.science-item span {
    font-size: 13px;
    font-weight: 600;
    color: #6b4d7a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .product-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    body {
        overflow-x: hidden;
    }

    .container {
        padding: 0 20px;
        overflow: hidden;
        /* Safety net */
    }

    .product-info {
        text-align: left;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        box-sizing: border-box;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    .buy-box {
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        box-sizing: border-box;
        width: 100%;
    }

    .social-proof {
        justify-content: left;
    }

    .rating {
        justify-content: left;
        display: flex;
        gap: 5px;
    }

    .quantity-options {
        width: 100%;
        text-align: left;
        /* Keep options structure readable */
    }

    .progress-bar {
        width: 100%;
        /* Correcting 200% which causes overflow */
        height: 10px;
        background-color: #f0f0f0;
        border: 1px solid #d4c5e0;
        border-radius: 6px;
        overflow: hidden;
        margin-bottom: 20px;
    }

    .progress-fill {
        width: 23%;
        height: 100%;
        background-color: #6b4d7a;
    }

    .product-images {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 350px;
        margin: 0 auto 30px auto;
    }

    .product-title {
        font-size: 20px;
    }

    .price {
        font-size: 28px;
    }

    .option-price {
        font-size: 18px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .logo-image {
        height: auto;
        width: 60%;
        margin: 0 auto;
        display: block;
    }

    .product-description {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .description-title {
        font-size: 20px;
        text-align: center;
        max-width: 100%;
    }

    .description-text {
        font-size: 14px;
        text-align: center;
        max-width: 100%;
    }

    .features-footer {
        font-size: 16px;
        padding: 20px;
    }

    .results-section {
        padding: 40px 0;
        margin: 0;
    }

    .results-main-title {
        font-size: 20px;
        padding: 0 10px;
    }

    .results-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 10px;
    }

    .result-title {
        font-size: 20px;
        margin: 15px 15px 10px 15px;
    }

    .result-benefits {
        padding: 0 15px 20px 15px;
    }

    .result-benefits li {
        font-size: 14px;
        gap: 10px;
    }

    .result-benefits svg {
        width: 18px;
        height: 18px;
    }

    .roller-item {
        font-size: 12px;
        padding: 0 15px;
    }

    /* Science Section Responsive */
    .science-section {
        padding: 40px 0;
    }

    .science-title {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 25px;
    }

    .science-content p {
        font-size: 15px;
    }

    .science-icons-grid {
        gap: 30px;
    }

    .science-item {
        width: 130px;
    }

    .science-icon {
        width: 60px;
        height: 60px;
    }

    .science-icon svg {
        width: 40px;
        height: 40px;
    }

    .science-item span {
        font-size: 11px;
    }

    /* Comparison Section Responsive */
    .comparison-section {
        padding: 40px 0;
    }

    .comparison-title {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .comparison-grid {
        display: flex;
        /* Horizontal Scroll on Mobile */
        overflow-x: auto;
        gap: 15px;
        padding: 10px 20px 30px 20px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        /* Bleed to edges */
        width: calc(100% + 40px);
    }

    .comparison-card {
        min-width: 260px;
        /* Fixed width for scroll */
        scroll-snap-align: center;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .comparison-card.featured {
        transform: scale(1);
        border: none;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 60px 0;
    background: #fff;
}

.comparison-title {
    font-size: 32px;
    font-weight: 700;
    color: #6b4d7a;
    text-align: center;
    line-height: 1.3;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: stretch;
}

.comparison-card {
    background: #f9f9f9;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.comparison-card.featured {
    background: #bd9eff;
    /* Lighter purple for background */
    border: 1px solid #6b4d7a;
    transform: scale(1.05);
    /* Slight pop */
    box-shadow: 0 10px 30px rgba(107, 77, 122, 0.25);
    z-index: 2;
}

.card-header {
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid #e5e5e5;
    background: white;
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.comparison-card.featured .card-header {
    background: #6b4d7a;
    border-bottom: none;
}

.product-img-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: flex-end;
    /* Align bottom */
    justify-content: center;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #4CAF50;
    color: white;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    transform: rotate(15deg);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.price-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #9d2626;
    /* Dark red */
    color: white;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    transform: rotate(15deg);
}

.product-name {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
}

.comparison-card.featured .product-name {
    color: white;
    font-size: 18px;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.comparison-list li {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    /* Divider lines */
    font-size: 14px;
    color: #555;
    gap: 10px;
    flex: 1;
    /* Distribute height evenly */
}

.comparison-card.featured .comparison-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    /* White text on purple bg */
    font-weight: 500;
}

.comparison-list li:last-child {
    border-bottom: none;
}

.icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.comparison-card.featured .comparison-list {
    background: #bd9eff;
    /* Match card bg */
}

/* Adjust gradients for Featured Card to match image style */
.comparison-card.featured {
    background: #bd9eff;
}

.comparison-card.featured .card-header {
    background: #bd9eff;
}

/* Women 50+ Love Section */
.love-section {
    padding: 80px 0;
    text-align: center;
    background: #fdfdfd;
}

.love-title {
    font-size: 28px;
    font-weight: 700;
    color: #6b4d7a;
    line-height: 1.3;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.love-title span {
    font-weight: 400;
    font-size: 24px;
    color: #666;
    text-transform: none;
    display: block;
    margin-top: 10px;
}

.love-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.love-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.love-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.love-item-title {
    font-size: 18px;
    font-weight: 700;
    color: #6b4d7a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.love-item-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    max-width: 350px;
}

@media (max-width: 768px) {
    .love-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 15px;
    }

    .love-title {
        font-size: 22px;
    }

    .love-title span {
        font-size: 18px;
    }
}

/* Guarantee Section */
.guarantee-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #eee;
}

.guarantee-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.guarantee-media {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.guarantee-seal {
    max-width: 300px;
    width: 100%;
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }

    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }

    100% {
        transform: scale(1);
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
}

.guarantee-text {
    flex: 1;
}

.guarantee-title {
    font-size: 32px;
    color: #6b4d7a;
    font-weight: 800;
    margin-bottom: 15px;
}

.guarantee-subtitle {
    font-size: 18px;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.guarantee-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 15px;
}

.guarantee-features {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    margin: 30px 0;
}

.g-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
}

.g-feature:last-child {
    margin-bottom: 0px;
}

.check-icon {
    color: #6b4d7a;
    font-weight: bold;
    font-size: 18px;
}

.guarantee-highlight {
    background: #f3eef8;
    color: #6b4d7a;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    border-left: 4px solid #6b4d7a;
}

@media (max-width: 768px) {
    .guarantee-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .guarantee-media {
        flex: auto;
    }

    .guarantee-seal {
        max-width: 220px;
    }

    .guarantee-features,
    .guarantee-highlight {
        text-align: left;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section-title {
    text-align: center;
    font-size: 28px;
    color: #6b4d7a;
    font-weight: 700;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    background: #dacdeb;
    /* Dark purple brand color */
    color: #5a3f68;
    padding: 18px 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #5a3f68;
    color: #dacdeb;
}

.faq-question span {
    font-size: 20px;
    font-weight: 400;
    width: 20px;
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    background: #f9f9f9;
    color: #555;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust based on content */
    padding: 20px 25px;
}

.faq-item.active .faq-question {
    background: #5a3f68;
    color: #dacdeb;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
    display: inline-block;
    transition: transform 0.3s;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.rating-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stars-large {
    color: #6b4d7a;
    font-size: 28px;
    letter-spacing: 2px;
}

.rating-text {
    font-size: 16px;
    color: #555;
    font-weight: 500;
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(107, 77, 122, 0.1);
    border-color: #d4c5e0;
}

.testimonial-stars {
    color: #6b4d7a;
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-author {
    margin-bottom: 10px;
}

.author-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
    display: block;
    margin-bottom: 4px;
}

.review-title {
    font-weight: 600;
    color: #6b4d7a;
    font-size: 14px;
    display: block;
}

.review-content {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

/* Developer Reply */
.dev-reply {
    background-color: #f9f7fb;
    border-radius: 8px;
    padding: 15px;
    border-left: 3px solid #6b4d7a;
}

.reply-header {
    font-size: 13px;
    font-weight: 700;
    color: #6b4d7a;
    margin-bottom: 8px;
    display: block;
}

.reply-content {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: white;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:hover {
    border-color: #6b4d7a;
    color: #6b4d7a;
}

.page-btn.active {
    background-color: #6b4d7a;
    color: white;
    border-color: #6b4d7a;
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 24px;
    }
}

/* Small Devices (Galaxy S8+, etc) */
@media (max-width: 380px) {
    .container {
        padding: 0 15px;
    }

    .product-title {
        font-size: 18px;
    }

    .price {
        font-size: 24px;
    }

    .option-price {
        font-size: 16px;
    }
}