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

:root {
    --pink-light:   #fdf0f4;
    --pink-mid:     #f7d6e0;
    --pink-accent:  #e8799a;
    --pink-deep:    #c94f72;
    --beige:        #faf5f0;
    --beige-mid:    #eeddd0;
    --beige-dark:   #c4956a;
    --text-dark:    #2a1a1f;
    --text-mid:     #5c3d48;
    --text-soft:    #8a6570;
    --white:        #ffffff;
    --shadow-card:  0 4px 24px rgba(200,90,120,0.10);
    --shadow-soft:  0 2px 12px rgba(0,0,0,0.07);
    --radius:       16px;
    --radius-sm:    10px;
    --max-w:        480px;
    --font-head:    'Montserrat', sans-serif;
    --font-body:    'Nunito', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--beige);
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.page-wrapper {
    max-width: var(--max-w);
    margin: 0 auto;
    overflow: hidden;
    background: var(--white);
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.22s ease;
}

.btn--primary {
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-accent));
    color: var(--white);
    box-shadow: 0 6px 20px rgba(200,79,114,0.40);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,79,114,0.50); }
.btn--primary:active { transform: translateY(0); }

.btn--outline {
    background: transparent;
    border: 2px solid var(--pink-deep);
    color: var(--pink-deep);
}
.btn--outline:hover { background: var(--pink-light); }

.btn--full { border-radius: 12px; }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
    padding: 48px 20px;
    background: var(--white);
}
.section:nth-child(odd) { background: var(--pink-light); }

.section__label {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--pink-accent);
    text-align: center;
    margin-bottom: 8px;
}
.section__title {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.25;
    margin-bottom: 16px;
}
.section__desc {
    font-size: 14px;
    color: var(--text-mid);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 20px;
}
.section__note {
    font-size: 13px;
    color: var(--text-soft);
    text-align: center;
    margin-top: 16px;
    font-style: italic;
}
.section__img {
    border-radius: var(--radius);
    margin-bottom: 24px;
    width: 100%;
    height: auto;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    background: linear-gradient(180deg, #fdf0f4 0%, #fff5f8 60%, var(--white) 100%);
    padding: 32px 20px 40px;
    text-align: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pink-mid);
    color: var(--pink-deep);
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero__title {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    text-align: center;
}

.hero__sub {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 28px;
    line-height: 1.6;
    text-align: center;
}

.hero__product {
    position: relative;
    margin-bottom: 24px;
}

.hero__product-img {
    border-radius: var(--radius);
    width: 100%;
    height: auto;
}

.hero__discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--pink-deep), #e85c8a);
    color: var(--white);
    font-family: var(--font-head);
    font-size: 18px;
    font-weight: 800;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(200,79,114,0.45);
    z-index: 2;
}

.hero__stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-soft);
    margin-bottom: 20px;
    text-align: center;
}
.hero__stock strong { color: var(--pink-deep); }

/* ============================================
   PRICE BLOCK
   ============================================ */
.price-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}
.price-block__old {
    text-align: center;
    opacity: 0.55;
}
.price-block__old .price-block__label { font-size: 10px; color: var(--text-soft); display: block; margin-bottom: 2px; }
.price-block__old .old {
    font-family: var(--font-head);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-mid);
    text-decoration: line-through;
}
.price-block__arrow {
    color: var(--pink-accent);
    font-size: 26px;
}
.price-block__new {
    text-align: center;
}
.price-block__new .price-block__label { font-size: 10px; color: var(--pink-accent); font-weight: 700; display: block; margin-bottom: 2px; }
.price-block__new .new {
    font-family: var(--font-head);
    font-size: 38px;
    font-weight: 800;
    color: var(--pink-deep);
}

/* ============================================
   TIMER
   ============================================ */
.timer-wrap {
    background: var(--pink-mid);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    margin-bottom: 20px;
    text-align: center;
}
.timer-wrap__label {
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-head);
}
.timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.timer__cell {
    text-align: center;
}
.timer__digits {
    background: var(--white);
    border-radius: 8px;
    padding: 8px 14px;
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--pink-deep);
    min-width: 58px;
    display: flex;
    justify-content: center;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(200,79,114,0.12);
}
.timer__unit {
    font-size: 10px;
    color: var(--text-soft);
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.timer__sep {
    font-family: var(--font-head);
    font-size: 22px;
    font-weight: 800;
    color: var(--pink-accent);
    margin-bottom: 14px;
}

.timer--sm .timer__digits { font-size: 18px; min-width: 48px; padding: 6px 10px; }
.timer--sm .timer__sep { font-size: 18px; }

/* ============================================
   BEFORE / AFTER
   ============================================ */
.ba-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}
.ba-wrap--single {
    display: block;
}
.ba-single-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    object-fit: contain;
}
.ba-card {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.ba-card__img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}
.ba-card__tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
}
.ba-card__tag--after {
    background: var(--pink-deep);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}
