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

:root {
    /* Colors */
    --melon: #FE364B;
    --earth: #4C382E;
    --kale: #236E3B;
    --vanilla: #FFFFFF;
    --lime: #12C84C;
    --shrimp: #FFF4F4;
    --light-bg: #F1EFEE;
    
    /* Semantic colors */
    --primary: var(--melon);
    --secondary: var(--earth);
    --success: var(--lime);
    --background: var(--vanilla);
    --surface: var(--shrimp);
    
    /* Strokes & borders */
    --stroke-tag: var(--lime);
    --stroke-button: rgba(76, 56, 46, 0.12);
    --border-light: rgba(76, 56, 46, 0.08);
    
    /* Border radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-full: 999px;
    --border-radius: var(--radius-md); /* Legacy support */
    
    /* Typography */
    --font-display: 'Chewy', cursive;
    --font-body: 'Onest', sans-serif;
    --font-size-xs: 14px;
    --font-size-sm: 16px;
    --font-size-base: 18px;
    --font-size-lg: 20px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 40px;
    --font-size-4xl: 48px;
    --font-size-5xl: 64px;
    --font-size-6xl: 96px;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 40px;
    --space-3xl: 48px;
    --space-4xl: 60px;
    --space-5xl: 80px;
    --space-6xl: 120px;
    
    /* Shadows */
    --shadow-card: 0 4px 12px rgba(76, 56, 46, 0.08);
    --shadow-inset: 0px 12px 16px 0px inset rgba(76, 56, 46, 0.04);
    --shadow-hover: 0 8px 24px rgba(76, 56, 46, 0.12);
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: var(--font-body);
    color: var(--earth);
    line-height: 1.6;
    margin: 0;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-5xl);
}

/* Layout utilities */
.section {
    padding: var(--space-6xl) 0;
}

.section-sm {
    padding: var(--space-5xl) 0;
}

.section-lg {
    padding: 150px 0;
}

.card {
    background: var(--background);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: var(--space-xl);
}

.surface {
    background: var(--surface);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

/* Typography */
.display-heading {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.1;
    color: var(--earth);
}

.body-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
}

/* Typography utilities */
.text-xs { font-size: var(--font-size-xs); }
.text-sm { font-size: var(--font-size-sm); }
.text-base { font-size: var(--font-size-base); }
.text-lg { font-size: var(--font-size-lg); }
.text-xl { font-size: var(--font-size-xl); }
.text-2xl { font-size: var(--font-size-2xl); }
.text-3xl { font-size: var(--font-size-3xl); }
.text-4xl { font-size: var(--font-size-4xl); }
.text-5xl { font-size: var(--font-size-5xl); }
.text-6xl { font-size: var(--font-size-6xl); }

.font-display { font-family: var(--font-display); }
.font-body { font-family: var(--font-body); }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.leading-tight { line-height: 1.1; }
.leading-normal { line-height: 1.4; }
.leading-relaxed { line-height: 1.6; }

/* Utilities */
.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-col {
    display: flex;
    flex-direction: column;
}

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

