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

body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-logo h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 400;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.hero-subtitle {
    font-size: 20px;
    color: #6e6e73;
    margin-bottom: 40px;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #1d1d1f;
    border: 2px solid #1d1d1f;
}

.btn-secondary:hover {
    background: #1d1d1f;
    color: white;
    transform: translateY(-2px);
}

.hero-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.hero-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.hero-card ul {
    list-style: none;
}

.hero-card li {
    padding: 8px 0;
    font-size: 16px;
    color: #6e6e73;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1d1d1f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: 16px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.feature-card p {
    color: #6e6e73;
    font-size: 16px;
    line-height: 1.6;
}

/* What is Low FODMAP Section */
.what-is {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.text-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.text-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 32px 0 16px;
    color: #1d1d1f;
}

.text-content p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 16px;
    line-height: 1.6;
}

.text-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.text-content li {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 8px;
    line-height: 1.6;
}

.info-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.info-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d1d1f;
}

.phase {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.phase:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.phase h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.phase p {
    font-size: 14px;
    color: #6e6e73;
}

/* Food Lists Section */
.food-lists {
    padding: 80px 0;
    background: white;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #6e6e73;
    margin-bottom: 40px;
}

.search-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 16px;
}

.search-input {
    padding: 16px 24px;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 16px;
    width: 400px;
    max-width: 100%;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: #667eea;
}

.search-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #e5e5e7;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6e6e73;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

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

.food-item {
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s ease;
}

