:root {
    color-scheme: light only;
    --primary: #22c55e;
    --primary-dark: #16a34a;
    --accent: #22c55e;
    --bg: #faf8f5;
    --bg-warm: #f5f0e8;
    --card: rgba(255, 255, 255, 0.7);
    --card-solid: #ffffff;
    --text: #1a1a1a;
    --text-light: #6b6b6b;
    --border: rgba(0, 0, 0, 0.08);
    --radius: 20px;
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    --glass: rgba(255, 255, 255, 0.6);
    --glass-border: rgba(255, 255, 255, 0.3);
}

html {
    background-color: #faf8f5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

a {
    color: var(--accent);
}

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

/* Header */
.header {
    background: var(--card);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.header__logo {
    display: flex;
    align-items: center;
}

.logo-icon {
    height: 40px;
    width: auto;
}

.header__nav {
    display: flex;
    gap: 30px;
}

.header__nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.header__nav a:hover {
    color: var(--primary);
}

.header__actions {
    display: flex;
    gap: 10px;
}

.lang-dropdown {
    position: relative;
}

.lang-btn, .cart-btn {
    background: var(--bg);
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.2s;
    text-decoration: none;
    color: var(--text);
    height: 40px;
    display: flex;
    align-items: center;
}

.lang-btn:hover, .cart-btn:hover {
    background: var(--bg-warm);
}

.lang-dropdown__menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    overflow: hidden;
}

.lang-dropdown__menu.open {
    opacity: 1;
    visibility: visible;
}

.lang-dropdown__menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    text-decoration: none;
    transition: background 0.2s;
}

.lang-dropdown__menu a:hover {
    background: var(--bg-warm);
}

.cart-btn {
    display: flex;
    align-items: center;
    gap: 5px;
}

#cart-count {
    background: var(--primary);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
}

/* Hero */
.hero {
    background: var(--bg-warm);
    color: var(--text);
    padding: 60px 0;
}

.hero__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero__content {
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 24px 0;
}

.badge {
    background: var(--glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
}

.hero__image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero__image img {
    width: 100%;
    height: auto;
    display: block;
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.05rem;
    border-radius: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    transition: all 0.2s;
}

.btn--primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn--full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

@media (min-width: 900px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero__inner {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }
    
    .hero__content {
        flex: 1;
        text-align: left;
    }
    
    .hero__badges {
        justify-content: flex-start;
    }
    
    .hero__image {
        flex: 1;
        max-width: 50%;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

/* Sections */
section {
    padding: 70px 0;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
}

.section__subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

/* Plans */
.plans {
    background: var(--card-solid);
    padding-top: 40px;
}

.plans__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.plan-card {
    flex: 1 1 160px;
    min-width: 160px;
    max-width: 300px;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

@media (min-width: 540px) {
    .plan-card {
        flex: 0 1 242px;
        min-width: 242px;
    }
}

@media (min-width: 1000px) {
    .plan-card {
        flex: 0 1 300px;
        min-width: 300px;
    }
}

.plan-card:hover {
    box-shadow: var(--shadow);
}

.plan-card__header {
    position: relative;
}

.plan-card__image {
    width: 90%;
    margin: 10px auto 0;
    display: block;
    border-radius: var(--radius) var(--radius) 0 0;
}

.plan-card__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plan-card__label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-card__name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.plan-card__body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

@media (min-width: 540px) {
    .plan-card__body {
        padding: 16px;
    }
}

.plan-card__desc {
    color: var(--text);
    font-size: 0.8rem;
    margin-bottom: 16px;
    line-height: 1.4;
    flex: 1;
}

.plan-card__footer {
    margin-top: auto;
}

.plan-card__rec {
    color: var(--text-light);
    font-size: 0.75rem;
    margin-bottom: 12px;
}

.plan-card__rec::before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--text);
    font-style: normal;
}

.plan-card__actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.btn--price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 6px 8px;
    background: var(--card-solid);
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text);
    cursor: pointer;
    transition: all 0.2s;
}

