/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Font Size Variables */
    --font-size-xs: 0.875rem;    /* 14px */
    --font-size-sm: 1rem;         /* 16px */
    --font-size-base: 1.125rem;   /* 18px */
    --font-size-lg: 1.25rem;      /* 20px */
    --font-size-xl: 1.5rem;       /* 24px */
    --font-size-2xl: 1.75rem;     /* 28px */
    --font-size-3xl: 2rem;        /* 32px */
    --font-size-4xl: 2.5rem;      /* 40px */
    --font-size-5xl: 3rem;        /* 48px */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    font-weight: 400;
    font-size: var(--font-size-sm);
    letter-spacing: normal;
}

/* Global link hover effect */
a:hover {
    color: #173B35 !important;
    transition: color 0.3s ease;
}

/* Horizontal Ticker */
.horizontal-ticker {
    background-color: #173B35;
    color: white;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}

.horizontal-ticker__container {
    display: flex;
    white-space: nowrap;
    position: relative;
    will-change: transform;
    align-items: center;
    height: 100%;
}

.horizontal-ticker__item {
    flex-shrink: 0;
    margin: 8px;
    margin-right: 40px;
    font-size: var(--font-size-base);
    font-weight: bold;
    white-space: nowrap;
    display: flex;
    align-items: center;
    height: 100%;
}

/* Responsive Ticker */
@media (max-width: 768px) {
    .horizontal-ticker__item {
        font-size: var(--font-size-sm);
        margin: 0 30px;
    }
}

@media (max-width: 480px) {
    .horizontal-ticker__item {
        font-size: var(--font-size-xs);
        margin: 0 20px;
    }
}