.gap-xs { gap: var(--space-xs); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-48 { border-radius: 48px; } /* Legacy support */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.w-full { width: 100%; }
.h-full { height: 100%; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation */
.navigation {
    background: var(--vanilla);
    height: 96px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: transform 0.3s ease;
}

.navigation.hidden {
    transform: translateY(-100%);
}

.nav-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 80px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.nav-left {
    display: flex;
    align-items: flex-end;
    gap: 80px;
}

.logo {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.logo-icon {
    width: 48px;
    height: 32.3px;
}

.logo-text {
    width: 140.55px;
    height: 17.4px;
    padding-bottom: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-menu a:hover {
    opacity: 0.7;
}

.progress-stepper {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    max-width: 773px;
}

.step-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    flex-shrink: 0;
}

.step-chip.active {
    background: var(--vanilla);
    border: 1px solid #F1EFEE;
}

.step-chip.completed {
    background: var(--lime);
    border: 1px solid #F1EFEE;
}

.step-chip span {
    font-size: 16px;
    font-weight: 700;
    color: rgba(112, 96, 88, 0.8);
    white-space: nowrap;
}

.step-chip.active span {
    color: var(--kale);
}

.step-chip.completed span {
    color: var(--vanilla);
}

.step-chip.completed .step-icon {
    filter: brightness(0) invert(1);
}

.step-icon {
    width: 16px;
    height: 16px;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: #F1EFEE;
    border-radius: 999px;
    position: relative;
    min-width: 0;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--lime);
    border-radius: 999px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary, .btn-secondary, .btn-cart {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cart {
    background: var(--vanilla);
    border: 2px solid var(--stroke-button);
    border-radius: 999px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: var(--earth);
}

.btn-cart:hover {
    background: var(--light-bg);
}

.cart-icon {
    width: 24px;
    height: 24px;
}

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

.profile-dropdown {
    position: relative;
}

.profile-icon {
    background: var(--vanilla);
    border: 2px solid var(--stroke-button);
    border-radius: 999px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--earth);
    text-decoration: none;
    transition: all 0.3s;
    width: 56px;
    height: 56px;
    cursor: pointer;
}

.profile-icon:hover {
    background: var(--earth);
    color: var(--vanilla);
}

.profile-icon svg {
    width: 24px;
    height: 24px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--vanilla);
    border: 2px solid var(--stroke-button);
    border-radius: 16px;
    box-shadow: var(--shadow-card);
    min-width: 140px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    color: var(--earth);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    transition: background-color 0.3s;
    text-align: left;
    font-family: var(--font-body);
}

.dropdown-item:first-child {
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
}

.dropdown-item:last-child {
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
}

.dropdown-item:hover {
    background: var(--shrimp);
}

.btn-primary {
    background: var(--primary);
    color: var(--vanilla);
}

.btn-primary:hover {
    background: #E52F42;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--stroke-button);
}

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

.btn-secondary .arrow {
    font-size: 20px;
}

.btn-large {
    padding: 16px 24px;
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.8px;
    width: fit-content;
}

.btn-large .arrow {
    font-size: 20px;
}

/* Hero Section */
.hero {
    padding: 156px 0 120px;
    background: var(--vanilla);
}

.hero .container {
    display: flex;
    gap: 124px;
    align-items: center;
}

.hero-content {
    width: 416px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
    font-style: normal;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.2;
    margin: 0;
    color: var(--earth);
    font-weight: 500;
    letter-spacing: -0.8px;
}

.tag {
    display: inline-block;
    padding: 8px 12px;
    background: transparent;
    color: var(--kale);
    border: 2px solid var(--stroke-tag);
    border-radius: 999px;
    font-size: 16px;
    font-weight: 700;
    width: fit-content;
}

.hero-image {
    position: relative;
    width: 740px;
    height: 600px;
}

.hero-image-back {
    position: absolute;
    left: 79px;
    top: 0;
    width: 620px;
    height: 600px;
    border-radius: 48px;
    overflow: hidden;
}

.hero-image-back img:first-child {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-back .vector-2,
.hero-image-back .vector-3 {
    position: absolute;
    pointer-events: none;
}

.hero-image-back .vector-2 {
    left: 124.85px;
    top: 378.45px;
    transform: rotate(61.195deg) skewX(2.273deg);
}

.hero-image-back .vector-3 {
    left: 47.49px;
    top: 377px;
    transform: rotate(329.04deg) skewX(357.493deg);
}

.hero-image-front {
    position: absolute;
    left: 0;
    top: 4px;
    width: 738.697px;
    height: 596px;
    object-fit: cover;
}

.image-placeholder, .meal-image, .steps-image, .box-image, .cta-image {
    background: linear-gradient(135deg, #FFE5DC 0%, #FFD4C4 100%);
    border-radius: var(--border-radius);
    width: 100%;
    height: 100%;
}

/* Meals Section */
.meals-section {
    padding: 120px 0;
    background: var(--shrimp);
    position: relative;
}

.meals-section::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--shadow-inset);
    pointer-events: none;
}

.section-header {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 80px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin: 16px 0;
    color: var(--earth);
    font-weight: 400;
}

.section-header p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
}

.meal-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    padding-top: 0;
    overflow-x: auto;
}

.meal-card {
    background: var(--vanilla);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 12px;
    width: 308px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.meal-image-wrapper {
    position: relative;
    height: 160px;
    border-radius: 16px;
    overflow: visible;
}

.meal-bg {
    width: 100%;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    position: absolute;
    bottom: 0;
    left: 0;
    overflow: hidden;
}

.meal-food {
    position: absolute;
    width: 228px;
    height: 160px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    object-fit: cover;
    z-index: 10;
}

.meal-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: 0px -2px 8px 0px inset rgba(76, 56, 46, 0.32);
    pointer-events: none;
    border-radius: 16px;
}

.meal-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.meal-content h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
    color: var(--earth);
    margin: 0;
}

.meal-content p {
    font-size: 16px;
    letter-spacing: -0.64px;
    color: var(--earth);
    line-height: 1.4;
    margin: 0;
}

.meal-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.calories {
    font-size: 16px;
    letter-spacing: -0.64px;
    color: rgba(76, 56, 46, 0.64);
}

.food-icons {
    display: flex;
    gap: 4px;
}

.food-icon {
    width: 28px;
    height: 28px;
    padding: 8px;
    border: 2px solid rgba(35, 110, 59, 0.24);
    border-radius: 999px;
    box-sizing: border-box;
}

.meals-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.meals-section .btn-secondary {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    font-size: 20px;
    letter-spacing: -0.8px;
}

/* How It Works */
.how-it-works {
    padding: 120px 0 80px;
    background: var(--vanilla);
}

.how-it-works .section-header {
    max-width: 560px;
}

.how-it-works .section-header h2 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
}

.steps-container {
    display: flex;
    gap: 124px;
    align-items: flex-start;
}