.btn--price:hover {
    border-color: var(--primary);
    background: #f0fdf4;
}

.btn--price.btn--primary {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.btn--price.btn--primary:hover {
    background: var(--primary-dark);
}

.icon-plus {
    width: 12px;
    height: 12px;
    margin-right: 4px;
    flex-shrink: 0;
}

.plan-card__hint {
    margin-top: 10px;
    font-size: 0.65rem;
    color: var(--text-light);
    text-align: center;
}

/* Meals Gallery */
.meals {
    background: var(--card-solid);
    overflow: hidden;
}
.meals.section {

    padding: 40px 0;
}

.meals__rows {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* margin-top: 40px; */
}

.meals__row {
    /* overflow: hidden; */
}

.meals__track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.meals__row--left .meals__track {
    animation: scrollLeft 60s linear infinite;
}

.meals__row--right .meals__track {
    animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.meals__item {
    width: 150px;
    height: 150px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.meals__item:hover {
    transform: scale(1.05);
}

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

.meal-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 200;
    justify-content: center;
    align-items: center;
}

.meal-modal.active {
    display: flex;
}

.meal-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: var(--radius);
}

.meal-modal__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.meal-modal__loader {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.meal-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border: none;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 201;
}

.meal-modal__nav--prev {
    left: 20px;
}

.meal-modal__nav--next {
    right: 20px;
}

/* Why */
.why {
    background: var(--bg-warm);
}

.why.section {
    padding-top: 40px;
}
.why.section h2 {
    margin-bottom: 40px;
}

.why__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.why__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why__card {
    padding: 20px;
    border-radius: var(--radius);
}

.why__card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 12px;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
}

.why__card--yes {
    background: rgba(34, 197, 94, 0.08);
}

.why__card--yes h3 {
    background: var(--primary);
    color: white;
}

.why__card--yes li::before {
    content: "✓";
    color: var(--primary);
    font-weight: 700;
    margin-right: 10px;
}

.why__card--no {
    background: rgba(239, 68, 68, 0.08);
}

.why__card--no h3 {
    background: #ef4444;
    color: white;
}

.why__card--no li::before {
    content: "✕";
    color: #ef4444;
    font-weight: 700;
    margin-right: 10px;
}

.why__card ul {
    list-style: none;
}

.why__card li {
    padding: 6px 0;
    display: flex;
    align-items: center;
}

.why__media {
    overflow: hidden;
}

.video-carousel {
    position: relative;
    display: flex;
    align-items: center;
}

.video-carousel__track {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
}

.video-carousel__item {
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.video-carousel__item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-carousel__item--active {
    width: 200px;
    height: 356px;
    position: relative;
    z-index: 2;
}

.video-carousel__item--prev,
.video-carousel__item--next {
    width: 140px;
    height: 249px;
    opacity: 0.7;
    cursor: pointer;
    position: absolute;
    z-index: 1;
}

.video-carousel__item--prev {
    left: 0;
}

.video-carousel__item--next {
    right: 0;
}

.video-carousel__item--prev:hover,
.video-carousel__item--next:hover {
    opacity: 0.9;
}

.video-carousel__item--prev video,
.video-carousel__item--next video {
    pointer-events: none;
}

.video-carousel__item--hidden {
    display: none;
}

.video-carousel__btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--glass);
    backdrop-filter: blur(10px);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
    z-index: 3;
    position: absolute;
}

.video-carousel__btn--prev {
    left: 50px;
}

.video-carousel__btn--next {
    right: 50px;
}

.why__instagram {
    text-align: center;
    margin-top: 20px;
    color: var(--text-light);
}

.why__instagram a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.why__instagram a:hover {
    text-decoration: underline;
}

.video-carousel__btn:hover {
    background: var(--primary);
    color: white;
}

@media (min-width: 900px) {
    .why__inner {
        flex-direction: row;
        align-items: center;
    }
    
    .why__content {
        flex: 1;
    }
    
    .why__media {
        flex: 1;
        max-width: 50%;
    }
    
    .video-carousel__item--active {
        width: 280px;
        height: 498px;
    }
    
    .video-carousel__item--prev,
    .video-carousel__item--next {
        width: 196px;
        height: 349px;
    }
}