.food-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.food-name {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.food-category {
    font-size: 14px;
    color: #667eea;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.food-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.food-status.low {
    background: #d4edda;
    color: #155724;
}

.food-status.high {
    background: #f8d7da;
    color: #721c24;
}

.download-section {
    text-align: center;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
}

.download-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.download-section p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Recipes Section */
.recipes {
    padding: 80px 0;
    background: #f8f9fa;
}

.recipe-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e5e5e7;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6e6e73;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.recipe-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.recipe-image {
    height: 200px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.recipe-placeholder {
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.recipe-content {
    padding: 24px;
}

.recipe-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.recipe-content p {
    color: #6e6e73;
    margin-bottom: 16px;
    font-size: 14px;
}

.recipe-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #6e6e73;
}

.recipe-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.recipe-link:hover {
    color: #764ba2;
}

/* Guides Section */
.guides {
    padding: 80px 0;
    background: white;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.guide-card {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.guide-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.guide-card p {
    color: #6e6e73;
    margin-bottom: 20px;
    font-size: 16px;
}

.guide-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.guide-card li {
    padding: 8px 0;
    color: #6e6e73;
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.guide-card li::before {
    content: '•';
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.guide-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #764ba2;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1d1d1f;
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 200px;
}

.faq-answer p {
    color: #6e6e73;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-section h3 {
    color: #ecf0f1;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
}

.footer-section h4 {
    color: #bdc3c7;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 500;
}

.footer-section p {
    color: #95a5a6;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #95a5a6;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    padding: 2px 0;
}

.footer-section a:hover {
    color: #3498db;
    transform: translateX(5px);
}

/* Footer Social */
.footer-social {
    margin-top: 20px;
}

.footer-social span {
    display: block;
    color: #bdc3c7;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #3498db;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom-content {
    text-align: center;
}

.footer-bottom-content p {
    color: #95a5a6;
    margin: 5px 0;
    font-size: 0.9rem;
}

.footer-bottom-content p:first-child {
    font-weight: 500;
}

.footer-bottom-content p:last-child {
    font-style: italic;
    font-size: 0.85rem;
}

/* Mobile Footer */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section a:hover {
        transform: none;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 20px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .info-card {
        position: static;
    }

    .search-container {
        flex-direction: column;
        align-items: center;
    }

    .search-input {
        width: 100%;
        max-width: 400px;
    }

    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .recipe-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .filter-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.recipe-card,
.guide-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Blog Styles */
.blog-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.blog-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

.blog-header p {
    font-size: 20px;
    opacity: 0.9;
}

.blog-content {
    padding: 80px 0;
    background: white;
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-main {
    min-height: 100vh;
}

.featured-article {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 300px;
}

.article-image {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.article-placeholder {
    font-size: 64px;
}

.article-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.category {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.date {
    color: #6e6e73;
}

.featured-article h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
    line-height: 1.3;
}

.featured-article p {
    color: #6e6e73;
    margin-bottom: 24px;
    line-height: 1.6;
}

.read-more {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #764ba2;
}

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

.blog-article {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.blog-article .article-image {
    height: 200px;
}

.blog-article .article-content {
    padding: 24px;
}

.blog-article h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
    line-height: 1.4;
}

.blog-article p {
    color: #6e6e73;
    margin-bottom: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.load-more-container {
    text-align: center;
    margin-top: 40px;
}

.load-more-btn {
    padding: 16px 40px;
    font-size: 16px;
}

/* Sidebar Styles */
.blog-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
}

.sidebar-widget h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.sidebar-widget .search-container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-widget .search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    font-size: 14px;
}

.sidebar-widget .search-btn {
    padding: 12px 24px;
    font-size: 14px;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    color: #6e6e73;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #667eea;
}

.category-list span {
    background: #e5e5e7;
    color: #6e6e73;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

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

.popular-article {
    padding-bottom: 16px;
    border-bottom: 1px solid #e5e5e7;
}

.popular-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-article h4 {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    line-height: 1.4;
}

.popular-article h4 a {
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.popular-article h4 a:hover {
    color: #667eea;
}

.views {
    font-size: 12px;
    color: #6e6e73;
}

.newsletter-widget {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.newsletter-widget h3,
.newsletter-widget p {
    color: white;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.email-input {
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    background: white;
}

.newsletter-widget .btn-primary {
    background: white;
    color: #667eea;
    font-weight: 600;
}

.newsletter-widget .btn-primary:hover {
    background: #f8f9fa;
}

/* Active nav link */
.nav-link.active {
    color: #667eea;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive Blog Layout */
@media (max-width: 768px) {
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-header h1 {
        font-size: 36px;
    }
    
    .blog-header p {
        font-size: 18px;
    }
}

/* Language Selector */
.language-selector {
    position: relative;
    display: inline-block;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: transparent;
    border: 2px solid #e5e5e7;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #1d1d1f;
}

.language-toggle:hover {
    border-color: #667eea;
    background: #f8f9fa;
}

.current-flag {
    font-size: 16px;
}

.current-lang {
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

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

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 14px;
    color: #1d1d1f;
}

.language-option:hover {
    background: #f8f9fa;
}

.language-option.active {
    background: #f0f4ff;
    color: #667eea;
}

.language-option .flag {
    font-size: 16px;
}

.language-option .name {
    font-weight: 500;
}

/* RTL Support */
[dir="rtl"] .language-dropdown {
    right: auto;
    left: 0;
}

[dir="rtl"] .language-option {
    text-align: right;
}

/* Mobile Language Selector */
@media (max-width: 768px) {
    .language-selector {
        margin-left: auto;
        margin-right: 16px;
    }
    
    .language-toggle {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .current-lang {
        display: none;
    }
    
    .language-dropdown {
        min-width: 150px;
    }
}

/* AdSense optimization areas */
.ad-container {
    background: #f8f9fa;
    border: 1px solid #e5e5e7;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-container p {
    color: #6e6e73;
    font-size: 14px;
}

/* Recipe Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: #fff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #bdc3c7;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background-color: #f8f9fa;
    color: #e74c3c;
    transform: rotate(90deg);
}

.modal-body {
    padding: 0 40px 40px;
}

.recipe-image-large {
    text-align: center;
    margin: 20px 0 30px;
}

.recipe-icon-large {
    font-size: 4rem;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    gap: 8px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.recipe-description {
    font-size: 1.2rem;
    color: #7f8c8d;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.recipe-meta-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.meta-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 500;
}

.meta-item span:last-child {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.recipe-section {
    margin-bottom: 35px;
}

.recipe-section h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ecf0f1;
    font-weight: 600;
}

.recipe-ingredients,
.recipe-instructions,
.recipe-nutrition {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #3498db;
}

.recipe-ingredients {
    border-left-color: #e74c3c;
}

.recipe-instructions {
    border-left-color: #f39c12;
}

.recipe-nutrition {
    border-left-color: #27ae60;
}

.recipe-ingredients,
.recipe-instructions {
    white-space: pre-line;
    line-height: 1.8;
    color: #2c3e50;
}

.recipe-nutrition {
    font-weight: 600;
    color: #27ae60;
    text-align: center;
    font-size: 1.1rem;
}

/* Detailed Recipe Styles */
.ingredient-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

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

.ingredient-name {
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.ingredient-amount {
    font-weight: 600;
    color: #667eea;
    margin: 0 15px;
    min-width: 80px;
    text-align: right;
}

.ingredient-notes {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    flex: 1;
    text-align: right;
}

.instruction-step {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    line-height: 1.6;
    color: #2c3e50;
    padding-top: 4px;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.nutrition-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #ecf0f1;
}

.nutrition-label {
    display: block;
    font-size: 0.85rem;
    color: #7f8c8d;
    margin-bottom: 5px;
    font-weight: 500;
}

.nutrition-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
}

.recipe-tips {
    background: #fff3cd;
    border-left-color: #ffc107;
}

.recipe-tips-list {
    background: #fff3cd;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #ffc107;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    padding: 8px 0;
}

.tip-item:last-child {
    margin-bottom: 0;
}

.tip-icon {
    font-size: 1.2rem;
    margin-right: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.tip-text {
    color: #856404;
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 20px;
}

.video-container iframe {
    border-radius: 10px;
    width: 100%;
    height: 400px;
}

/* Resources Section */
.resources-section {
    padding: 80px 0;
    background: #fff;
}

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

.resource-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.resource-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.resource-card p {
    color: #6c757d;
    margin-bottom: 25px;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.resource-link:hover {
    background: transparent;
    color: #007bff;
    border-color: #007bff;
    transform: translateY(-2px);
}

.resources-note {
    margin-top: 50px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #007bff;
}

.resources-note p {
    color: #6c757d;
    font-style: italic;
    margin: 0;
    text-align: center;
}

/* External Resources Section */
.external-resources {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.external-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.external-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.external-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #28a745;
}

.external-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.external-card h3 {
    color: #2c3e50;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 600;
}

.external-card p {
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.external-link {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 0.9rem;
}

.external-link:hover {
    background: transparent;
    color: #28a745;
    border-color: #28a745;
    transform: translateY(-2px);
}

/* Mobile Video and Resources */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-container {
        margin: 0 20px;
        padding: 15px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .resources-section {
        padding: 60px 0;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }
    
    .resource-card {
        padding: 25px 20px;
    }
    
    .resource-icon {
        font-size: 2.5rem;
    }
}

/* Mobile Recipe Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header {
        padding: 20px 25px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 0 25px 25px;
    }
    
    .recipe-meta-info {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .recipe-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .ingredient-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .ingredient-amount {
        margin: 0;
        text-align: left;
        min-width: auto;
    }
    
    .ingredient-notes {
        text-align: left;
        font-size: 0.8rem;
    }
    
    .nutrition-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .nutrition-item {
        padding: 10px;
    }
    
    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        margin-right: 12px;
    }
    
    .tip-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .tip-icon {
        margin-right: 0;
        margin-bottom: 4px;
    }
}

/* Guide Page Styles */
.guide-header {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.guide-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.guide-header-content p {
    font-size: 20px;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.guide-breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.guide-breadcrumb a:hover {
    opacity: 0.7;
}

.breadcrumb-separator {
    opacity: 0.6;
}

.guide-nav {
    background: white;
    border-bottom: 1px solid #e5e5e7;
    padding: 20px 0;
    position: sticky;
    top: 60px;
    z-index: 100;
}

.guide-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.guide-tab {
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #e5e5e7;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6e6e73;
}

.guide-tab.active,
.guide-tab:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-color: transparent;
}

.guide-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.guide-section {
    display: none;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-section.active {
    display: block;
}

.guide-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.guide-section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.guide-section-header p {
    font-size: 18px;
    color: #6e6e73;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.guide-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.step-content p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 20px;
    line-height: 1.6;
}

.step-content ul {
    margin: 16px 0;
    padding-left: 20px;
}

.step-content li {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 8px;
    line-height: 1.6;
}

.step-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.step-item {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.step-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.step-item ul {
    margin: 0;
    padding-left: 16px;
}

.step-item li {
    font-size: 14px;
    margin-bottom: 6px;
}

.phase-timeline {
    margin-top: 20px;
}

.timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 19px;
    top: 40px;
    width: 2px;
    height: calc(100% + 10px);
    background: #e5e5e7;
}

.timeline-marker {
    width: 40px;
    height: 40px;
    background: #667eea;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.timeline-content p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.meal-planning-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.tip-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e5e5e7;
    transition: all 0.3s ease;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.tip-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.tip-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.tip-card p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.guide-tips {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #e5e5e7;
}

.guide-tips h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1d1d1f;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.tip-item .tip-icon {
    font-size: 20px;
    margin: 0;
    flex-shrink: 0;
}

.tip-item p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
    line-height: 1.5;
}

.restaurant-types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.restaurant-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.restaurant-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.restaurant-card ul {
    margin: 0;
    padding-left: 16px;
}

.restaurant-card li {
    font-size: 14px;
    margin-bottom: 6px;
}

.call-script {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid #667eea;
}

.call-script h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.script-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e5e5e7;
}

.script-content p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
    font-style: italic;
    line-height: 1.6;
}

.ordering-tips {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.tip-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.tip-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.tip-section ul {
    margin: 0;
    padding-left: 16px;
}

.tip-section li {
    font-size: 14px;
    margin-bottom: 6px;
}

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

.travel-tip {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.travel-tip h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.travel-tip p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.label-reading {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.label-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
}

.label-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.label-section ul {
    margin: 0;
    padding-left: 16px;
}

.label-section li {
    font-size: 14px;
    margin-bottom: 6px;
}

.store-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.store-section {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.store-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.store-section p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

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

.budget-tip {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
}

.budget-tip h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1d1d1f;
}

.budget-tip p {
    font-size: 14px;
    color: #6e6e73;
    margin: 0;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.mistake-card {
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.mistake-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mistake-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.mistake-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1d1d1f;
}

.mistake-card > p {
    font-size: 16px;
    color: #6e6e73;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mistake-examples {
    background: #fff3cd;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    border-left: 4px solid #ffc107;
}

.mistake-examples h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #856404;
}

.mistake-examples ul {
    margin: 0;
    padding-left: 16px;
}

.mistake-examples li {
    font-size: 14px;
    color: #856404;
    margin-bottom: 4px;
}

.mistake-solution {
    background: #d4edda;
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid #28a745;
}

.mistake-solution h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #155724;
}

.mistake-solution p {
    font-size: 14px;
    color: #155724;
    margin: 0;
}

.related-resources {
    padding: 80px 0;
    background: white;
}

.related-resources h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1d1d1f;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.resource-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e5e7;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.resource-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.resource-card p {
    color: #6e6e73;
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.6;
}

.resource-link {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Mobile Guide Styles */
@media (max-width: 768px) {
    .guide-header-content h1 {
        font-size: 36px;
    }
    
    .guide-header-content p {
        font-size: 18px;
    }
    
    .guide-nav-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    
    .guide-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .guide-section {
        padding: 40px 20px;
    }
    
    .guide-section-header h2 {
        font-size: 28px;
    }
    
    .guide-step {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin: 0 auto;
    }
    
    .step-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .meal-planning-tips {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .restaurant-types {
        grid-template-columns: 1fr;
    }
    
    .ordering-tips {
        grid-template-columns: 1fr;
    }
    
    .travel-tips {
        grid-template-columns: 1fr;
    }
    
    .label-reading {
        grid-template-columns: 1fr;
    }
    
    .store-map {
        grid-template-columns: 1fr;
    }
    
    .budget-tips {
        grid-template-columns: 1fr;
    }
    
    .mistakes-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}