.steps-list {
    width: 524px;
    padding-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.step {
    display: flex;
    gap: 32px;
}

.step-number {
    width: 100px;
    height: 100px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-number .number-bg {
    position: absolute;
    width: 175%;
    height: 175%;
}

.step-number span {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.8;
    color: var(--vanilla);
    position: relative;
    z-index: 1;
}

.step-content {
    width: 400px;
    margin-top: -20px;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 8px;
    font-weight: 400;
}

.step-content p {
    color: var(--earth);
    font-size: 18px;
    line-height: 1.4;
}

.steps-image {
    width: 632px;
    height: 626px;
    border-radius: 48px;
    overflow: hidden;
}

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

/* What's in the Box */
.whats-in-box {
    padding: 80px 0 120px;
    background: var(--vanilla);
}

.whats-in-box .section-header {
    max-width: 560px;
}

.whats-in-box .section-header h2 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
}

.features-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    width: 100%;
}

.feature {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature .icon {
    width: 40px;
    height: 40px;
}

.feature h3 {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.1;
    margin: 0;
    font-weight: 400;
    color: var(--earth);
}

.feature p {
    color: var(--earth);
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
}

.box-image {
    position: relative;
    width: 100%;
    max-width: 1280px;
    height: 683px;
    margin: 0 auto;
    overflow: hidden;
}

.whats-in-box img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.box-ellipse {
    position: absolute;
    width: 100%;
    height: 544.6px;
    bottom: 0;
    left: 0;
    background: #FFF4F4;
    border-radius: 50%;
}

.box-main {
    position: absolute;
    width: 1306.91px;
    height: 935.38px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(-90px);
    object-fit: contain;
    max-width: none;
}

.box-ingredients {
    position: absolute;
    width: 766px;
    height: 790px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) translateY(60px);
    object-fit: cover;
    max-width: none;
}

/* Reviews Section */
.reviews-section {
    padding: 120px 0;
    background: var(--shrimp);
    position: relative;
}

.reviews-section::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--shadow-inset);
    pointer-events: none;
}

.reviews-section .section-header {
    max-width: 632px;
}

.reviews-section .section-header h2 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    font-weight: 400;
}

.review-cards {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    width: 100%;
    max-width: 1280px;
}

.review-card {
    background: var(--vanilla);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    width: 308px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.review-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stars {
    display: flex;
    gap: 4px;
}

.star {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.star::before {
    content: '★';
    color: white;
    font-size: 14px;
}

.star.filled {
    background: var(--lime);
}

.star.half {
    background: rgba(18, 200, 76, 0.4);
}

.star.empty {
    background: rgba(18, 200, 76, 0.2);
}

.review-card h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
    color: var(--earth);
    margin: 0;
}

.review-card p {
    color: var(--earth);
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: -0.64px;
    margin: 0;
}

.review-author {
    font-size: 16px;
    letter-spacing: -0.64px;
    color: rgba(76, 56, 46, 0.64);
    margin-top: 16px;
}

.reviews-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-section .btn-secondary {
    display: inline-flex;
    gap: 16px;
    align-items: center;
    font-size: 20px;
    letter-spacing: -0.8px;
}

/* Freshness Banner */
.freshness-banner {
    padding: 120px 0 80px;
    background: var(--vanilla);
}

.banner-wrapper {
    position: relative;
    width: 100%;
    height: 540px;
    border-radius: 48px;
    overflow: hidden;
}

.banner-images {
    position: absolute;
    inset: 0;
    display: flex;
}

.banner-img {
    width: 182.857px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
}

.banner-img:first-child {
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
}

.banner-img:last-child {
    border-top-right-radius: 48px;
    border-bottom-right-radius: 48px;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(35, 110, 59, 0) 43.519%, #236E3B 84.167%);
    border-radius: 48px;
}

.banner-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    color: var(--vanilla);
}

.banner-text {
    display: flex;
    gap: 16px;
    align-items: center;
    max-width: 808px;
}

.banner-text h2 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.1;
    font-weight: 400;
    width: 268px;
    margin: 0;
}

.banner-text p {
    font-size: 18px;
    line-height: 1.4;
    width: 416px;
    margin: 0;
}

.btn-banner {
    padding: 16px 24px;
    border: 2px solid var(--vanilla);
    background: transparent;
    color: var(--vanilla);
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    letter-spacing: -0.8px;
}

.btn-banner:hover {
    background: var(--vanilla);
    color: var(--kale);
}

.btn-banner .arrow {
    font-size: 20px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 120px;
    background: var(--vanilla);
}

.cta-wrapper {
    display: flex;
    gap: 52px;
    align-items: center;
    justify-content: center;
    background: var(--shrimp);
    border-radius: 48px;
    padding: 0;
}

.cta-image {
    width: 308px;
    height: 380px;
    overflow: hidden;
    flex-shrink: 0;
    background: transparent;
}

.cta-image.left {
    border-top-left-radius: 48px;
    border-bottom-left-radius: 48px;
}

.cta-image.right {
    border-top-right-radius: 48px;
    border-bottom-right-radius: 48px;
}

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

