﻿/* ── Hero Section ── */
.hero-section {
    background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 50%, #FFF9FB 100%);
    padding: 8rem 2rem 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 40%;
    height: 120%;
    background: radial-gradient(circle, rgba(208, 143, 168, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #666666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header__subtitle {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: rgba(208, 143, 168, 0.1);
    color: #D08FA8;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.section-header__description {
    font-size: 1.125rem;
    color: #666666;
    max-width: 700px;
    margin: 0 auto;
}

/* ── Filter Bar ── */
.filter-bar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem 0;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #E8E8E8;
    background: #FFFFFF;
    color: #666666;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #D08FA8;
    color: #D08FA8;
}

.filter-btn.active {
    border-color: #D08FA8;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
}

/* ── Products Section ── */
.products-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem 6rem;
}

/* ── Featured Product Spotlight (single product) ── */
.featured-product {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: linear-gradient(135deg, #FFFFFF 0%, #FFF5F8 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 2px 4px rgba(208, 143, 168, 0.08),
        0 8px 32px rgba(208, 143, 168, 0.14),
        0 24px 64px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    max-width: 1060px;
    margin: 0 auto;
    border: 1px solid rgba(208, 143, 168, 0.18);
}

.featured-product:hover {
    transform: translateY(-10px);
    box-shadow:
        0 2px 4px rgba(208, 143, 168, 0.08),
        0 16px 48px rgba(208, 143, 168, 0.26),
        0 40px 80px rgba(0, 0, 0, 0.09);
}

.featured-product__image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #FFF0F5 0%, #FCDDE8 100%);
    min-height: 500px;
}

.featured-product__image-wrapper::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    background: radial-gradient(circle at 55% 55%, rgba(208, 143, 168, 0.18) 0%, transparent 60%);
    z-index: 0;
}

.featured-product__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product:hover .featured-product__image {
    transform: scale(1.06);
}

.featured-product__badges {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.featured-product__content {
    padding: 3.5rem 4rem 3.5rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    position: relative;
}

.featured-product__content::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 3px;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(208, 143, 168, 0.6) 30%,
        rgba(208, 143, 168, 0.6) 70%,
        transparent 100%);
    border-radius: 2px;
}

.featured-product__label {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(208, 143, 168, 0.12);
    color: #C07898;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 1.25rem;
}

.featured-product__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A1A;
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin: 0 0 1.25rem;
}

.featured-product__description {
    font-size: 1rem;
    color: #777777;
    line-height: 1.8;
    margin: 0 0 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(208, 143, 168, 0.2);
}

.featured-product__price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.featured-product__price-current {
    font-size: 3.25rem;
    font-weight: 800;
    color: #D08FA8;
    letter-spacing: -1.5px;
    line-height: 1;
}

.featured-product__price-original {
    font-size: 1.375rem;
    color: #BBBBBB;
    text-decoration: line-through;
}

.featured-product__meta {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.featured-product__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.4rem 0.875rem;
    background: rgba(208, 143, 168, 0.08);
    border: 1px solid rgba(208, 143, 168, 0.2);
    border-radius: 50px;
    color: #B5708A;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-product__shipping {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 1.75rem;
}

.featured-product__shipping svg {
    flex-shrink: 0;
}

.featured-product__actions {
    display: flex;
    gap: 0.875rem;
    flex-wrap: wrap;
}

.featured-product__btn-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.125rem 2.25rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(208, 143, 168, 0.4);
    flex: 1;
    min-width: 180px;
}

.featured-product__btn-cart:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(208, 143, 168, 0.55);
}

