/* === Variables === */
:root {
    --color-mint: #D4E8D4;
    --color-mint-dark: #B2D8C8;
    --color-cream: #FFF8F0;
    --color-peach: #FDE8D0;
    --color-peach-dark: #F4C2C2;
    --color-accent: #E8A87C;
    --color-accent-hover: #D4956A;
    --color-text: #4A403A;
    --color-text-light: #7A706A;
    --color-white: #FFFFFF;
    --font-display: 'Cormorant Infant', serif;
    --font-body: 'Nunito', sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --shadow-sm: 0 4px 12px rgba(74, 64, 58, 0.06);
    --shadow-md: 0 8px 24px rgba(74, 64, 58, 0.10);
    --shadow-lg: 0 16px 40px rgba(74, 64, 58, 0.12);
    --transition: 0.3s ease;
}

/* === Reset & Base === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* === Layout === */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section--cream {
    background: var(--color-cream);
}

.section--highlight {
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-mint-dark) 100%);
}

.section__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--color-text);
}

.section__title--center {
    text-align: center;
}

.section__title--light {
    color: var(--color-white);
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* === Wave Dividers === */
.wave {
    position: absolute;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave svg {
    display: block;
    width: 100%;
    height: auto;
}

.wave--top {
    top: -1px;
}

.wave--bottom {
    bottom: -1px;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #FFFFFF;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
    border-radius: 2px;
}

.nav__link:hover::after {
    width: 100%;
}

.nav__link--cta {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
}

.nav__link--cta:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav__link--cta::after {
    display: none;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

/* === Hero === */
.hero {
    background: linear-gradient(135deg, var(--color-mint) 0%, #E0F0E0 100%);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

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

.hero__subtitle {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 12px;
    font-style: italic;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero__title em {
    font-style: italic;
    color: var(--color-accent);
}

.hero__text {
    font-size: 1.15rem;
    color: var(--color-text-light);
    margin-bottom: 32px;
    max-width: 440px;
}

.hero__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero__image:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 3/4;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn--secondary {
    background: var(--color-peach-dark);
    color: var(--color-text);
}

.btn--secondary:hover {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-peach-dark);
}

.btn--ghost:hover {
    background: var(--color-peach-dark);
}

/* === About === */
.about__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about__image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.about__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.about__text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.about__list {
    list-style: none;
    margin-bottom: 32px;
}

.about__list li {
    padding: 10px 0 10px 32px;
    position: relative;
    font-size: 1.05rem;
}

.about__list li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* === Benefits === */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--color-white);
    padding: 32px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-mint) 0%, var(--color-peach) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.benefit-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.benefit-card__text {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.5;
}

/* === Gallery === */
.gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 300px 300px;
    gap: 20px;
}

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.gallery__item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-md);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery__item--large {
    grid-row: span 2;
}

/* === Reviews === */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.review-card__stars {
    color: #F4C430;
    font-size: 1.2rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-card__text {
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.6;
}

.review-card__author {
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.95rem;
}

/* === About Brand === */
.about-brand__inner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-brand__text {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-brand__image {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
    padding: 40px;
    aspect-ratio: 1;
}

.about-brand__image img {
    max-width: 80%;
    opacity: 0.9;
}

/* === Order Form === */
.order-form {
    max-width: 520px;
    margin: 0 auto;
    background: var(--color-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.order-form__steps {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.step {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    background: var(--color-cream);
    color: var(--color-text-light);
    transition: var(--transition);
}

.step--active {
    background: var(--color-accent);
    color: var(--color-white);
}

.order-form__page {
    display: none;
    animation: fadeIn 0.4s ease;
}

.order-form__page--active {
    display: block;
}

.order-form__subtitle {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 24px;
    text-align: center;
}

.order-form__price {
    text-align: center;
    font-size: 1.2rem;
    margin: 20px 0;
}

.order-form__price strong {
    color: var(--color-accent);
    font-size: 1.4rem;
}

.order-form__hint {
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.order-form__nav {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.product-select {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.product-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border: 2px solid var(--color-peach);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-white);
}

.product-card:hover {
    border-color: var(--color-accent);
}

.product-card--active,
.product-card input:checked + * + * + .product-card,
.product-card:has(input:checked) {
    border-color: var(--color-accent);
    background: linear-gradient(135deg, var(--color-peach) 0%, var(--color-cream) 100%);
    box-shadow: var(--shadow-sm);
}

.product-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.product-card__title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-text);
}

.product-card__price {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-accent);
}

.order-form__delivery {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 12px 0;
    padding: 10px;
    background: var(--color-cream);
    border-radius: var(--radius-sm);
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px 0;
}

.quantity__btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-peach-dark);
    background: var(--color-white);
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity__btn:hover {
    background: var(--color-peach-dark);
}

.quantity input {
    width: 60px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    background: transparent;
    color: var(--color-text);
}

.form-field {
    display: block;
    margin-bottom: 20px;
}

.form-field span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-text);
}

.form-field input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--color-peach);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--color-white);
}

.form-field input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 4px rgba(232, 168, 124, 0.15);
}

.qr-placeholder {
    background: var(--color-cream);
    border-radius: var(--radius-md);
    padding: 40px;
    text-align: center;
    color: var(--color-text-light);
    margin-bottom: 20px;
    border: 2px dashed var(--color-peach-dark);
}

.order-form__success {
    display: none;
    text-align: center;
    padding: 40px;
}

.order-form__success h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 12px;
    color: var(--color-accent);
}

/* === Footer === */
.footer {
    background: var(--color-text);
    color: var(--color-cream);
    padding: 60px 0 30px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer__logo {
    margin-bottom: 16px;
    background: #FFFFFF;
    padding: 6px 10px;
    border-radius: 8px;
}

.footer__text {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--color-white);
}

.footer__col p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer__col a {
    color: var(--color-mint-dark);
    transition: var(--transition);
}

.footer__col a:hover {
    color: var(--color-accent);
}

.footer__copy {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 0.85rem;
    color: var(--color-text-light);
}

/* === Reveal Animations === */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === Responsive === */
@media (max-width: 992px) {
    .hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero__text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero__image {
        max-width: 400px;
        margin: 0 auto;
    }
    .about__inner,
    .about-brand__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-brand__image {
        order: -1;
        max-width: 280px;
        margin: 0 auto;
    }
    .benefits__grid,
    .reviews__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 250px 250px;
    }
    .gallery__item--large {
        grid-row: span 1;
    }
    .footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--color-white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
    }
    .nav.nav--open {
        transform: translateY(0);
        opacity: 1;
    }
    .burger {
        display: flex;
    }
    .hero {
        padding: 120px 0 100px;
    }
    .hero__title {
        font-size: 2.4rem;
    }
    .section {
        padding: 60px 0;
    }
    .section__title {
        font-size: 2rem;
    }
    .benefits__grid,
    .reviews__grid {
        grid-template-columns: 1fr;
    }
    .gallery__grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 220px);
    }
    .order-form {
        padding: 24px;
    }
    .footer__inner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__logo {
        margin: 0 auto 16px;
    }
}