.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    width: 560px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
    text-align: center;
}

/* Footer */
.footer {
    background: #F1EFEE;
    padding: 0;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(76, 56, 46, 0.12);
}

.footer .container {
    padding-top: 80px;
    padding-bottom: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.footer-logo {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.footer-logo .logo-icon {
    width: 48px;
    height: 32.3px;
}

.footer-logo .logo-text {
    width: 140.55px;
    height: 17.4px;
    padding-bottom: 2px;
}

.footer-links {
    display: flex;
    gap: 40px;
    width: 632px;
}

.footer-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-col h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin: 0;
}

.footer-col a {
    color: var(--earth);
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 0.7;
}

.footer-bottom {
    background: rgba(76, 56, 46, 0.08);
    padding: 24px 0;
    margin-top: 80px;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    gap: 80px;
    padding-top: 0;
}

.footer-bottom p {
    margin: 0;
    font-size: 16px;
    color: var(--earth);
}

.footer-legal {
    display: flex;
    gap: 40px;
}

.footer-legal a {
    font-size: 16px;
    color: var(--earth);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-legal a:hover {
    opacity: 0.7;
}

@media (max-width: 1100px) {
    .step-chip:not(.active),
    .progress-bar {
        display: none;
    }

    .progress-stepper {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container, .nav-container {
        padding: 0 var(--space-lg);
    }

    /* Navigation */
    .nav-left {
        gap: 24px;
    }

    .nav-menu {
        display: none;
    }

    .btn-cart span {
        display: none;
    }

    .progress-stepper {
        max-width: none;
    }

    .step-chip:not(.active),
    .progress-bar {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 136px 0 60px;
    }

    .hero .container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        align-items: center;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image {
        width: 100%;
        max-width: 400px;
        height: auto;
    }

    .hero-image img {
        width: 100%;
        height: auto;
        border-radius: 24px;
    }

    /* Sections */
    .meals-section,
    .how-it-works,
    .whats-in-box,
    .reviews-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .section-header p {
        font-size: 16px;
    }

    /* Meals */
    .meal-cards {
        flex-direction: column;
        align-items: center;
        padding-top: 32px;
        margin-bottom: 40px;
        overflow-x: visible;
    }

    .meal-card {
        width: 100%;
        max-width: 400px;
    }

    /* How It Works */
    .steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .steps-list {
        width: 100%;
        padding-top: 0;
        gap: 40px;
    }

    .step {
        gap: 24px;
    }

    .step-number {
        width: 80px;
        height: 80px;
    }

    .step-number span {
        font-size: 60px;
    }

    .step-content {
        width: 100%;
    }

    .step-content h3 {
        font-size: 32px;
    }

    .step-content p {
        font-size: 16px;
    }

    .steps-image {
        width: 100%;
        height: 400px;
    }

    /* What's in the Box */
    .features-grid {
        flex-direction: column;
        gap: 32px;
    }

    .feature h3 {
        font-size: 32px;
    }

    .feature p {
        font-size: 16px;
    }

    .box-image {
        height: 400px;
    }

    /* Reviews */
    .review-cards {
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }

    .review-card {
        width: 100%;
        max-width: 400px;
    }

    /* Freshness Banner */
    .freshness-banner {
        padding: 60px 0 40px;
    }

    .banner-wrapper {
        height: 400px;
        border-radius: 24px;
    }

    .banner-images {
        flex-wrap: wrap;
    }

    .banner-img {
        width: calc(100% / 3);
        height: 50%;
    }

    .banner-content {
        flex-direction: column;
        gap: 24px;
        bottom: 24px;
        left: 24px;
        right: 24px;
    }

    .banner-text {
        flex-direction: column;
        gap: 16px;
        max-width: 100%;
    }

    .banner-text h2 {
        font-size: 32px;
        width: 100%;
    }

    .banner-text p {
        font-size: 16px;
        width: 100%;
    }

    .btn-banner {
        width: 100%;
        justify-content: center;
    }

    /* CTA */
    .cta-section {
        padding: 40px 0 60px;
    }

    .cta-wrapper {
        flex-direction: column;
        gap: 24px;
        border-radius: 24px;
        padding: 24px;
    }

    .cta-image {
        width: 100%;
        height: 200px;
        border-radius: 16px !important;
    }

    .cta-content {
        width: 100%;
    }

    .cta-content h2 {
        font-size: 40px;
    }

    /* Footer */
    .footer .container {
        padding-top: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-links {
        flex-direction: column;
        width: 100%;
        gap: 32px;
    }

    .footer-bottom {
        margin-top: 40px;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 24px;
        align-items: flex-start;
    }

    .footer-legal {
        flex-direction: column;
        gap: 16px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .container, .nav-container {
        padding: 0 var(--space-2xl);
    }

    /* Hero */
    .hero .container {
        gap: 60px;
    }

    .hero-content {
        width: 350px;
    }

    .hero-content h1 {
        font-size: 72px;
    }

    .hero-image {
        width: 600px;
        height: 500px;
    }

    /* Sections */
    .section-header h2 {
        font-size: 48px;
    }

    /* How It Works */
    .steps-container {
        gap: 60px;
    }

    .steps-list {
        width: 400px;
    }

    .steps-image {
        width: 500px;
        height: 500px;
    }

    /* Features */
    .features-grid {
        flex-wrap: wrap;
    }

    .feature {
        flex: 0 0 calc(50% - 12px);
    }

    /* Reviews */
    .review-cards {
        flex-wrap: wrap;
        justify-content: center;
    }

    .review-card {
        flex: 0 0 calc(50% - 8px);
        width: auto;
    }

    /* Banner */
    .banner-text {
        flex-direction: column;
        gap: 16px;
    }

    .banner-text h2,
    .banner-text p {
        width: 100%;
    }

    /* CTA */
    .cta-wrapper {
        gap: 32px;
    }

    .cta-image {
        width: 250px;
    }

    .cta-content {
        width: 450px;
    }

    .cta-content h2 {
        font-size: 48px;
    }
}

/* Plans Section */
.plans-section {
    padding: 176px 0 120px;
    background: var(--vanilla);
}

.plans-heading {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 1;
    text-align: center;
    margin: 0 0 80px;
    color: var(--earth);
    font-weight: 400;
}

.plans-content {
    display: flex;
    gap: 16px;
}

.plans-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.plans-right {
    width: 524px;
    padding-top: 80px;
}

.plan-step {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 38.4px;
    color: var(--vanilla);
    line-height: 0.8;
}

.step-header h2 {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
}

.protein-cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.protein-card {
    background: var(--shrimp);
    border-radius: 32px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.protein-card.active {
    background: var(--shrimp);
}

.protein-content {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    flex: 1;
}

.protein-emoji {
    font-size: 48px;
    line-height: 1;
    flex-shrink: 0;
}

.protein-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.protein-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.protein-card h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
    color: var(--earth);
}

.protein-cal {
    font-size: 16px;
    letter-spacing: -0.64px;
    color: rgba(76, 56, 46, 0.64);
    line-height: 1.4;
}

.protein-desc {
    margin: 0;
    font-size: 16px;
    letter-spacing: -0.64px;
    color: var(--earth);
    line-height: 1.4;
}

.add-btn {
    width: 96px;
    height: 80px;
    border: 2px solid var(--stroke-button);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    font-size: 68px;
    color: var(--earth);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.add-btn.active {
    background: var(--lime);
    color: var(--vanilla);
}

.add-btn:hover {
    background: var(--lime);
    color: var(--vanilla);
}

.servings-controls {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.control-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.control-btn {
    width: 96px;
    height: 80px;
    border: 2px solid var(--stroke-button);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.01);
    font-size: 24px;
    color: var(--earth);
    cursor: pointer;
    transition: all 0.3s;
}

.control-btn:hover {
    background: var(--earth);
    color: var(--vanilla);
}

.control-value {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.control-value .value {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.1;
    color: var(--kale);
}

.control-value .label {
    font-size: 18px;
    font-weight: 500;
    color: var(--earth);
}

.addons {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.addon-item input[type="checkbox"] {
    width: 40px;
    height: 40px;
    border: 2px solid var(--stroke-button);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    appearance: none;
    position: relative;
    flex-shrink: 0;
}

.addon-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--melon);
    border-radius: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.addon-item span {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
}

.pricing-card {
    background: var(--vanilla);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-card h3 {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
}

.pricing-rows {
    display: flex;
    flex-direction: column;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid var(--stroke-button);
}

.pricing-row span {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
}

.pricing-row .price {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
}

.pricing-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    background: var(--earth)/8%;
    background: #F1EFEE;
    border-radius: 8px;
}

.pricing-total span {
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
}

.pricing-total .total-price {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.96px;
}

.pricing-card .btn-primary {
    width: 100%;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .plans-content {
        flex-direction: column;
    }
    
    .plans-right {
        width: 100%;
        padding-top: 0;
    }
    
    .plans-heading {
        font-size: 64px;
    }
}

@media (max-width: 768px) {
    .plans-section {
        padding: 136px 0 60px;
    }
    
    .plans-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .plans-left {
        gap: 40px;
    }
    
    .step-header h2 {
        font-size: 32px;
    }
    
    .protein-card {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .protein-card h3 {
        margin: 0;
    }
    
    .add-btn {
        width: 80px;
        height: 64px;
    }
    
    .control-btn {
        width: 80px;
        height: 64px;
    }
    
    .pricing-card h3 {
        font-size: 32px;
    }
}

/* Register Section */
.register-section {
    padding: 176px 0 120px;
    background: var(--vanilla);
}

.register-heading {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 1;
    text-align: center;
    margin: 0 0 80px;
    color: var(--earth);
    font-weight: 400;
}

.register-form {
    background: rgba(76, 56, 46, 0.04);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 848px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-field.full-width {
    width: 100%;
}

.form-label {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
    color: var(--earth);
}

.form-input {
    background: var(--vanilla);
    border-radius: 12px;
    padding: 16px;
    box-shadow: var(--shadow-card);
}

.form-input p {
    font-size: 18px;
    line-height: 1.4;
    color: rgba(112, 96, 88, 1);
    margin: 0;
}

.consent-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.consent-checkbox {
    width: 40px;
    height: 40px;
    border: 2px solid var(--stroke-button);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    flex-shrink: 0;
    cursor: pointer;
    appearance: none;
    position: relative;
}

.consent-checkbox:checked::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--melon);
    border-radius: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.consent-text {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
    margin: 0;
    flex: 1;
    cursor: pointer;
}

.register-form .btn-primary {
    width: 100%;
    justify-content: center;
}

@media (max-width: 768px) {
    .register-section {
        padding: 136px 0 60px;
    }
    
    .register-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .form-label {
        font-size: 20px;
    }
    
    .form-input p {
        font-size: 16px;
    }
}

/* Checkout Section */
.checkout-section {
    padding: 176px 0 120px;
    background: var(--vanilla);
}

.checkout-heading {
    font-family: var(--font-display);
    font-size: 96px;
    line-height: 1;
    text-align: center;
    margin: 0 0 80px;
    color: var(--earth);
    font-weight: 400;
}

.checkout-content {
    background: rgba(76, 56, 46, 0.04);
    border-radius: 40px;
    padding: 32px;
    display: flex;
    gap: 48px;
    margin-bottom: 16px;
}

.checkout-left {
    flex: 1;
}

.checkout-right {
    width: 460px;
}

.duration-options {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.duration-option {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    min-height: 60px;
}

.duration-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.duration-indicator {
    width: 40px;
    height: 40px;
    border: 2px solid var(--stroke-button);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    flex-shrink: 0;
    position: relative;
}

.duration-option.active .duration-indicator::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--melon);
    border-radius: 6px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.duration-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.duration-info h3 {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: -0.96px;
    color: var(--earth);
    margin: 0;
}

.duration-info p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
    margin: 0;
}

.pricing-summary {
    background: rgba(76, 56, 46, 0.08);
    border-radius: 32px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.payment-section {
    background: rgba(76, 56, 46, 0.04);
    border-radius: 40px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.payment-section .btn-primary {
    justify-content: center;
}

@media (max-width: 1024px) {
    .checkout-content {
        flex-direction: column;
    }
    
    .checkout-right {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .checkout-section {
        padding: 136px 0 60px;
    }
    
    .checkout-heading {
        font-size: 48px;
        margin-bottom: 40px;
    }
    
    .checkout-content,
    .payment-section {
        padding: 24px;
    }
    
    .duration-info h3 {
        font-size: 20px;
    }
    
    .duration-info p {
        font-size: 16px;
    }
}

.form-input input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 18px;
    line-height: 1.4;
    color: rgba(112, 96, 88, 1);
    outline: none;
    font-family: var(--font-body);
}

/* Profile Page Styles */
.ctt-profile-container {
    padding: 176px 0 120px;
    background: var(--vanilla);
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 80px;
    padding-right: 80px;
}

.ctt-profile-header {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-bottom: 60px;
    padding: 32px;
    background: var(--shrimp);
    border-radius: 32px;
    box-shadow: var(--shadow-card);
}

.ctt-profile-fpicture {
    position: relative;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--vanilla);
    box-shadow: var(--shadow-card);
}

.ctt-profile-fpicture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ctt-profile-placeholder {
    width: 100%;
    height: 100%;
    background: var(--earth);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vanilla);
    font-size: 48px;
}

.ctt-profile-name h2 {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
}

.ctt-profile-details {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.ctt-profile-section {
    background: var(--vanilla);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(76, 56, 46, 0.08);
}

.ctt-profile-section h3 {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: var(--earth);
    font-weight: 400;
}

.ctt-profile-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(76, 56, 46, 0.08);
}

.ctt-profile-field:last-child {
    border-bottom: none;
}

.ctt-profile-field label {
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
    min-width: 120px;
}

.ctt-profile-field span {
    font-size: 18px;
    color: rgba(76, 56, 46, 0.8);
    text-align: right;
}

.ctt-profile-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ctt-profile-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctt-profile-form-group label {
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
}

.ctt-profile-form-group input[type="text"],
.ctt-profile-form-group select {
    padding: 16px;
    border: 2px solid var(--stroke-button);
    border-radius: 12px;
    background: var(--vanilla);
    font-size: 16px;
    color: var(--earth);
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.ctt-profile-form-group input[type="text"]:focus,
.ctt-profile-form-group select:focus {
    outline: none;
    border-color: var(--kale);
}

.ctt-profile-checkbox-label,
.ctt-profile-radio-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 18px;
    color: var(--earth);
}

.ctt-profile-checkbox-label input[type="checkbox"],
.ctt-profile-radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid var(--stroke-button);
    border-radius: 4px;
    background: var(--vanilla);
    cursor: pointer;
    appearance: none;
    position: relative;
    flex-shrink: 0;
}

.ctt-profile-radio-label input[type="radio"] {
    border-radius: 50%;
}

.ctt-profile-checkbox-label input[type="checkbox"]:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--vanilla);
    font-size: 12px;
    font-weight: bold;
}

.ctt-profile-checkbox-label input[type="checkbox"]:checked,
.ctt-profile-radio-label input[type="radio"]:checked {
    background: var(--kale);
    border-color: var(--kale);
}

.ctt-profile-radio-label input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--vanilla);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ctt-profile-apply-btn {
    background: var(--primary);
    color: var(--vanilla);
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-family: var(--font-body);
}

.ctt-profile-apply-btn:hover {
    background: #E52F42;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.ctt-profile-error {
    border-color: var(--melon) !important;
}

.ctt-profile-error-message {
    color: var(--melon);
    font-size: 14px;
    margin-top: 4px;
}

/* Mobile Responsive for Profile */
@media (max-width: 768px) {
    .ctt-profile-container {
        padding: 136px 24px 60px;
    }
    
    .ctt-profile-header {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }
    
    .ctt-profile-fpicture {
        width: 100px;
        height: 100px;
    }
    
    .ctt-profile-name h2 {
        font-size: 32px;
    }
    
    .ctt-profile-section {
        padding: 24px;
    }
    
    .ctt-profile-section h3 {
        font-size: 24px;
    }
    
    .ctt-profile-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ctt-profile-field span {
        text-align: left;
    }
    
    .ctt-profile-form-group label {
        font-size: 16px;
    }
    
    .ctt-profile-checkbox-label,
    .ctt-profile-radio-label {
        font-size: 16px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .ctt-profile-container {
        padding: 156px 40px 80px;
    }
    
    .ctt-profile-name h2 {
        font-size: 40px;
    }
    
    .ctt-profile-section h3 {
        font-size: 28px;
    }
}



.support-center-section {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 96px); /* viewport minus fixed nav */
  margin-top: 96px; /* offset for fixed nav */
  background: var(--vanilla);
}

/* Host container fills the section and creates its own stacking context */
#genesys-support-center {
  position: relative;
  flex: 1;
  width: 100%;
  isolation: isolate;   /* ensures our z-index rules are respected */
  z-index: 0;
  overflow: hidden;     /* avoids any injected element bleeding out */
}

/* Make the injected widget/iframe fill the host and sit below nav/dropdowns */
#genesys-support-center iframe,
#genesys-support-center > div {
  position: absolute !important;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100% !important;
  height: 100% !important;
  inset: auto !important;
  z-index: 0 !important;   /* nav/dropdowns render above */
}

/* Optional: when a nav menu is open, prevent the iframe from eating clicks */
body.nav-has-open-menu #genesys-support-center iframe,
body.nav-has-open-menu #genesys-support-center > div {
  pointer-events: none !important;
}
/* Loading button styles */
.ctt-register-continue-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.ctt-register-continue-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--vanilla);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ctt-register-continue-btn.loading span {
    opacity: 0;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Error message styles */
.error-message {
    background: var(--melon);
    color: var(--vanilla);
    border-radius: 20px;
    padding: 16px 24px;
    margin-top: 32px;
    box-shadow: var(--shadow-card);
    animation: slideIn 0.3s ease-out;
}

.error-content {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

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

/* Loading button styles for checkout */
#start-cooking-btn.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

#start-cooking-btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid var(--vanilla);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#start-cooking-btn.loading span {
    opacity: 0;
}

/* Confirmation Page Styles */
.confirmation-section {
    padding: 176px 0 120px;
    background: var(--vanilla);
    min-height: calc(100vh - 96px);
}

.confirmation-card {
    background: var(--shrimp);
    border-radius: 48px;
    padding: 60px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    text-align: center;
}

.confirmation-icon {
    animation: scaleIn 0.5s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.confirmation-heading {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
}

.confirmation-message {
    font-size: 20px;
    line-height: 1.4;
    color: var(--earth);
    margin: 0;
    max-width: 560px;
}

.confirmation-message span {
    font-weight: 700;
    color: var(--kale);
}

.order-details {
    width: 100%;
    background: var(--vanilla);
    border-radius: 32px;
    padding: 32px;
    box-shadow: var(--shadow-card);
}

.order-details h2 {
    font-family: var(--font-display);
    font-size: 40px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: var(--earth);
    font-weight: 400;
}

.order-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--stroke-button);
}