.benefit {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px;
    box-shadow: var(--shadow-soft);
}
.section:nth-child(odd) .benefit { background: var(--white); }

.benefit__icon {
    width: 44px;
    height: 44px;
    background: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-deep);
    flex-shrink: 0;
}
.benefit__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.benefit__text strong {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.benefit__text span {
    font-size: 12px;
    color: var(--text-soft);
}

/* ============================================
   HOW TO USE - STEPS
   ============================================ */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--pink-mid);
    position: relative;
}
.step:last-child { border-bottom: none; }

.step__num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--pink-deep), var(--pink-accent));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
}
.step__text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 4px;
}
.step__text strong {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.step__text span {
    font-size: 12px;
    color: var(--text-soft);
}

/* ============================================
   SPECS
   ============================================ */
.specs-table {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--beige-mid);
    margin-bottom: 24px;
}
.specs-row {
    display: flex;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--beige-mid);
}
.specs-row:last-child { border-bottom: none; }
.specs-row:nth-child(even) { background: var(--pink-light); }

.specs-row__key {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-mid);
    min-width: 120px;
    flex-shrink: 0;
}
.specs-row__val {
    font-size: 12px;
    color: var(--text-dark);
}

.shades-block {
    margin-bottom: 24px;
    text-align: center;
}
.shades-block__title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-dark);
}
.shades {
    display: flex;
    justify-content: center;
    gap: 24px;
}
.shade {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.shade__circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.shade span {
    font-size: 11px;
    color: var(--text-mid);
    font-weight: 600;
    max-width: 72px;
    text-align: center;
    line-height: 1.3;
}

/* ============================================
   REVIEWS
   ============================================ */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}
.review-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--pink-mid);
}
.review-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.review-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--pink-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pink-deep);
    flex-shrink: 0;
}
.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.review-card__info strong {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.review-card__info span {
    font-size: 11px;
    color: var(--text-soft);
}
.review-card__stars {
    display: flex;
    gap: 2px;
    color: #f5a623;
    flex-shrink: 0;
}
.review-card__text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
    font-style: italic;
    margin-bottom: 12px;
}
.review-card__photo {
    border-radius: var(--radius-sm);
    width: 100%;
    height: auto;
    margin-top: 4px;
}

/* ============================================
   ORDER STEPS
   ============================================ */
.order-steps__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 28px;
}
.order-step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-soft);
    position: relative;
}
.order-step__icon {
    color: var(--pink-accent);
}
.order-step__num {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 24px;
    height: 24px;
    background: var(--pink-deep);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-head);
    font-size: 11px;
    font-weight: 800;
}
.order-step strong {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.order-step span {
    font-size: 11px;
    color: var(--text-soft);
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.guarantee {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px;
    box-shadow: var(--shadow-soft);
    color: var(--pink-deep);
}
.guarantee > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.guarantee strong {
    font-family: var(--font-head);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}
.guarantee span {
    font-size: 12px;
    color: var(--text-soft);
}

/* ============================================
   LAST BLOCK / FORM
   ============================================ */
.last-block {
    background: linear-gradient(180deg, #fdf0f4 0%, #fff5f8 100%);
    padding: 40px 20px;
    text-align: center;
}
.last-block__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.last-block .hero__product-img {
    border-radius: var(--radius);
    margin-bottom: 20px;
    max-width: 100%;
}

.form-box {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 20px;
    margin-bottom: 16px;
    width: 100%;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--pink-mid);
}
.form-box__title {
    font-family: var(--font-head);
    font-size: 16px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}
.input_field {
    display: block;
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--beige-mid);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    background: var(--beige);
    outline: none;
    margin-bottom: 12px;
    transition: border-color 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.input_field:focus { border-color: var(--pink-accent); background: var(--white); }
.input_field::placeholder { color: #b0909a; }

.select_field {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c94f72' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.order_form button { margin-top: 4px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.55);
    padding: 28px 20px;
    text-align: center;
    font-size: 11px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer a {
    color: var(--pink-mid);
    text-decoration: underline;
}
.footer__copy {
    margin-top: 8px;
    color: rgba(255,255,255,0.3);
    font-size: 10px;
}
