.charmstar-home {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    overflow: hidden;
    background: #fffaf5;
    color: #1d1d1f;
}

.cs-hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.cs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 250, 245, 0.94) 0%,
        rgba(255, 250, 245, 0.72) 42%,
        rgba(255, 250, 245, 0.12) 100%
    );
}

.cs-hero-content {
    position: relative;
    z-index: 2;
    width: min(3200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 96px 0;
}

.cs-kicker {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.2;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #9a6b55;
    font-weight: 700;
}

.cs-hero h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(48px, 7.6vw, 108px);
    line-height: 0.92;
    letter-spacing: -0.065em;
    color: #171717;
}

.cs-hero-text {
    max-width: 540px;
    margin: 28px 0 36px;
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.55;
    color: #51483f;
}

.cs-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cs-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cs-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cs-button-dark {
    background: #1d1d1f;
    color: #ffffff;
}

.cs-button-light {
    background: rgba(255, 255, 255, 0.78);
    color: #1d1d1f;
    border: 1px solid rgba(29, 29, 31, 0.14);
}

.cs-section {
    width: min(3200px, calc(100% - 48px));
    margin: 0 auto;
    padding: 110px 0;
}

.cs-section h2,
.cs-wide h2 {
    max-width: 820px;
    margin: 0 0 22px;
    font-size: clamp(38px, 5.2vw, 74px);
    line-height: 0.98;
    letter-spacing: -0.055em;
    color: #171717;
}

.cs-section p,
.cs-wide p {
    max-width: 760px;
    font-size: 18px;
    line-height: 1.72;
    color: #5d554f;
}

.cs-intro {
    padding-bottom: 76px;
}

.cs-products {
    padding-top: 72px;
}

.cs-section-header {
    margin-bottom: 42px;
}

.cs-product-area {
    min-height: 120px;
}

.cs-empty-products {
    padding: 34px;
    border-radius: 24px;
    background: #f3eee8;
    color: #5d554f;
}

.cs-fallback-products {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.cs-fallback-card {
    display: grid;
    gap: 12px;
    text-decoration: none;
    color: #1d1d1f;
}

.cs-fallback-image {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f3eee8;
    border-radius: 24px;
}

.cs-fallback-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cs-fallback-card:hover .cs-fallback-image img {
    transform: scale(1.045);
}

.cs-fallback-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.cs-fallback-price {
    font-size: 15px;
    font-weight: 700;
    color: #9a6b55;
}

.cs-story {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 78px;
    align-items: start;
}

.cs-story-text p:first-child {
    margin-top: 0;
}

.cs-wide {
    width: 100%;
    margin: 0;
}

.cs-wide-inner {
    width: min(3200px, calc(100% - 48px));
    margin: 0 auto;
}

.cs-why {
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.86) 0, rgba(255, 255, 255, 0) 34%),
        #f4e8dd;
}

.cs-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 46px;
}

.cs-why-card {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(29, 29, 31, 0.08);
    border-radius: 28px;
    padding: 30px;
    min-height: 230px;
}

.cs-why-card span {
    display: inline-flex;
    margin-bottom: 34px;
    color: #9a6b55;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.cs-why-card h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #171717;
}

.cs-why-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
}

.cs-faq {
    padding-bottom: 120px;
}

.cs-faq-list {
    margin-top: 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.cs-faq details {
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    padding: 24px 0;
}

.cs-faq summary {
    cursor: pointer;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #171717;
}

.cs-faq details p {
    margin: 16px 0 0;
    max-width: 760px;
    font-size: 16px;
    line-height: 1.68;
}

@media (max-width: 1024px) {
    .cs-hero {
        min-height: 780px;
        background-position: center;
    }

    .cs-fallback-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cs-story {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cs-why-grid {
        grid-template-columns: 1fr;
    }

    .cs-why-card {
        min-height: auto;
    }
}

@media (max-width: 680px) {
    .cs-hero {
        min-height: 700px;
        align-items: flex-start;
        background-position: center bottom;
    }

    .cs-hero-overlay {
        background: linear-gradient(
            180deg,
            rgba(255, 250, 245, 0.96) 0%,
            rgba(255, 250, 245, 0.76) 46%,
            rgba(255, 250, 245, 0.14) 100%
        );
    }

    .cs-hero-content {
        width: min(100% - 32px, 1180px);
        padding: 72px 0 48px;
    }

    .cs-hero h1 {
        font-size: clamp(44px, 15vw, 70px);
    }

    .cs-hero-text {
        font-size: 16px;
        margin: 22px 0 28px;
    }

    .cs-hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .cs-button {
        width: 100%;
        max-width: 260px;
    }

    .cs-section,
    .cs-wide-inner {
        width: min(100% - 32px, 1180px);
    }

    .cs-section {
        padding: 76px 0;
    }

    .cs-section h2,
    .cs-wide h2 {
        font-size: clamp(36px, 12vw, 54px);
    }

    .cs-section p,
    .cs-wide p {
        font-size: 16px;
    }

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

    .cs-why {
        padding: 78px 0;
    }

    .cs-why-card {
        border-radius: 24px;
        padding: 26px;
    }

    .cs-faq summary {
        font-size: 18px;
    }
}