:root {
    --primary-color: #d97757;
    --secondary-color: #c46b4f;
    --accent-color: #f4a261;
    --warm-orange: #e76f51;
    --warm-yellow: #f9c74f;
    --text-dark: #2b2d42;
    --text-light: #6c757d;
    --bg-light: #fff8f5;
    --bg-white: #ffffff;
    --bg-cream: #fef5e7;
    --border-color: #e8d5c4;
    --shadow: 0 4px 12px rgba(217, 119, 87, 0.15);
    --shadow-hover: 0 8px 24px rgba(217, 119, 87, 0.25);
    --gradient-primary: linear-gradient(135deg, #d97757 0%, #c46b4f 50%, #b85d47 100%);
    --gradient-warm: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-light);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(217, 119, 87, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(244, 162, 97, 0.03) 0%, transparent 50%);
}

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

/* Header */
.main-header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--accent-color);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--warm-orange);
}

.logo:hover::after {
    height: 4px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(217, 119, 87, 0.4);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

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

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

.main-nav a.active {
    color: var(--primary-color);
}

.main-nav a.active::after {
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    box-shadow: 0 2px 6px rgba(217, 119, 87, 0.3);
}

/* Специальный hover эффект для Alışveriş Listesi */
.main-nav a[href="alisveris-listesi.php"] {
    position: relative;
}

.main-nav a[href="alisveris-listesi.php"]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 120%;
    height: 150%;
    background: radial-gradient(circle, rgba(217, 119, 87, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    transition: transform 0.4s ease;
    z-index: -1;
}

.main-nav a[href="alisveris-listesi.php"]:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.main-nav a[href="alisveris-listesi.php"]:hover {
    transform: scale(1.1);
    color: var(--warm-orange);
    font-weight: 700;
}

.main-nav a[href="alisveris-listesi.php"]:hover::after {
    width: 100%;
    height: 3px;
    background: var(--gradient-warm);
    box-shadow: 0 2px 8px rgba(217, 119, 87, 0.4);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(217, 119, 87, 0.4);
    }
    50% {
        box-shadow: 0 2px 12px rgba(217, 119, 87, 0.6);
    }
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s;
}

.mobile-menu-toggle:hover {
    background: var(--bg-light);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: var(--gradient-primary);
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    color: white;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--warm-yellow);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(249, 199, 79, 0.4);
    font-size: 1.05rem;
}

.btn-primary:hover, .btn-secondary:hover {
    background: #f5b832;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(249, 199, 79, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 87, 0.3);
}

/* Features */
.features {
    padding: 5rem 0;
    background: var(--bg-white);
}

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

.feature-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    width: 90px;
    height: 90px;
    background: var(--gradient-warm);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.3);
    transition: all 0.3s;
    line-height: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Week Overview */
.week-overview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.week-overview h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.week-overview h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.days-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.day-card {
    background: var(--bg-white);
    border: 3px solid var(--border-color);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.day-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-warm);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.day-card:hover::before {
    transform: scaleX(1);
}

.day-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-hover);
    transform: translateY(-8px);
}

.day-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.day-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 700;
}

.day-card p {
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 500;
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

/* Quick Links */
.quick-links {
    padding: 5rem 0;
    background: var(--bg-white);
}

.quick-links h2 {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 4rem;
    color: var(--primary-color);
    font-weight: 800;
    position: relative;
    display: inline-block;
    width: 100%;
}

.quick-links h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.quick-link-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: var(--shadow);
    transition: all 0.4s;
    border-left: 6px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.quick-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-warm);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, -30%);
    transition: transform 0.4s;
}

.quick-link-card:hover::before {
    transform: translate(20%, -20%) scale(1.2);
}

.quick-link-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--accent-color);
}

.quick-link-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.quick-link-card p {
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Recipe Pages */
.recipe-page {
    padding: 4rem 0;
}

.recipe-header {
    margin-bottom: 3rem;
    text-align: center;
}

.recipe-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.recipe-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-warm);
    border-radius: 2px;
}

.recipe-meta {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    justify-content: center;
    font-weight: 500;
}

.recipe-meta span {
    padding: 0.5rem 1.25rem;
    background: var(--bg-cream);
    border-radius: 25px;
    border: 2px solid var(--border-color);
}