.order-row:last-child {
    border-bottom: none;
    padding-top: 16px;
}

.order-label {
    font-size: 18px;
    color: rgba(76, 56, 46, 0.8);
}

.order-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
}

.order-total {
    font-size: 24px;
    font-weight: 800;
    color: var(--kale);
}

.next-steps {
    width: 100%;
    text-align: left;
}

.next-steps h3 {
    font-family: var(--font-display);
    font-size: 32px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    color: var(--earth);
    font-weight: 400;
    text-align: center;
}

.steps-list-confirmation {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--vanilla);
    padding: 20px;
    border-radius: 20px;
}

.step-emoji {
    font-size: 32px;
    flex-shrink: 0;
}

.step-item p {
    font-size: 18px;
    line-height: 1.4;
    color: var(--earth);
    margin: 0;
    padding-top: 4px;
}

.confirmation-actions {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.confirmation-actions .btn-primary {
    min-width: 240px;
    justify-content: center;
}

@media (max-width: 768px) {
    .confirmation-section {
        padding: 136px 0 60px;
    }

    .confirmation-card {
        padding: 32px 24px;
        border-radius: 32px;
    }

    .confirmation-heading {
        font-size: 40px;
    }

    .confirmation-message {
        font-size: 18px;
    }

    .order-details {
        padding: 24px;
    }

    .order-details h2 {
        font-size: 32px;
    }

    .next-steps h3 {
        font-size: 24px;
    }

    .step-emoji {
        font-size: 24px;
    }

    .step-item p {
        font-size: 16px;
    }

    .confirmation-actions .btn-primary {
        width: 100%;
        max-width: 100%;
    }
}

/* Meals Category Section */
.meals-category-section {
    padding: 40px 0;
    background: var(--vanilla);
}

.meals-category-section:first-of-type {
    padding-top: 136px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.category-emoji {
    font-size: 48px;
    line-height: normal;
}

.category-title {
    font-family: var(--font-display);
    font-size: 48px;
    line-height: 1.1;
    margin: 0;
    color: var(--earth);
    font-weight: 400;
}

.btn-add-cart {
    background: var(--vanilla);
    border: 2px solid var(--stroke-button);
    border-radius: 999px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--earth);
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-family: var(--font-body);
}

.btn-add-cart:hover {
    background: var(--lime);
    color: var(--vanilla);
    border-color: var(--lime);
}

.btn-add-cart .cart-icon {
    width: 24px;
    height: 24px;
}

@media (max-width: 768px) {
    .meals-category-section {
        padding: 116px 0 60px;
    }

    .category-header {
        margin-bottom: 24px;
    }

    .category-emoji {
        font-size: 32px;
    }

    .category-title {
        font-size: 32px;
    }
}

/* Meals Hero Section */
.meals-hero-section {
    padding: 136px 0 40px;
    background: var(--vanilla);
}

.meals-hero-banner {
    position: relative;
    width: 100%;
    height: 296px;
    border-radius: 24px;
    overflow: hidden;
}

.meals-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.meals-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.32), rgba(0, 0, 0, 0));
    border-radius: 24px;
}