/* Header */
.header {
    background-color: white;
    border-bottom: 1px solid #f0f0f0;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    margin-bottom: 5px;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Three parts layout with logo centered */
@media (min-width: 992px) {
    .header__container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .header__menu {
        justify-self: flex-start;
        min-width: 350px;
    }
    
    .header__logo {
        justify-self: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .header__icons {
        justify-self: flex-end;
    }
}

.header__menu-button {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__logo img {
    width: 220px;
    height: 88px;
    object-fit: contain;
}

.header__menu {
    display: flex;
}

.header__menu-list {
    display: flex;
    list-style: none;
    gap: 16px;
    flex-wrap: nowrap;
}

/* Remove forced line break for last item */
.header__menu-list li:last-child {
    flex-basis: auto;
    margin-top: 0;
}

.header__menu-item {
    text-decoration: none;
    color: #333;
    font-weight: 400;
    font-size: 0.9rem;
    line-height: 1.4;
    letter-spacing: normal;
    transition: color 0.3s ease;
    white-space: nowrap;
    padding: 8px 0;
}

.header__menu-item:hover {
    color: #173B35;
}

.header__menu-item.active {
    color: #e74c3c;
    font-weight: bold;
}

.header__icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header__icon {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s ease;
    position: relative;
}

.header__icon:hover {
    color: #173B35;
}

/* Cart count indicator */
.header__cart-count {
    position: absolute;
    bottom: 1px;
    right: -4px;
    background-color: #173B35;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    font-weight: normal;
    min-width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    line-height: 1;
    text-align: center;
}

.header__cart-count:empty {
    display: none;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .header__cart-count {
        bottom: 3px;
        right: -2px;
        font-size: 9px;
        min-width: 14px;
        height: 14px;
        padding: 0 3px;
        line-height: 1;
        text-align: center;
    }
}

.icon {
    width: 24px;
    height: 24px;
}

/* Section Divider */
.section-divider {
    color: #173B35;
    margin: 0;
    width: 100%;
    height: 25px;
    display: block;
    vertical-align: top;    
}

/* Responsive Header */
@media (max-width: 992px) {
    .header__menu {
        display: none;
    }
    
    .header__menu-button {
        display: block;
    }
}

@media (max-width: 480px) {
    .header__container {
        padding: 20px;
    }
    
    .header__logo img {
        max-height: 40px;
    }
    
    .header__icons {
        gap: 10px;
    }
    
    .icon {
        width: 20px;
        height: 20px;
    }
    
    .section-divider {
        height: 12.5px;
        margin: 0;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Columns */
.page-width {
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.section-template--24667397259538__custom_columns_LgDAwA-padding {
    width: 100%;
    padding: 40px 0 30px 0;
    background-color: #173B35;
    margin: 0;
    box-sizing: border-box;
}

.custom-columns {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto 1fr;
    gap: var(--desktop-column-gap);
    align-items: var(--desktop-vertical-alignment);
    box-sizing: border-box;
    padding: 0 20px;
}

.custom-columns__column {
    padding: 0;
    text-align: center;
}

@media (max-width: 768px) {
    .custom-columns {
        grid-template-columns: 1fr;
        gap: var(--mobile-column-gap);
        align-items: var(--mobile-vertical-alignment);
    }
    
    .custom-columns__column {
        grid-column: 1;
    }
    
    .section-template--24667397259538__custom_columns_LgDAwA-padding {
        padding: 20px 0;
    }
}

@media (min-width: 769px) {
    .custom-columns__column:nth-child(1) {
        grid-column: 1 / -1;
        grid-row: 1;
    }
    .custom-columns__column:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
    }
    .custom-columns__column:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }
    .custom-columns__column:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
    }
}

.custom-columns__block {
    margin-bottom: 10px;
}

.custom-columns__title {
    font-size: var(--font-size-3xl);
    font-weight: bold;
    text-align: center;
    margin-bottom: 5px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.title-with-highlight {
    position: relative;
    display: inline-block;
    text-decoration: none;
}

.title-with-highlight::after {
    content: none;
}

.title-with-highlight strong {
    text-decoration: none;
    display: inline-block;
    text-align: center;
    color: white;
}

.icons-with-text__icon-item {
    text-align: center;
}

.icons-with-text__icon__text {
    padding-bottom: 30px;
}

.icons-with-text__icon__title {
    font-size: var(--font-size-lg);
    font-weight: bold;
    margin-bottom: 10px;
    color: #ffffff;
}

.rte p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 15px;
}

/* Image Styles */
.product-info__image-block {
    text-align: center;
    display: inline-block;
    width: fit-content;
}

.media {
    display: inline-block;
    position: relative;
    width: fit-content;
    height: auto;
}

.media img {
    max-width: calc(100% - 35px);
    height: auto;
    border-radius: var(--border-radius, 0);
    margin: 0;
}

.ratio {
    position: relative;
    width: fit-content;
    height: auto;
    padding-bottom: 0;
}

.ratio img {
    position: static;
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0;
}

/* Animation Styles */
.animate-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-item--child {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Center Alignment */
.center {
    text-align: center;
}

.mobile-center {
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-center {
        text-align: center;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: normal;
    color: #2c3e50;
}

h1 {
    font-size: var(--font-size-4xl);
}

h2 {
    font-size: var(--font-size-3xl);
}

h3 {
    font-size: var(--font-size-xl);
}

h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
}

h5 {
    font-size: var(--font-size-base);
    font-weight: 600;
}

h6 {
    font-size: var(--font-size-sm);
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: normal;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #e74c3c;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: var(--font-size-base);
    line-height: 1.2;
    letter-spacing: normal;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: white;
}

.benefits .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-item h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Product Card Section */
.product-card {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.product-card__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.product-card__image {
    flex: 0 0 600px;
    text-align: center;
}

.product-card__image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0;
    position: static;
    animation: none;
    transform: none;
    opacity: 1;
}

.product-card__info {
    flex: 1;
    padding-top: 10px;
}

.product-card__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #000000;
    margin-bottom: 18px;
    line-height: 1.2;
    letter-spacing: normal;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.product-card__price-current {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #173B35;
    /* background-color: #173B35; */
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: normal;
}

.product-card__price-original {
    font-size: var(--font-size-base);
    font-weight: 400;
    color: black;
    text-decoration: line-through;
    letter-spacing: normal;
}

.product-card__price-saving {
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: white;
    background-color: #173B35;
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: normal;
}

.product-card__quantity {
    margin-bottom: 25px;
}

.product-card__quantity label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #000000;
    font-size: var(--font-size-sm);
}

.quantity-selector {
    display: flex;
    align-items: center;
    width: fit-content;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: bold;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e0e0e0;
}

.quantity-btn--decrease {
    border-radius: 4px 0 0 4px;
}

.quantity-btn--increase {
    border-radius: 0 4px 4px 0;
}

.quantity-input {
    width: 54px;
    height: 36px;
    border: 1px solid #ddd;
    border-left: none;
    border-right: none;
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.quantity-input:focus {
    outline: none;
    border-color: #e74c3c;
}

.product-card__add-to-cart {
    display: block;
    width: 100%;
    padding: 13px;
    background-color: #173B35;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: var(--font-size-sm);
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

.product-card__add-to-cart:hover {
    background-color: #0f2a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(23, 59, 53, 0.3);
}

.product-card__view-details {
    display: inline-block;
    color: #173B35;
    text-decoration: none;
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: color 0.3s ease;
}

.product-card__view-details:hover {
    color: #173B35;
    text-decoration: underline;
}

/* Responsive Product Card */
@media (max-width: 992px) {
    .product-card__wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .product-card__image {
        flex: 0 0 auto;
        max-width: 360px;
    }
    
    .product-card__title {
        font-size: 2rem;
    }
    
    .product-card__price {
        justify-content: center;
    }
    
    .quantity-selector {
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .product-card {
        padding: 40px 0;
    }
    
    .product-card__wrapper {
        padding: 20px;
    }
    
    .product-card__image {
        max-width: 300px;
    }
    
    .product-card__title {
        font-size: 1.8rem;
    }
    
    .product-card__price {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Product Description Section */
.product-description {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.product-description .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.description-item {
    text-align: center;
}

.description-item h2 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

/* Call to Action Section */
.cta {
    padding: 80px 0;
    background-color: #e74c3c;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta .btn {
    background-color: white;
    color: #e74c3c;
}

.cta .btn:hover {
    background-color: #f8f9fa;
    color: #c0392b;
}

.cta-secondary {
    background-color: #3498db;
}

/* Product Details Section */
.product-details {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.product-details h2 {
    color: #e74c3c;
    margin-bottom: 2rem;
}

.product-details ul {
    list-style: none;
    margin: 2rem 0;
}

.product-details li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Testimonial Section */
.testimonial {
    padding: 80px 0;
    background-color: #f9f9f9;
    text-align: center;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial h3 {
    margin-bottom: 1rem;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background-color: white;
}

.comparison h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #e74c3c;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #e74c3c;
    color: white;
    padding: 20px;
}

.table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background-color: #f9f9f9;
}

.column {
    text-align: center;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.faq h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #e74c3c;
}

.faq-item {
    background-color: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Shopping Confidence Section */
.shopping-confidence {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.shopping-confidence h2 {
    margin-bottom: 2rem;
    color: #e74c3c;
}

.confidence-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 3rem;
}

.confidence-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.confidence-item h3 {
    color: #3498db;
    margin-bottom: 1rem;
}

/* Mood Benefits Section */
.mood-benefits {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.mood-benefits__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mood-benefits__left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.mood-benefits__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.mood-benefits__subtitle {
    font-size: var(--font-size-base);
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mood-benefits__list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mood-benefits__item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mood-benefits__item-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mood-benefits__item-description {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.6;
    padding-left: 28px;
}

.mood-benefits__right {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
}

.mood-benefits__trust {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.mood-benefits__button {
    width: auto;
    min-width: 250px;
    display: inline-block;
}

/* Supporting Women Section */
.supporting-women {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.supporting-women__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.supporting-women__left {
    position: relative;
}

.supporting-women__image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.supporting-women__image img {
    width: 100%;
    height: auto;
    display: block;
}

.supporting-women__badge {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #ff6b8b;
    color: white;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    font-size: var(--font-size-sm);
    z-index: 10;
}

.supporting-women__product {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: auto;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.supporting-women__product img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.supporting-women__features {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 15px;
    border-radius: 8px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    z-index: 15;
}

.supporting-women__feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: var(--font-size-xs);
    color: #333;
}

.supporting-women__feature-icon {
    font-size: var(--font-size-lg);
    margin-bottom: 5px;
}

.supporting-women__right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.supporting-women__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    display: flex;
    align-items: center;
    gap: 10px;
}

.supporting-women__subtitle {
    font-size: var(--font-size-base);
    color: #666;
    line-height: 1.6;
}

.supporting-women__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.supporting-women__list-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--font-size-sm);
    color: #333;
    line-height: 1.5;
}

.supporting-women__description {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.6;
}

.supporting-women__trust {
    font-size: var(--font-size-sm);
    color: #333;
    font-weight: 500;
    margin-top: 10px;
}

.supporting-women__button {
    margin-top: 10px;
}

/* Product Features Section */
.product-features {
    padding: 80px 0;
    background-color: #F2F2F2;
}

/* Hailey Bieber Testimonial Section */
.hailey-testimonial {
    padding: 80px 0;
    background-color: #F2F2F2;
}

.hailey-testimonial__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hailey-testimonial__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hailey-testimonial__video {
    position: relative;
}

.hailey-testimonial__video-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hailey-testimonial__video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
}

.hailey-testimonial__video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.hailey-testimonial__video-overlay:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.hailey-testimonial__play-button {
    transition: transform 0.3s ease;
}

.hailey-testimonial__video-overlay:hover .hailey-testimonial__play-button {
    transform: scale(1.1);
}

/* Internal Video Play Button Styles */
.internal-video__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 20;
    pointer-events: auto;
}

video {
    cursor: pointer;
    pointer-events: auto;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 10;
}

.internal-video {
    position: relative;
    width: 100%;
    height: auto;
    cursor: pointer;
}

.internal-video__play.hidden {
    display: none;
}

.internal-video {
    position: relative;
    width: 100%;
    height: auto;
}

.play-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 0.9);
}

.color-accent-1 {
    color: #173B35;
}

.icon-play {
    width: 20px;
    height: 28px;
    fill: currentColor;
}

.hailey-testimonial__video-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background-color: #ff6b8b;
    color: white;
    padding: 10px 20px;
    border-radius: 0 25px 25px 0;
    font-weight: 600;
    font-size: 1rem;
    z-index: 10;
}

.hailey-testimonial__text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.hailey-testimonial__title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
}

.hailey-testimonial__subtitle {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.hailey-testimonial__description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.hailey-testimonial__button {
    margin-top: 20px;
    align-self: flex-start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hailey-testimonial__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hailey-testimonial__title {
        font-size: 1.8rem;
    }
    
    .hailey-testimonial__button {
        align-self: center;
    }
}

.product-features__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-features__title {
    text-align: center;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #333;
    margin-bottom: 60px;
    line-height: 1.2;
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-features__item {
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-features__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-features__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-features__item-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.product-features__item-description {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.6;
}

/* Image With Text Styles */
.image-with-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.image-with-text__media {
    text-align: center;
}

.image-with-text__media img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.image-with-text__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.image-with-text__heading {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin-bottom: 10px;
}

.image-with-text__text {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: #666;
}

.image-with-text__text p {
    color: #666;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: 15px;
}

.image-with-text__text h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #333;
    margin: 20px 0 10px 0;
}

.image-with-text__text strong {
    font-weight: 600;
    color: white;
}

.button--primary {
    display: inline-block;
    padding: 13px 30px;
    background-color: #173B35;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    text-align: center;
    border: none;
}

.button--primary:hover {
    background-color: #0f2a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(23, 59, 53, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 20px 0;
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: #173B35;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.faq-questions-text {
    color: #000000;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: 600;
    color: #333;
    padding: 16px 0;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
    z-index: 1;
    background-color: white;
}

.faq-question:hover {
    color: #173B35;
}

.faq-question:focus {
    outline: 2px solid #173B35;
    outline-offset: 2px;
    border-radius: 4px;
}

.faq-question::after {
    content: '';
    width: 12px;
    height: 7px;
    background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' class='icon icon-caret' viewBox='0 0 10 6'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z' fill='%23666'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.faq-question.active::after {
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' class='icon icon-caret' viewBox='0 0 10 6'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.354.646a.5.5 0 00-.708 0L5 4.293 1.354.646a.5.5 0 00-.708.708l4 4a.5.5 0 00.708 0l4-4a.5.5 0 000-.708z' fill='%23173B35'%3E%3C/path%3E%3C/svg%3E");
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0;
    margin: 0;
    background-color: white;
    border-top: 1px solid #f0f0f0;
}

.faq-answer.active {
    max-height: 500px;
    transition: max-height 0.6s ease-in-out;
    padding: 20px 0;
}

.faq-answer p {
    margin: 12px 0;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: #555;
}

.faq-answer ul {
    list-style-type: disc;
    padding-left: 24px;
    margin: 12px 0;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: var(--font-size-sm);
    line-height: 1.6;
    color: #555;
}

.faq-item:first-child {
    border-top: 1px solid #e0e0e0;
}

/* Accessibility */
.faq-question {
    position: relative;
}

.faq-question:focus-within {
    background-color: #f5f9f7;
}

/* Animation improvements */
.faq-answer {
    will-change: max-height;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
}

.content-and-comparison-table {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: row;
    gap: 40px;
    align-items: center;
}

.content-container {
    flex: 1;
    text-align: left;
}

.comparison-table-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.content-container h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.highlight-text {
    color: #125040;
}

.regular-text {
    color: #000000;
}

.comparison-table-container {
    display: flex;
    justify-content: center;
}

.comparison-table {
    width: 100%;
    max-width: 800px;
    border-collapse: collapse;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table th {
    padding: 15px;
    text-align: center;
    border: none;
}

.comparison-table tbody {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.comparison-table__logo {
    padding: 20px;
    font-size: 1.6rem;
}

.comparison-table__logo img {
    max-width: 100%;
    height: auto;
}

.comparison-table__others {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.comparison-table__row-name {
    font-weight: 600;
    background-color: #173B35;
    color: white;
}

.highlighted-cell {
    background-color: #173B35;
    color: white;
}

.regular-cell {
    background-color: white;
}

.comparison-table__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin: 0 auto;
}

.comparison-table__icon svg {
    width: 22.5px;
    height: 22.5px;
    color: var(--icon-color, currentColor);
}

.comparison-table__icon {
    background-color: transparent;
}

/* Color classes */
.color-accent-1 {
    background-color: #173B35;
    color: white;
}

.color-background-1 {
    background-color: white;
}

/* Flex center utility */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop and mobile center classes */
.desktop-center {
    text-align: center;
}

.mobile-center {
    text-align: center;
}

/* Animation classes */
.animate-item {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.animate-item--child {
    animation-delay: 0.2s;
}

.index-0 {
    animation-delay: 0s;
}

.index-1 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    h3 {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .benefits, .product-description, .cta, .product-details, .testimonial, .comparison, .faq, .shopping-confidence, .mood-benefits, .comparison-section {
        padding: 60px 0;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .table-header, .table-row {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .table-header .column:first-child, .table-row .column:first-child {
        margin-bottom: 10px;
    }
    
    .mood-benefits__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mood-benefits__title {
        font-size: 1.8rem;
    }
    
    .mood-benefits__trust {
        font-size: 1.5rem;
    }
    
    .mood-benefits__right {
        align-items: center;
        text-align: center;
    }
    
    .content-and-comparison-table {
        flex-direction: column;
        padding: 0 15px;
    }
    
    .content-container {
        text-align: center;
    }
    
    .content-container h2 {
        font-size: 1.8rem;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .comparison-table__logo img {
        max-width: 80px;
    }

    
    .comparison-table__icon {
        width: 45px;
        height: 45px;
    }
    
    .comparison-table__icon svg {
        width: 22.5px;
        height: 22.5px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    p {
        font-size: 1rem;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    .benefits, .product-description, .cta, .product-details, .testimonial, .comparison, .faq, .shopping-confidence, .mood-benefits {
        padding: 40px 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .benefit-item, .confidence-item {
        padding: 20px;
    }
    
    .mood-benefits__title {
        font-size: 1.5rem;
    }
    
    .mood-benefits__trust {
        font-size: 1.3rem;
    }
    
    .mood-benefits__button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .supporting-women__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .supporting-women__title {
        font-size: 1.8rem;
    }
    
    .supporting-women__product {
        width: 120px;
        bottom: -20px;
        right: -20px;
    }
}

@media (max-width: 480px) {
    .supporting-women__features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .supporting-women__title {
        font-size: 1.5rem;
    }
    
    .supporting-women__product {
        width: 100px;
        bottom: -15px;
        right: -15px;
    }
    
    .product-features__title {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    
    .product-features__grid {
        gap: 30px;
    }
    
    .product-features__item {
        padding: 20px;
    }
    
    .image-with-text {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .image-with-text__heading {
        font-size: 1.8rem;
    }
}

/* Shop with Confidence Section */
.shop-confidence {
    padding: 60px 0;
    background-color: white;
    text-align: center;
    border-top: 1px solid #e0e0e0;
}

.shop-confidence__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.shop-confidence__title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.shop-confidence__subtitle {
    font-size: var(--font-size-base);
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.shop-confidence__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.shop-confidence__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.shop-confidence__item:hover {
    transform: translateY(-5px);
}

.shop-confidence__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin-bottom: 20px;
    color: #173B35;
    font-size: var(--font-size-xl);
    transition: all 0.3s ease;
}

.shop-confidence__item:hover .shop-confidence__icon {
    background-color: #173B35;
    color: white;
}

.shop-confidence__icon svg {
    width: 24px;
    height: 24px;
}

.shop-confidence__item-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.3;
}

.shop-confidence__item-description {
    font-size: var(--font-size-sm);
    color: #666;
    line-height: 1.6;
    max-width: 250px;
}

        /* Waves Animation */
        .waves-animated-1 {
            position: relative;
            width: 100%;
            height: 40px;
            margin-bottom: -7px;
            min-height: 40px;
            max-height: 150px;
        }

        .parallax1 > use,
        .parallax2 > use,
        .parallax3 > use,
        .parallax4 > use {
            animation: move-forever 10s linear infinite;
        }

        @keyframes move-forever {
            0% {
                transform: translate3d(-90px, 0, 0);
            }
            100% {
                transform: translate3d(90px, 0, 0);
            }
        }

        .parallax2 > use {
            animation-delay: -2s;
            animation-duration: 15s;
        }

        .parallax3 > use {
            animation-delay: -4s;
            animation-duration: 20s;
        }

        .parallax4 > use {
            animation-delay: -6s;
            animation-duration: 25s;
        }

        /* Footer Styles */
        .footer {
            background-color: #173b35;
            color: white;
            padding: 40px 0;
            font-family: 'Inter', sans-serif;
        }

        .footer__container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .footer__content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-bottom: 40px;
            padding-top: 40px;
        }

        .footer__column {
            flex: 1;
            min-width: 300px;
            margin-bottom: 30px;
        }

        .footer__heading {
            font-size: var(--font-size-lg);
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            color: #ffffff;
        }

        .footer__subheading {
            font-size: var(--font-size-sm);
            font-weight: 500;
            margin: 20px 0 10px;
        }

        .footer__text {
            font-size: var(--font-size-sm);
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer__list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer__link {
            color: white;
            text-decoration: none;
            font-size: var(--font-size-sm);
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .footer__link:hover {
            color: white !important;
            text-decoration: underline;
        }

        .footer strong {
            color: white;
        }

        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .footer__payment {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        .footer__payment > div {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
            align-items: center;
        }

        .footer__payment ul {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer__payment li {
            display: flex;
            align-items: center;
        }

        .footer__payment img {
            height: 30px;
            object-fit: contain;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .footer__payment > div {
                gap: 8px;
            }
            
            .footer__payment ul {
                gap: 8px;
            }
        }

        @media (max-width: 480px) {
            .footer__payment > div {
                gap: 6px;
            }
            
            .footer__payment ul {
                gap: 6px;
            }
        }

        .footer__copyright {
            font-size: var(--font-size-xs);
            text-align: center;
        }

        .footer__chat {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .footer__chat-button {
            background-color: black;
            color: white;
            border: none;
            border-radius: 50px;
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: var(--font-size-sm);
            font-weight: 500;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .footer__chat-button:hover {
            background-color: #333333;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        @media (max-width: 768px) {
            .footer__content {
                flex-direction: column;
            }

            .footer__column {
                width: 100%;
            }

            .footer__bottom {
                flex-direction: column;
                align-items: flex-start;
            }

            .footer__payment {
                margin-bottom: 15px;
            }

            .footer__chat-button {
                padding: 12px 16px;
                font-size: 13px;
            }
        }

/* Real Women Results Section */
.real-women-results {
    padding: 80px 0;
    background-color: white;
    text-align: center;
}

.real-women-results__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
}

.real-women-results__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.real-women-results__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0;
}

.real-women-results__stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
    min-height: 400px;
}

.real-women-results__stat {
    display: flex;
    align-items: center;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 20px;
}

.real-women-results__stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.real-women-results__circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    background: conic-gradient(#173B35 0deg, #173B35 var(--percentage), transparent var(--percentage), transparent 360deg);
}

.real-women-results__circle::after {
    content: '';
    position: absolute;
    width: 54px;
    height: 54px;
    background-color: white;
    border-radius: 50%;
}

.real-women-results__percentage {
    font-size: 1.2rem;
    font-weight: 700;
    color: #173B35;
    position: relative;
    z-index: 1;
}

/* Set percentages for each circle */
.real-women-results__stat:nth-child(1) .real-women-results__circle {
    --percentage: 334.8deg; /* 93% */
}

.real-women-results__stat:nth-child(2) .real-women-results__circle {
    --percentage: 320.4deg; /* 89% */
}

.real-women-results__stat:nth-child(3) .real-women-results__circle {
    --percentage: 309.6deg; /* 86% */
}

.real-women-results__stat:nth-child(4) .real-women-results__circle {
    --percentage: 327.6deg; /* 91% */
}

.real-women-results__text {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    flex: 1;
}

.real-women-results__cta {
    margin-top: auto;
    text-align: center;
}

.real-women-results__button {
    background-color: #173B35;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.real-women-results__button:hover {
    background-color: #0f2a25;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(23, 59, 53, 0.3);
}

/* Responsive Real Women Results */
@media (max-width: 992px) {
    .real-women-results__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .real-women-results__title {
        text-align: center;
    }
    
    .real-women-results__stats {
        align-items: center;
    }
    
    .real-women-results__stat {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .real-women-results {
        padding: 60px 0;
    }
    
    .real-women-results__container {
        padding: 0 20px;
    }
    
    .real-women-results__title {
        font-size: 2rem;
    }
    
    .real-women-results__circle {
        width: 50px;
        height: 50px;
    }
    
    .real-women-results__percentage {
        font-size: 1.2rem;
    }
    
    .real-women-results__text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .real-women-results {
        padding: 40px 0;
    }
    
    .real-women-results__title {
        font-size: 1.8rem;
    }
    
    .real-women-results__circle {
        width: 45px;
        height: 45px;
        margin-right: 15px;
    }
    
    .real-women-results__percentage {
        font-size: 1.1rem;
    }
    
    .real-women-results__button {
        padding: 12px 30px;
        font-size: 0.9rem;
    }
}

/* Responsive Shop with Confidence */
@media (max-width: 768px) {
    .shop-confidence {
        padding: 40px 0;
    }
    
    .shop-confidence__title {
        font-size: 1.8rem;
    }
    
    .shop-confidence__subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .shop-confidence__items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .shop-confidence__icon {
        width: 50px;
        height: 50px;
    }
    
    .shop-confidence__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .shop-confidence__item-title {
        font-size: 1.2rem;
    }
    
    .shop-confidence__item-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .shop-confidence {
        padding: 30px 0;
    }
    
    .shop-confidence__title {
        font-size: 1.5rem;
    }
    
    .shop-confidence__subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .shop-confidence__items {
        gap: 25px;
    }
    
    .shop-confidence__icon {
        width: 45px;
        height: 45px;
    }
    
    .shop-confidence__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .shop-confidence__item-title {
        font-size: 1.1rem;
    }
    
    .shop-confidence__item-description {
        font-size: 0.9rem;
    }
}

/* Product Card Slider */
.product-card__slider {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    justify-content: center;
}

.title-wrapper-with-link {
    text-align: center;
}

.slider-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background-color: #f8f9fa;
    border-color: #173B35;
}

.slider-container {
    flex: 1;
    overflow: hidden;
    position: relative;
    min-width: 0;
}

.slider-track {
    display: flex;
    gap: 15px;
    transition: transform 0.3s ease;
}

.slider-item {
    flex: 0 0 33.333%;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: translateY(-5px);
}

.slider-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

/* Happy Customers Slider Specific Styles */
.happy-customers-slider {
    overflow-x: auto;
    padding-bottom: 20px;
    display: block;
}

.happy-customers-slider .slider-container {
    width: 100%;
    overflow-x: auto;
}

.happy-customers-slider .slider-track {
    display: flex;
    gap: 15px;
    min-width: max-content;
}

.happy-customers-slider .slider-item {
    width: 414px;
    flex-shrink: 0;
}

.happy-customers-slider .slider-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Simple FAQ Section */
.simple-faq {
    margin: 0 0 40px 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.simple-faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.simple-faq-item:last-child {
    border-bottom: none;
}

.simple-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #000000;
    padding: 16px 20px;
    background-color: #ffffff;
    transition: all 0.2s ease;
    position: relative;
}

.simple-faq-question:hover {
    background-color: #f8f9fa;
    color: #173B35;
}

.simple-faq-question::after {
    content: '+';
    font-size: 18px;
    font-weight: 300;
    transition: transform 0.2s ease;
    color: #666;
}

.simple-faq-question.active::after {
    content: '−';
    transform: rotate(0deg);
    color: #173B35;
}

.simple-faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background-color: #fafafa;
}

.simple-faq-answer.active {
    max-height: 500px;
    padding: 20px;
    transition: max-height 0.4s ease-in, padding 0.3s ease;
}

.simple-faq-answer p {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.simple-faq-answer ul {
    margin: 12px 0;
    padding-left: 20px;
    list-style-type: none;
}

.simple-faq-answer li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

/* Responsive design */
@media (max-width: 768px) {
    .simple-faq {
        margin: 30px 0;
        border-radius: 6px;
    }
    
    .simple-faq-question {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .simple-faq-answer {
        padding: 0 16px;
    }
    
    .simple-faq-answer.active {
        padding: 16px;
    }
    
    .simple-faq-answer p,
    .simple-faq-answer li {
        font-size: 13px;
    }
    
    /* Responsive Slider */
    .slider-item {
        flex: 0 0 50%;
    }
    
    .product-card__slider {
        padding: 15px 0;
    }
    
    .slider-btn {
        width: 36px;
        height: 36px;
    }
}