.recipe-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.recipe-main {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--primary-color);
}

.recipe-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recipe-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent-color);
}

.recipe-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.ingredients-list, .instructions-list {
    list-style: none;
}

.ingredients-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    padding-left: 1.5rem;
    position: relative;
    transition: padding-left 0.3s;
}

.ingredients-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.ingredients-list li:hover {
    padding-left: 2rem;
    color: var(--primary-color);
}

.ingredients-list li:last-child {
    border-bottom: none;
}

.instructions-list li {
    padding: 1.25rem 0;
    padding-left: 3rem;
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.instructions-list li:last-child {
    border-bottom: none;
}

.instructions-list li::before {
    content: counter(step);
    counter-increment: step;
    position: absolute;
    left: 0;
    top: 1.25rem;
    background: var(--gradient-warm);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(217, 119, 87, 0.3);
}

.instructions-list {
    counter-reset: step;
}

.variations, .storage {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 3px solid var(--border-color);
}

.variations h3, .storage h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.variations p, .storage p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Shopping List */
.shopping-list-page {
    padding: 4rem 0;
}

.shopping-list-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    border-top: 6px solid var(--primary-color);
}

.shopping-list-header {
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px solid var(--border-color);
}

.shopping-list-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 800;
}

.shopping-category {
    margin-bottom: 2.5rem;
}

.shopping-category h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--accent-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.shopping-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shopping-list li {
    padding: 0.875rem 0;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s;
    position: relative;
    font-weight: 500;
    color: var(--text-dark);
}

.shopping-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

.shopping-list li:hover {
    padding-left: 2rem;
    color: var(--primary-color);
    background: var(--bg-light);
    border-radius: 8px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Footer */
.main-footer {
    background: var(--text-dark);
    color: white;
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    position: relative;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-warm);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--accent-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-section a::before {
    content: '>';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s;
    color: var(--accent-color);
}

.footer-section a:hover {
    color: white;
    padding-left: 20px;
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 2rem;
    z-index: 10000;
    border-top: 4px solid var(--accent-color);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-cookie {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.95rem;
}

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

.btn-cookie:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 119, 87, 0.3);
}

.btn-cookie-reject {
    background: var(--text-light);
}

.btn-cookie-reject:hover {
    background: #5a6268;
}

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

.btn-cookie-settings:hover {
    background: var(--primary-color);
    color: white;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(43, 45, 66, 0.7);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(4px);
}

.cookie-modal-content {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    border-top: 6px solid var(--primary-color);
}

.cookie-modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.cookie-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s;
}

.cookie-option:hover {
    background: var(--bg-light);
}

.cookie-option input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Toast */
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1.25rem 2rem;
    border-radius: 50px;
    box-shadow: 0 8px 24px rgba(217, 119, 87, 0.4);
    z-index: 10002;
    display: none;
    animation: slideIn 0.3s;
    font-weight: 600;
}

.toast.show {
    display: block;
}

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

/* Form Styles */
.form-page {
    padding: 4rem 0;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border-top: 6px solid var(--primary-color);
}

.form-container h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 2.5rem;
    font-weight: 800;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(217, 119, 87, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(217, 119, 87, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 119, 87, 0.4);
}

/* Print Styles */
@media print {
    .main-header,
    .main-footer,
    .cookie-banner,
    .cookie-modal,
    .mobile-menu-toggle {
        display: none !important;
    }

    .shopping-list-container {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* Mobile Menu Toggle Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow);
        padding: 1.5rem 0;
        border-top: 3px solid var(--accent-color);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    }

    .main-nav.active {
        max-height: 500px;
        opacity: 1;
        padding: 1.5rem 0;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0 20px;
    }

    .main-nav ul li {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav ul li:last-child {
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .recipe-header h1 {
        font-size: 2.25rem;
    }

    .cookie-content {
        flex-direction: column;
    }

    .cookie-buttons {
        width: 100%;
    }

    .btn-cookie {
        flex: 1;
    }

    .days-preview {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .week-overview h2,
    .quick-links h2 {
        font-size: 2rem;
    }

    .features-grid,
    .links-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .shopping-list-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .btn-primary, .btn-secondary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    .day-card {
        padding: 2rem 1.5rem;
    }

    .day-number {
        font-size: 3rem;
    }
}