.meals-hero-overlay {
    position: absolute;
    right: 0;
    top: -172px;
    width: auto;
    height: calc(100% + 344px);
    object-fit: cover;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
    transform: rotate(166.029deg);
    transform-origin: center;
}

.meals-hero-content {
    position: absolute;
    left: 40px;
    top: 80px;
    max-width: 484px;
    color: var(--vanilla);
    z-index: 1;
}

.meals-hero-content h1 {
    font-family: var(--font-display);
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 16px 0;
    color: var(--vanilla);
    font-weight: 400;
}

.meals-hero-content p {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    color: var(--vanilla);
}

@media (max-width: 768px) {
    .meals-hero-section {
        padding: 116px 0 24px;
    }

    .meals-hero-banner {
        height: 240px;
    }

    .meals-hero-content {
        left: 24px;
        top: 40px;
        max-width: calc(100% - 48px);
    }

    .meals-hero-content h1 {
        font-size: 40px;
    }

    .meals-hero-content p {
        font-size: 16px;
    }

    .meals-hero-overlay {
        display: none;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 600px;
    max-width: calc(100% - var(--space-xl) * 2);
    background: var(--vanilla);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
    padding: var(--space-lg) var(--space-xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    z-index: 1000;
    opacity: 0;
    transition: opacity var(--transition-base), transform var(--transition-base);
}

.cookie-consent__text {
    font-family: var(--font-body);
    font-size: var(--font-size-xs);
    line-height: 1.4;
    color: var(--earth);
    margin: 0;
    text-align: center;
}

.cookie-consent__actions {
    display: flex;
    gap: var(--space-sm);
    flex-shrink: 0;
}

.cookie-consent__btn--accept {
    background: var(--primary);
    color: var(--vanilla);
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-consent__btn--accept:hover {
    background: #E52F42;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cookie-consent__btn--decline {
    background: transparent;
    color: var(--secondary);
    border: 2px solid var(--stroke-button);
    border-radius: var(--radius-md);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: var(--font-size-sm);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.cookie-consent__btn--decline:hover {
    background: var(--secondary);
    color: var(--vanilla);
}

@media (max-width: 768px) {
    .cookie-consent {
        width: calc(100% - var(--space-md) * 2);
        bottom: var(--space-md);
        padding: var(--space-md);
    }

    .cookie-consent__actions {
        width: 100%;
    }

    .cookie-consent__btn--accept,
    .cookie-consent__btn--decline {
        flex: 1;
    }
}
