/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Orange Color Palette - matching Flutter app */
    --primary-orange: #FF9800;
    --primary-orange-dark: #F57C00;
    --primary-orange-light: #FFB74D;
    --accent-orange: #FFE0B2;
    --background-primary: #FFFFFF;
    --background-secondary: #FFF8E1;
    --background-auth: #F5F1E8;
    --text-primary: #1A1A1A;
    --text-secondary: #424242;
    --text-muted: #757575;
}

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

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

/* Header */
.header {
    padding: 20px 0;
    background-color: #FEFEFE;
    border-bottom: 1px solid #E8E8E8;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-orange);
}

.nav-link.active {
    color: var(--primary-orange);
    font-weight: 600;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Hero Section */
.hero {
    padding: 80px 0 40px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
}

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

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-why {
    margin-bottom: 24px;
    padding: 24px;
    background-color: var(--accent-orange);
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

.why-statement {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-orange-dark);
    font-style: italic;
    line-height: 1.5;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
    text-decoration: none;
    display: inline-block;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 152, 0, 0.4);
}

.cta-note {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.ownership-note {
    font-size: 12px;
    color: var(--primary-orange-dark);
    margin: 8px 0 0 0;
    font-weight: 500;
    font-style: italic;
}

/* Phone Slider */
.phone-slider {
    position: relative;
    max-width: 1400px;
    margin: 60px auto 0;
}

.slider-container {
    overflow: hidden;
    position: relative;
    padding: 40px 0 100px 0;
}

.slider-track {
    display: flex;
    gap: 70px;
    transition: transform 0.5s ease;
    justify-content: flex-start;
    align-items: center;
    /* Remove padding since we're using transforms for positioning */
}

/* Slider Items */
.slider-item {
    flex: 0 0 450px; /* Even bigger for desktop */
    position: relative;
    transition: all 0.5s ease;
    opacity: 0.7; /* Less dimmed for better visibility */
    transform: scale(0.8);
}

.slider-item.active {
    opacity: 1;
    transform: scale(1);
}

/* Cookbook Item (no frame) - larger size */
.cookbook-item {
    flex: 0 0 550px !important; /* 100px bigger than regular items */
}

.cookbook-item .cookbook-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Phone Frame (thin border) */
.phone-frame {
    background: #000000;
    border-radius: 30px;
    padding: 4px; /* Slightly thicker for visibility */
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.phone-screen {
    background: #ffffff;
    border-radius: 26px;
    overflow: hidden;
    position: relative;
}

.phone-screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Labels (always visible) */
.item-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
}

.label-number {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.label-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-orange-dark);
}

/* Arrow Navigation */
.slider-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    color: var(--primary-orange);
}

.slider-arrow:hover {
    background: white;
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow-left {
    left: 20px; /* Inside the container but outside content */
}

.slider-arrow-right {
    right: 20px; /* Inside the container but outside content */
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #E0E0E0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    width: 30px;
    border-radius: 5px;
    background: var(--primary-orange);
}

.dot:hover {
    background: #B0B0B0;
}

.dot.active:hover {
    background: var(--primary-orange-light);
}

/* Story Section */
.story {
    padding: 100px 0;
    background-color: var(--background-auth);
}

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

.story-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 40px;
}

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

.story-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--primary-orange-dark);
}

/* Solution Section */
.solution {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
}

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