/* FMD */
.fmd {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.fmd__hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.fmd__hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.fmd__tagline {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.fmd__desc {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
}

.fmd__image {
    width: 100%;
    max-width: 600px;
    margin: 30px auto 0;
    display: block;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.fmd__benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.fmd__benefit {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: var(--radius);
}

.fmd__benefit h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--accent);
}

.fmd__benefit p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

.fmd__process {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 30px;
}

.fmd__process h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.fmd__process-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
}

.fmd__process-day {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fmd__day-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.fmd__day-name {
    font-size: 1.2rem;
    font-weight: 700;
}

.fmd__process-arrow {
    font-size: 2rem;
    color: var(--primary);
}

.fmd__process-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.fmd__results {
    background: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: var(--radius);
    text-align: center;
    margin-bottom: 40px;
}

.fmd__results h3 {
    font-size: 1.3rem;
    margin-bottom: 24px;
}

.fmd__results-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.fmd__result-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(245, 240, 232, 0.8);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 20px;
}

.fmd__result-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.fmd__result-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.fmd__tags {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin: 20px 0;
}

.fmd__tags span {
    background: rgba(245, 240, 232, 0.8);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text);
}

.fmd__results-note {
    font-size: 0.95rem;
    color: var(--text);
    max-width: 600px;
    margin: 0 auto;
}

.fmd__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.fmd__cta-price {
    font-size: 2.5rem;
    font-weight: 700;
}

.fmd__cta-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* How it works */
.how-it-works {
    background: var(--card);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
}

.step__number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 10px;
}

.step p {
    color: var(--text-light);
}

/* FAQ */
.faq__list {
    max-width: 700px;
    margin: 0 auto;
}

.faq__item {
    background: var(--card);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.faq__question {
    font-weight: 600;
    margin-bottom: 8px;
}

.faq__answer {
    color: var(--text-light);
}

/* Contacts */
.contacts {
    background: var(--card);
}

.contacts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s;
}

.contact-card:hover {
    transform: translateY(-2px);
}

.contact-card__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--accent);
}

.contact-card__text {
    display: flex;
    flex-direction: column;
}

.contact-card__label {
    color: var(--text-light);
    font-size: 0.8rem;
}

.contact-card__value {
    font-weight: 600;
    font-size: 0.9rem;
}

.contacts__map {
    display: block;
    position: relative;
    margin-top: 20px;
    height: 300px;
    border-radius: var(--radius);
    overflow: hidden;
    text-decoration: none;
}

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

.contacts__address {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg);
    padding: 12px 24px;
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 500;
    width: 84%;
    text-align: center;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.modal__content {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal__content--small {
    max-width: 350px;
    text-align: center;
    padding: 40px;
}

.modal__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal__close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal__body {
    padding: 24px;
}

.modal__footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Cart items */
.cart-item {
    display: grid;
    grid-template-columns: 1fr auto auto auto;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item__info h4 {
    margin: 0;
    font-size: 0.95rem;
}

.cart-item__qty {
    color: var(--text-light);
    font-size: 0.9rem;
    min-width: 30px;
    text-align: center;
}

.cart-item__price {
    font-weight: 700;
    min-width: 70px;
    text-align: right;
}

.cart-item__remove {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    border: none;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.cart-item__remove:hover {
    background: rgba(239, 68, 68, 0.2);
}

.cart-empty {
    text-align: center;
    padding: 40px;
    color: var(--text-light);
}

/* Form */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
}

.form-group textarea {
    min-height: 60px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-payment-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    padding: 10px 12px;
    background: var(--bg-warm);
    border-radius: 8px;
}

/* Success */
.success-order-id {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.success-order-id strong {
    color: var(--primary);
    font-size: 1.3rem;
}

.btn--insta {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin: 16px 0 8px;
}

.btn--insta:hover {
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--text);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .header__nav {
        display: none;
    }
    
    .fmd__content {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
}