.featured-product__btn-view {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.125rem 1.75rem;
    background: transparent;
    color: #D08FA8;
    border: 2px solid rgba(208, 143, 168, 0.45);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.featured-product__btn-view:hover {
    background: rgba(208, 143, 168, 0.06);
    border-color: #D08FA8;
    transform: translateY(-2px);
}

/* ── Products Grid (multiple products) ── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: block;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.product-card__image-wrapper {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF9FB 0%, #F5F5F5 100%);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__badges {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: flex-start;
}

.badge {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge--featured {
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
}

.badge--sale {
    background: #DC3545;
    color: #FFFFFF;
}

.badge--new {
    background: #28A745;
    color: #FFFFFF;
}

.product-card__content {
    padding: 1.5rem;
}

.product-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.5rem;
}

.product-card__description {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-card__price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.product-card__price-current {
    font-size: 1.75rem;
    font-weight: 800;
    color: #D08FA8;
}

.product-card__price-original {
    font-size: 1.25rem;
    color: #999999;
    text-decoration: line-through;
}

.product-card__meta {
    display: flex;
    gap: 1rem;
    font-size: 0.875rem;
    color: #999999;
    margin-bottom: 1.25rem;
}

.product-card__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.product-card__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(208, 143, 168, 0.4);
}

.product-card__button svg {
    flex-shrink: 0;
}

/* ── Empty State ── */
.empty-state {
    text-align: center;
    padding: 6rem 2rem;
}

.empty-state__icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: #F9F9F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D08FA8;
}

.empty-state__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 1rem;
}

.empty-state__text {
    font-size: 1.125rem;
    color: #666666;
}

/* ── Benefits Section ── */
.benefits-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FB 100%);
    padding: 6rem 2rem;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(208, 143, 168, 0.2);
}

.benefit-card__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(208, 143, 168, 0.1) 0%, rgba(208, 143, 168, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D08FA8;
}

.benefit-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.benefit-card__text {
    font-size: 0.9375rem;
    color: #666666;
    line-height: 1.6;
}

/* ── How It Works Section ── */
.how-it-works {
    padding: 6rem 2rem;
    background: #FFFFFF;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 2rem;
}

.step-card__number {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(208, 143, 168, 0.3);
}

.step-card__title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.75rem;
}

.step-card__text {
    font-size: 1rem;
    color: #666666;
    line-height: 1.6;
}

/* ── What's Included Section ── */
.whats-included {
    background: linear-gradient(180deg, #FFF9FB 0%, #FFFFFF 100%);
    padding: 6rem 2rem;
}

.whats-included-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid #F0F0F0;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.pricing-card--premium {
    border-color: #D08FA8;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFF9FB 100%);
}

.pricing-card__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #F5F5F5;
    color: #666666;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.pricing-card__badge--premium {
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    color: #FFFFFF;
}

.pricing-card__title {
    font-size: 2rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.pricing-card__intro {
    font-size: 1rem;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 1.25rem;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-card__feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
    color: #1A1A1A;
    line-height: 1.6;
}

.pricing-card__feature svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    stroke: #D08FA8;
}

.pricing-card__note {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E8E8E8;
    font-size: 0.875rem;
    color: #666666;
    line-height: 1.6;
}

/* ── About Section ── */
.about-section {
    background: linear-gradient(135deg, #FFF9FB 0%, #FFFFFF 100%);
    padding: 6rem 2rem;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-section__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1A1A1A;
    margin-bottom: 1.5rem;
}

.about-section__text {
    font-size: 1.125rem;
    color: #666666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-section__highlight {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, #D08FA8 0%, #B5708A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2rem;
}

/* ── Trust Signals ── */
.trust-section {
    background: #FFFFFF;
    padding: 4rem 2rem;
    border-top: 1px solid #F0F0F0;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-item__icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(208, 143, 168, 0.1) 0%, rgba(208, 143, 168, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D08FA8;
    flex-shrink: 0;
}

.trust-item__content {
    flex: 1;
}

.trust-item__title {
    font-size: 1rem;
    font-weight: 700;
    color: #1A1A1A;
    margin-bottom: 0.25rem;
}

.trust-item__text {
    font-size: 0.875rem;
    color: #666666;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .featured-product {
        grid-template-columns: 1fr;
    }

    .featured-product__image-wrapper {
        min-height: 320px;
    }

    .featured-product__content {
        padding: 2.25rem 2rem;
    }

    .featured-product__content::before {
        display: none;
    }

    .featured-product__title {
        font-size: 2rem;
    }

    .featured-product__price-current {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-header__title {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .featured-product__actions {
        flex-direction: column;
    }

    .featured-product__btn-cart,
    .featured-product__btn-view {
        width: 100%;
        justify-content: center;
    }

    .benefits-section,
    .how-it-works,
    .about-section {
        padding: 4rem 1.5rem;
    }

    .trust-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 2rem;
    }
}