/* ===== Meal Selection Step 1 Styles - Exact Design Match ===== */
.meal-selection-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: "Delight-Regular", Sans-serif;
    min-height: 100vh;
}

/* Hero Section - Exact Match */
.meal-hero {
    text-align: center;
    margin-bottom: 60px;
    padding: 60px 0;
    background: linear-gradient(135deg, #8B2034 0%, #FB3DB2 100%);
    border-radius: 20px;
    color: white;
}

.meal-hero h1 {
    font-family: "Moret-Regular", Sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 400;
    margin: 0 0 16px 0;
}

.meal-hero .subtitle {
    font-size: clamp(20px, 3vw, 28px);
    font-weight: 700;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Plan Selection Section - Exact Layout */
.plan-selection-section {
    margin-bottom: 50px;
}

.plan-selection-title {
    text-align: center;
    font-family: "Moret-Regular", Sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #8B2034;
    margin-bottom: 40px;
}

.plan-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.plan-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(251, 61, 178, 0.15);
    border-color: #FB3DB2;
}

.plan-card.active {
    border-color: #FB3DB2;
    background: linear-gradient(135deg, #fff 0%, #fef7ff 100%);
    box-shadow: 0 10px 30px rgba(251, 61, 178, 0.2);
}

.plan-card.active::before {
    content: '✓';
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FB3DB2;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.plan-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.plan-name {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.plan-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* People Selection Section - Exact Layout */
.people-selection-section {
    margin-bottom: 50px;
}

.section-title {
    text-align: center;
    font-family: "Moret-Regular", Sans-serif;
    font-size: clamp(20px, 2.5vw, 28px);
    color: #8B2034;
    margin-bottom: 30px;
}

.people-chips {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.people-chip, .meals-chip {
    border: 2px solid #FB3DB2;
    border-radius: 1000px;
    padding: 12px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    background: white;
    color: #FB3DB2;
    font-size: 16px;
    font-weight: 600;
    min-width: 120px;
}

.people-chip:hover, .meals-chip:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 61, 178, 0.2);
}

.people-chip.active, .meals-chip.active {
    background: #FB3DB2;
    color: white;
}

/* Meals Per Week Section - Exact Layout */
.meals-selection-section {
    margin-bottom: 50px;
}

.meals-chips {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.meals-chip {
    position: relative;
    padding: 15px 20px;
}

.meals-price-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.meals-original-price {
    font-size: 12px;
    color: #999;
    text-decoration: line-through;
    opacity: 0.7;
}

.meals-price {
    font-size: 16px;
    font-weight: bold;
    color: #8B2034;
}

.meals-price {
    font-size: 12px;
    font-weight: 700;
    color: #105B41;
    display: block;
    margin-top: 4px;
}

.meals-chip.active .meals-price {
    color: white;
}

.meals-chip.active .meals-original-price {
    color: rgba(255, 255, 255, 0.6);
}

/* Pricing Summary Box */
.pricing-summary-section {
    margin-bottom: 50px;
    max-width: 400px;
    margin: 0 auto;
}

.pricing-card{
    max-width: 560px;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color:#222;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
}

.pc-title{
    text-align:center;
    font-weight:700;
    color:#6b2531;              /* maroon */
    font-size:18px;
    margin: 8px 0 18px;
}

.pc-row{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    padding: 6px 0;
}

.pc-row--spaced{ padding-bottom: 14px; }
.pc-row--top{ align-items:flex-start; }

.pc-label{
    font-size:18px;
    color:#444;
}

.pc-value{
    font-size:22px;
    color:#333;
}
.pc-value--bold{ font-weight:800; }

.pc-values{
    display:flex;
    align-items:baseline;
    gap:18px;
}

.pc-values--stack{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:8px;
}

.pc-old{
    font-size:20px;
    font-weight:700;
    color:#2f2f2f;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color:#2f2f2f;
}

.pc-new{
    font-size:22px;
    font-weight:800;
    color:#6b2531;              /* maroon */
}

.pc-divider{
    height:1px;
    background:#e6e6e6;
    margin: 8px 0 10px;
}

.pc-big{
    font-size:40px;
    font-weight:900;
    color:#6b2531;              /* maroon */
    line-height:1;
}

.pc-save{
    font-size:22px;
    font-weight:800;
    color:#1f7a2f;              /* green */
}

/* Mobile responsive for pricing card */
@media (max-width: 420px){
    .pc-label{ font-size:16px; }
    .pc-old, .pc-new, .pc-value{ font-size:18px; }
    .pc-big{ font-size:34px; }
    .pricing-card{
        padding: 20px;
        margin: 0 15px;
    }
}

/* Continue Button - Exact Match */
.continue-section {
    text-align: center;
    margin-top: 60px;
}

.continue-btn {
    background: #FB3DB2;
    border: 2px solid #FB3DB2;
    color: white;
    border-radius: 1000px;
    padding: 18px 48px;
    text-transform: uppercase;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
}

.continue-btn:hover:not(:disabled) {
    background: #8B2034;
    border-color: #8B2034;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 32, 52, 0.3);
}

.continue-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Responsive Design - Exact Breakpoints */
@media (max-width: 768px) {
    .meal-selection-container {
        padding: 15px;
    }

    .meal-hero {
        padding: 40px 20px;
        margin-bottom: 40px;
    }

    .plan-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .people-chips {
        flex-direction: column;
        align-items: center;
    }

    .people-chip, .meals-chip {
        width: 100%;
        max-width: 300px;
    }

    .meals-chips {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .plan-card {
        padding: 30px 20px;
        min-height: 160px;
    }

    .plan-icon {
        font-size: 36px;
    }

    .plan-name {
        font-size: 20px;
    }

    .meals-chips {
        grid-template-columns: 1fr;
        max-width: 200px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.meal-selection-container > * {
    animation: fadeIn 0.6s ease-out;
}

/* ===== Meal Selection Step 2 Styles ===== */
.meal-selection-step2-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: "Delight-Regular", Sans-serif;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

/* Main Content Area */
.meal-selection-main {
    min-height: 100vh;
}

/* Navigation Header */
.meal-selection-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-back, .nav-next {
    background: #FB3DB2;
    border: 2px solid #FB3DB2;
    color: white;
    border-radius: 1000px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.nav-back:hover, .nav-next:hover:not(:disabled) {
    background: #8B2034;
    border-color: #8B2034;
    transform: translateY(-2px);
}

.nav-next:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.nav-title {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

/* Pre-selection Section */
.pre-selection-section {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.pre-selection-message {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
    text-align: center;
}

.build-your-own-btn {
    background: #8B2034;
    border: 2px solid #8B2034;
    color: white;
    border-radius: 1000px;
    padding: 12px 24px;
    text-transform: uppercase;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.build-your-own-btn:hover {
    background: #FB3DB2;
    border-color: #FB3DB2;
    transform: translateY(-2px);
}

/* Meal Count Header */
.meal-count-header {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.meal-count-text {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.meal-count-progress {
    font-size: 24px;
    color: #FB3DB2;
    font-weight: 700;
}

/* Meal Grid */
.meal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

/* Meal Cards */
.meal-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.meal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-color: #FB3DB2;
}

.meal-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    position: relative;
}

@media (max-width: 768px) {
    .meal-image {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .meal-image {
        height: 140px;
    }
}

.meal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 12px 12px 0 0;
}

.meal-card:hover .meal-image img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

/* Loading state for images */
.meal-image img {
    animation: imageLoad 0.5s ease-out;
}

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

.meal-body {
    padding: 20px;
}

.meal-price-display {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0;
}

.meal-original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    opacity: 0.7;
}

.meal-current-price {
    font-size: 16px;
    font-weight: bold;
    color: #8B2034;
}

.meal-name {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Chef Special Badge */
.chef-special-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    padding: 6px 12px;
    background: rgba(255, 68, 68, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(255, 68, 68, 0.3);
}

.fire-icon {
    font-size: 16px;
}

.chef-text {
    font-size: 12px;
    font-weight: 600;
    color: #ff4444;
}

.price-badge {
    font-size: 10px;
    font-weight: bold;
    background: #ff4444;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: auto;
}

.chef-description {
    font-size: 12px;
    color: #ff4444;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.3;
}

/* Portion Selection */
.portion-selection {
    margin-bottom: 15px;
}

.portion-buttons {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.portion-btn {
    flex: 1;
    min-width: 80px;
    padding: 8px 12px;
    border: 2px solid #FB3DB2;
    border-radius: 8px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    font-size: 12px;
    font-weight: 500;
    color: #FB3DB2;
    position: relative;
}

.portion-btn:hover {
    border-color: #FB3DB2;
    color: #FB3DB2;
}

.portion-btn.active {
    background: #FB3DB2;
    color: white;
    border-color: #FB3DB2;
}

.price-tag {
    font-size: 10px;
    font-weight: bold;
    background: #105B41;
    color: white;
    padding: 2px 4px;
    border-radius: 4px;
    margin-left: 4px;
}

.portion-btn.active .price-tag {
    background: rgba(255, 255, 255, 0.3);
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.qty-minus,
.qty-plus {
    width: 32px;
    height: 32px;
    border: 2px solid #FB3DB2;
    border-radius: 50%;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #FB3DB2;
    transition: all 0.2s ease;
	padding:0 !important;
}

.qty-minus:hover,
.qty-plus:hover {
    border-color: #FB3DB2;
    color: #FB3DB2;
}

.qty-display {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    min-width: 30px;
    text-align: center;
}

/* More Info Button */
.more-info-btn {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    color: #fff;
    transition: all 0.2s ease;
}

.more-info-btn:hover {
    background: #e9ecef;
    border-color: #FB3DB2;
    color: #FB3DB2;
}

/* Weekly Order Column */
.weekly-order-column {
    position: sticky;
    top: 200px;
    height: fit-content;
}

.weekly-order-box {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.weekly-order-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.weekly-order-title {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.weekly-order-summary {
    margin-bottom: 20px;
    max-height: 120px; /* Height for 2 meals */
    overflow-y: auto;
    overflow-x: hidden;
}

/* Custom scrollbar for weekly order summary */
.weekly-order-summary::-webkit-scrollbar {
    width: 6px;
}

.weekly-order-summary::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.weekly-order-summary::-webkit-scrollbar-thumb {
    background: #FB3DB2;
    border-radius: 3px;
}

.weekly-order-summary::-webkit-scrollbar-thumb:hover {
    background: #8B2034;
}

.order-meal-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.order-meal-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 20px;
}

.order-meal-details {
    flex: 1;
}

.order-meal-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.order-meal-portions {
    font-size: 12px;
    color: #666;
}

.order-meal-quantity {
    font-size: 14px;
    font-weight: 600;
    color: #FB3DB2;
}

.weekly-order-pricing {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}

.pricing-row.total {
    border-top: 2px solid #333;
    padding-top: 12px;
    margin-top: 8px;
    font-weight: 700;
    font-size: 16px;
}

.pricing-row.save-row {
    color: #105B41;
    margin-top: 8px;
}

.save-value {
    color: #105B41;
    font-weight: 700;
}

.pricing-label {
    color: #666;
}

.pricing-value {
    color: #333;
    font-weight: 600;
}

.pricing-value.total {
    color: #333;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .meal-selection-step2-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .weekly-order-column {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        background: white;
        border-radius: 20px 20px 0 0;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(calc(100% - 60px));
        transition: transform 0.3s ease;
    }

    .weekly-order-column.expanded {
        transform: translateY(0);
    }

    .weekly-order-box {
        border-radius: 20px 20px 0 0;
        border: none;
        box-shadow: none;
    }

    .mobile-order-toggle {
        padding: 20px;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
        cursor: pointer;
    }

    .mobile-order-toggle-text {
        font-family: "Moret-Regular", Sans-serif;
        font-size: 16px;
        font-weight: 600;
        color: #333;
    }

    .weekly-order-content {
        max-height: 400px;
        overflow-y: auto;
        padding: 0 25px 25px;
    }
    
    /* Mobile weekly order summary with custom scrollbar */
    .weekly-order-summary {
        max-height: 120px; /* Height for 2 meals */
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .weekly-order-summary::-webkit-scrollbar {
        width: 6px;
    }
    
    .weekly-order-summary::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 3px;
    }
    
    .weekly-order-summary::-webkit-scrollbar-thumb {
        background: #FB3DB2;
        border-radius: 3px;
    }
    
    .weekly-order-summary::-webkit-scrollbar-thumb:hover {
        background: #8B2034;
    }
}

@media (max-width: 768px) {
    .meal-grid {
        grid-template-columns: 1fr;
    }

    .meal-selection-nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-back, .nav-next {
        width: 100%;
        text-align: center;
    }
}

/* ===== Account Step Styles ===== */
.account-step-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: "Delight-Regular", Sans-serif;
    min-height: 100vh;
}

.account-welcome {
    text-align: center;
    margin-bottom: 40px;
}

.account-welcome h2 {
    font-family: "Moret-Regular", Sans-serif;
    font-size: clamp(24px, 3vw, 32px);
    color: #8B2034;
    margin-bottom: 16px;
}

.account-welcome p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.account-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
}

.account-tab {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 1000px;
    padding: 12px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #666;
    min-width: 120px;
}

.account-tab:hover {
    border-color: #FB3DB2;
    color: #FB3DB2;
}

.account-tab.active {
    background: #FB3DB2;
    color: white;
    border-color: #FB3DB2;
}

.account-form-container {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.account-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid #000000BA;
    font-family: "Delight-Regular", Sans-serif;
    font-size: 16px;
    border-radius: 10px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #FB3DB2;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.forgot-password {
    color: #FB3DB2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.forgot-password:hover {
    color: #8B2034;
}

.account-submit-btn {
    background: #FB3DB2;
    border: 2px solid #FB3DB2;
    color: white;
    border-radius: 1000px;
    padding: 14px 28px;
    text-transform: uppercase;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    letter-spacing: 0.6px;
}

.account-submit-btn:hover:not(:disabled) {
    background: #8B2034;
    border-color: #8B2034;
    transform: translateY(-2px);
}

.account-submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .account-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .account-tab {
        width: 100%;
        max-width: 200px;
    }
    
    .form-options {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ===== SweetAlert2 Custom Styling ===== */
.meal-swal {
    border-radius: 20px;
    border: 2px solid #FB3DB2F2;
}

.meal-swal-title {
    font-family: "Moret-Regular", Sans-serif;
    color: #8B2034;
}

.meal-swal-confirm {
    background: #FB3DB2F2 !important;
    border: 2px solid #FB3DB2F2 !important;
}

/* ===== Combined Meal Selection Container ===== */
.meal-selection-combined-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 16px;
    font-family: "Delight-Regular", Sans-serif;
    min-height: 100vh;
}

/* Step containers */
.step-container {
    width: 100%;
}

/* Initially hide other steps */
#step2-container,
#step3-container {
    display: none;
}

/* Smooth transitions between steps */
.step-container {
    transition: opacity 0.3s ease;
}

/* Override Step 1 continue button for combined flow */
#meal-selection-step1 #continue-btn {
    background: linear-gradient(135deg, #FB3DB2 0%, #8B2034 100%);
    border: none;
    color: white;
    border-radius: 1000px;
    padding: 18px 48px;
    text-transform: uppercase;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(251, 61, 178, 0.3);
}

#meal-selection-step1 #continue-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #8B2034 0%, #FB3DB2 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 32, 52, 0.4);
}

/* Step indicators */
.step-indicators {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
}

.step-indicator {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
    position: relative;
}

.step-indicator.active {
    background: #FB3DB2;
    color: white;
    transform: scale(1.1);
}

.step-indicator.completed {
    background: #105B41;
    color: white;
}

.step-indicator.completed::after {
    content: '✓';
    position: absolute;
    font-size: 14px;
}

/* Limit warning styles */
.limit-warning {
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.limit-toast {
    animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments for combined view */
@media (max-width: 768px) {
    .meal-selection-combined-container {
        padding: 15px;
    }

    .step-indicators {
        margin-bottom: 20px;
    }

    .step-indicator {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .limit-toast {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 14px;
    }
}

/* ===== Checkout Step Styles ===== */
.checkout-step-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.checkout-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.checkout-order-summary,
.delivery-info,
.payment-method {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checkout-order-summary h3,
.delivery-info h3,
.payment-method h3 {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 20px;
    color: #8B2034;
    margin-bottom: 20px;
}

.checkout-meal-list {
    margin-bottom: 20px;
}

.checkout-meal-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.checkout-pricing {
    border-top: 1px solid #e9ecef;
    padding-top: 20px;
}

.checkout-sidebar {
    position: sticky;
    top: 20px;
    height: fit-content;
}

.order-complete-box {
    background: linear-gradient(135deg, #FB3DB2 0%, #8B2034 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.order-complete-box h4 {
    font-family: "Moret-Regular", Sans-serif;
    font-size: 24px;
    margin-bottom: 15px;
}

.order-complete-box p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.complete-order-btn {
    width: 100%;
    padding: 16px;
    background: white;
    color: #FB3DB2;
    border: none;
    border-radius: 8px;
    font-family: "Moret-Regular", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 15px;
}

.complete-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.secure-checkout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #FB3DB2;
}

.payment-option input[type="radio"] {
    margin-right: 15px;
}

.payment-details {
    flex: 1;
}

.payment-name {
    font-weight: 600;
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.payment-desc {
    font-size: 14px;
    color: #666;
}

/* Responsive for Account & Checkout */
@media (max-width: 768px) {
    .account-step-container,
    .checkout-step-container {
        padding: 20px 15px;
    }

    .account-tabs {
        flex-direction: column;
        align-items: center;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .checkout-content {
        grid-template-columns: 1fr;
    }

    .checkout-sidebar {
        position: static;
    }

    .social-buttons {
        flex-direction: column;
    }
}