.step {
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
    background-color: var(--background-secondary);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.step h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.step p {
    font-size: 16px;
    color: var(--text-secondary);
}

.solution-note {
    text-align: center;
    font-size: 18px;
    color: var(--primary-orange-dark);
    font-style: italic;
    font-weight: 500;
}

/* Discovery Section */
.discovery {
    padding: 100px 0;
    background: #8D6E63;
    color: white;
    text-align: center;
}

.discovery .section-title {
    color: white;
    margin-bottom: 30px;
}

.discovery-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.cuisine-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cuisine-icon {
    font-size: 32px;
    padding: 16px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.cuisine-icon:hover {
    transform: scale(1.2);
}

/* How It Works */
.how-it-works {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.workflow {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
}

.workflow-number {
    background: linear-gradient(135deg, #4A5D4A 0%, #5A6B5A 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.workflow-text {
    color: #2D3748;
}

.workflow-note {
    text-align: center;
    font-size: 18px;
    color: #5A6B5A;
    font-style: italic;
}

/* PWA Benefits */
.pwa-benefits {
    padding: 100px 0;
    background-color: var(--background-secondary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.benefit {
    text-align: center;
    padding: 30px 20px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 16px;
    display: block;
}

.benefit p {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 500;
}

.benefits-note {
    text-align: center;
    font-size: 18px;
    color: var(--primary-orange-dark);
    font-style: italic;
    font-weight: 500;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--text-secondary) 0%, var(--primary-orange-dark) 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: white;
}

.final-cta .cta-primary {
    background: linear-gradient(135deg, #FFFFFF 0%, var(--background-secondary) 100%);
    color: var(--primary-orange-dark);
    font-size: 20px;
    padding: 18px 36px;
    margin-bottom: 16px;
}

.final-cta .cta-primary:hover {
    background: linear-gradient(135deg, var(--background-secondary) 0%, #FFFFFF 100%);
}

.final-cta .cta-note {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #1A1A1A;
    text-align: center;
}

.footer-links {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.footer-links a {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-orange-light);
}

.footer p {
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-orange);
}

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

/* Roadmap Page Styles */
.roadmap {
    padding: 80px 0;
    background-color: var(--background-primary);
}

.roadmap-intro {
    text-align: center;
    margin-bottom: 60px;
}

.roadmap-text {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: var(--background-primary);
    border: 2px solid var(--accent-orange);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(255, 152, 0, 0.15);
}

.feature-card.community {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--background-secondary) 100%);
    border-color: var(--primary-orange);
}

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

.feature-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-status {
    display: inline-block;
    background: var(--primary-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.feature-action {
    margin-top: 20px;
}

.cta-secondary {
    background: var(--primary-orange);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-secondary:hover {
    background: var(--primary-orange-dark);
    transform: translateY(-2px);
}

.roadmap-note {
    background: var(--background-secondary);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border-left: 4px solid var(--primary-orange);
}

.roadmap-note h3 {
    font-size: 24px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.roadmap-note p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 12px;
}

.roadmap-note p:last-child {
    margin-bottom: 0;
}

.roadmap-cta {
    padding: 80px 0;
    background: var(--background-auth);
    text-align: center;
}

.roadmap-cta .cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.roadmap-cta .cta-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Support Page Styles */
.support {
    padding: 80px 0;
    background-color: var(--background-primary);
    text-align: center;
}

.support-content {
    max-width: 600px;
    margin: 0 auto;
}

.support h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.support p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.support-email {
    background: var(--accent-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 12px;
    padding: 20px;
    margin: 30px 0;
}

.support-email a {
    color: var(--primary-orange-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
}

.support-email a:hover {
    color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .slider-arrow-left {
        left: 15px;
    }
    
    .slider-arrow-right {
        right: 15px;
    }
}

@media (max-width: 1024px) {
    .slider-item {
        flex: 0 0 380px;
    }
    
    .cookbook-item {
        flex: 0 0 430px !important;
    }
    
    .slider-arrow-left {
        left: 15px;
    }
    
    .slider-arrow-right {
        right: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 30px 0;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    /* Mobile Header */
    .header {
        padding: 16px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        justify-content: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .nav {
        gap: 20px;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 10px;
    }
    
    .nav-link {
        font-size: 14px;
        padding: 8px 12px;
        border-radius: 6px;
        transition: background-color 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background-color: var(--accent-orange);
    }
    
    .phone-slider {
        margin: 40px auto 0;
    }
    
    .slider-item {
        flex: 0 0 350px;
    }
    
    .cookbook-item {
        flex: 0 0 400px !important;
    }
    
    .slider-arrow {
        width: 48px;
        height: 48px;
    }
    
    .slider-arrow-left {
        left: 10px;
    }
    
    .slider-arrow-right {
        right: 10px;
    }
    
    .solution-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .workflow {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .story-title {
        font-size: 28px;
    }
    
    .story-text p {
        font-size: 18px;
    }
    
    .discovery-text {
        font-size: 18px;
    }
    
    .cta-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 40px 0 20px 0;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-why {
        padding: 16px;
        margin-bottom: 16px;
    }
    
    .why-statement {
        font-size: 16px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .logo-img {
        width: 36px;
        height: 36px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    /* Small Mobile Header */
    .header {
        padding: 12px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 12px;
        justify-content: center;
    }
    
    .logo {
        justify-content: center;
    }
    
    .nav {
        gap: 16px;
        justify-content: center;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 0 8px;
    }
    
    .nav-link {
        font-size: 13px;
        padding: 6px 10px;
        border-radius: 6px;
    }
    
    .phone-slider {
        margin: 30px auto 0;
    }
    
    .slider-container {
        padding: 30px 0 80px 0;
    }
    
    .slider-item {
        flex: 0 0 300px;
    }
    
    .cookbook-item {
        flex: 0 0 350px !important;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
    }
    
    .slider-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .slider-arrow-left {
        left: 5px;
    }
    
    .slider-arrow-right {
        right: 5px;
    }
    
    .label-number {
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
    
    .label-text {
        font-size: 16px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .cuisine-icons {
        gap: 12px;
    }
    
    .cuisine-icon {
        font-size: 24px;
        padding: 12px;
    }
    
    .solution, .discovery, .how-it-works, .pwa-benefits, .final-cta, .story {
        padding: 60px 0;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Plans Page Styles */
.plans {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-primary) 100%);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.plan-popular {
    border-color: var(--primary-orange);
    transform: scale(1.05);
}

.plan-popular:hover {
    transform: scale(1.05) translateY(-4px);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-orange);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-icon {
    margin-bottom: 20px;
}

.icon-background {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--accent-orange);
    border-radius: 50%;
    font-size: 24px;
    margin: 0 auto;
}

.plan-name {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.plan-tagline {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-orange);
}

.price-period {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.plan-billing {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.plan-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    color: var(--text-secondary);
    font-size: 15px;
}

.plan-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-orange);
    font-weight: 600;
}

.feature-highlight {
    color: var(--primary-orange) !important;
    font-weight: 600;
}

.plan-button {
    display: block;
    width: 100%;
    padding: 16px 24px;
    border: 2px solid var(--primary-orange);
    background: white;
    color: var(--primary-orange);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.plan-button:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

.plan-button-primary {
    background: var(--primary-orange);
    color: white;
}

.plan-button-primary:hover {
    background: var(--primary-orange-dark);
    border-color: var(--primary-orange-dark);
}

.recipe-ownership-note {
    background: var(--accent-orange);
    border-radius: 12px;
    padding: 24px;
    margin: 40px auto;
    max-width: 600px;
    text-align: center;
    border-left: 4px solid var(--primary-orange);
}

.recipe-ownership-note h3 {
    color: var(--primary-orange-dark);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.recipe-ownership-note p {
    color: var(--text-secondary);
    font-size: 16px;
    margin: 0;
    line-height: 1.5;
}

.plans-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 40px;
}

