:root {
    --color-tea-dark: #6B4423;
    --color-tea-medium: #8B5A3C;
    --color-tea-light: #A67C52;
    --color-cream: #F5E6D3;
    --color-cream-light: #FAF5EF;
    --color-cream-dark: #E8D5C4;
    --color-accent-gold: #D4A574;
    --color-accent-warm: #C9A961;
    --color-text-dark: #3E2723;
    --color-text-medium: #5D4037;
    --color-text-light: #8D6E63;
    --color-white: #FFFFFF;
    --color-border: #D7CCC8;
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-secondary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-soft: 0 3px 10px rgba(107, 68, 35, 0.08);
    --shadow-medium: 0 6px 20px rgba(107, 68, 35, 0.12);
    --shadow-strong: 0 10px 30px rgba(107, 68, 35, 0.15);
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    --radius-round: 50px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    color: var(--color-text-dark);
    background: linear-gradient(180deg, var(--color-cream-light) 0%, var(--color-cream) 100%);
    background-attachment: fixed;
    line-height: 1.7;
    font-size: 16px;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, var(--color-tea-dark) 0%, var(--color-tea-medium) 50%, var(--color-tea-light) 100%);
    padding: 1.2rem 0;
    box-shadow: var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--color-accent-gold);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    text-decoration: none;
    color: var(--color-cream-light);
    display: flex;
    flex-direction: column;
    font-family: var(--font-primary);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}


.main-nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    color: var(--color-cream-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gold);
    transition: width 0.3s;
}

.main-nav a:hover::before,
.main-nav a.active::before {
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--color-accent-gold);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle .arrow {
    font-size: 10px;
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-toggle .arrow {
    transform: rotate(180deg);
}

/* Prevent dropdown click on desktop */
@media (min-width: 769px) {
    .dropdown-toggle {
        pointer-events: none;
    }
    
    .dropdown:hover .dropdown-toggle {
        pointer-events: auto;
    }
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--color-white);
    min-width: 220px;
    box-shadow: var(--shadow-strong);
    border-radius: var(--radius-medium);
    padding: 0.75rem 0;
    margin-top: 5px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    border: 1px solid var(--color-border);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: var(--color-text-dark);
    padding: 0.75rem 1.5rem;
    display: block;
    transition: all 0.3s;
    font-size: 14px;
}

.dropdown-menu a::before {
    display: none;
}

.dropdown-menu a:hover {
    background: linear-gradient(90deg, var(--color-cream-light) 0%, transparent 100%);
    color: var(--color-tea-dark);
    padding-left: 2rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--color-cream-light);
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
    position: absolute;
}

.nav-toggle span:nth-child(1) {
    top: 10px;
}

.nav-toggle span:nth-child(2) {
    top: 18px;
}

.nav-toggle span:nth-child(3) {
    top: 26px;
}

.nav-toggle:hover span {
    background: var(--color-accent-gold);
}

.nav-toggle.active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.nav-toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 250px);
    padding: 3rem 0;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-warm) 50%, var(--color-tea-light) 100%);
    padding: 5rem 3rem;
    text-align: center;
    border-radius: var(--radius-large);
    margin-bottom: 4rem;
    color: var(--color-text-dark);
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero h1 {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 6px rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Recipe Grid */
.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 3rem 0;
}

.recipe-card {
    background: var(--color-white);
    border-radius: var(--radius-medium);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
    position: relative;
}

.recipe-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-tea-dark) 0%, var(--color-accent-gold) 50%, var(--color-tea-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.recipe-card:hover::before {
    transform: scaleX(1);
}

.recipe-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--color-accent-gold);
}

.recipe-card:nth-child(odd) {
    border-top-left-radius: var(--radius-large);
}

.recipe-card:nth-child(even) {
    border-top-right-radius: var(--radius-large);
}

.recipe-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--color-tea-light) 0%, var(--color-accent-gold) 100%);
    position: relative;
}

.recipe-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(107, 68, 35, 0.1) 100%);
}

.recipe-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.recipe-title {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--color-tea-dark);
    line-height: 1.3;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--color-text-medium);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-cream) 100%);
    border-radius: var(--radius-medium);
    border-left: 4px solid var(--color-accent-gold);
    box-shadow: var(--shadow-soft);
}

.recipe-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    background: var(--color-white);
    border-radius: var(--radius-small);
    font-weight: 600;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border);
    transition: border-color 0.3s;
}

.recipe-meta span:hover {
    border-color: var(--color-accent-gold);
}

.recipe-meta span strong {
    color: var(--color-tea-dark);
    margin-right: 0.5rem;
    font-weight: 700;
}

.recipe-description {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: var(--color-text-medium);
    line-height: 1.7;
}

.recipe-link {
    color: var(--color-tea-medium);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
    width: fit-content;
}

.recipe-link:hover {
    color: var(--color-tea-dark);
}

/* Recipe Detail */
.recipe-detail {
    max-width: 900px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-large);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--color-border);
}

.recipe-detail-header {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-cream-dark);
}

.recipe-detail-title {
    font-family: var(--font-primary);
    font-size: 2.8rem;
    color: var(--color-tea-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.recipe-detail-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.recipe-detail-meta span {
    color: var(--color-text-medium);
    font-size: 0.95rem;
}

.recipe-detail-image {
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    border-radius: var(--radius-medium);
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-soft);
}

.recipe-section {
    margin-bottom: 2.5rem;
}

.recipe-section h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--color-tea-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent-gold);
    display: inline-block;
    width: 100%;
}

.recipe-section h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--color-tea-medium);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.recipe-ingredients {
    list-style: none;
    padding-left: 0;
}

.recipe-ingredients li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--color-text-medium);
    line-height: 1.7;
    border-bottom: 1px dotted var(--color-border);
    display: flex;
    align-items: flex-start;
}

.recipe-ingredients li:last-child {
    border-bottom: none;
}

.recipe-ingredients li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 8px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.recipe-steps {
    list-style: none;
    counter-reset: step-counter;
}

.recipe-steps li {
    counter-increment: step-counter;
    padding: 1.25rem 0;
    padding-left: 4rem;
    position: relative;
    border-bottom: 1px solid var(--color-cream-dark);
    color: var(--color-text-medium);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
}

.recipe-steps li:last-child {
    border-bottom: none;
}

.recipe-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--color-tea-dark) 0%, var(--color-tea-medium) 100%);
    color: var(--color-cream-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.tip-box {
    background: linear-gradient(135deg, var(--color-cream-light) 0%, var(--color-cream) 100%);
    border-left: 5px solid var(--color-accent-gold);
    padding: 2rem;
    border-radius: var(--radius-medium);
    margin: 2.5rem 0;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.tip-box::before {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent-gold) 0%, var(--color-accent-warm) 100%);
    border-radius: 50%;
    opacity: 0.2;
}

.tip-box h4 {
    font-family: var(--font-primary);
    color: var(--color-tea-dark);
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.tip-box p {
    color: var(--color-text-medium);
    line-height: 1.8;
}

/* Buttons */
.btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: var(--radius-small);
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    font-family: var(--font-secondary);
    box-shadow: var(--shadow-soft);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-tea-dark) 0%, var(--color-tea-medium) 100%);
    color: var(--color-cream-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-tea-medium) 0%, var(--color-tea-light) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: var(--color-text-medium);
    color: var(--color-cream-light);
}

.btn-secondary:hover {
    background: var(--color-text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-link {
    background: transparent;
    color: var(--color-tea-medium);
    text-decoration: underline;
    box-shadow: none;
    padding: 0.5rem 1rem;
}

.btn-link:hover {
    color: var(--color-tea-dark);
    background: transparent;
    transform: none;
}

.btn-settings {
    background: var(--color-cream-light);
    color: var(--color-tea-dark);
    border: 2px solid var(--color-accent-gold);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 1.5rem;
}

.btn-settings:hover {
    background: var(--color-accent-gold);
    color: var(--color-white);
    border-color: var(--color-tea-medium);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Forms */
.form-group {
    margin-bottom: 1.75rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-small);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s;
    background: var(--color-white);
    color: var(--color-text-dark);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-tea-medium);
    box-shadow: 0 0 0 3px rgba(139, 90, 60, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.7;
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, var(--color-tea-dark) 0%, var(--color-text-dark) 100%);
    color: var(--color-cream-light);
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
    border-top: 3px solid var(--color-accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.25rem;
    font-family: var(--font-primary);
    color: var(--color-accent-gold);
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--color-cream-light);
    text-decoration: none;
    opacity: 0.85;
    transition: all 0.3s;
    display: inline-block;
    padding: 0.25rem 0;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--color-accent-gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: var(--shadow-strong);
    padding: 2rem;
    z-index: 10000;
    display: none;
    border-top: 3px solid var(--color-accent-gold);
}

.cookie-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text h4 {
    margin-bottom: 0.75rem;
    color: var(--color-tea-dark);
    font-family: var(--font-primary);
    font-size: 1.3rem;
}

.cookie-text p {
    color: var(--color-text-medium);
    font-size: 0.95rem;
    line-height: 1.7;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-buttons .btn-settings {
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-settings-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    backdrop-filter: blur(2px);
}

.cookie-settings-overlay.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.cookie-settings {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-strong);
    z-index: 10001;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 2px solid var(--color-accent-gold);
    display: none;
}

.cookie-settings.show {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.cookie-settings-content {
    position: relative;
}

.cookie-settings h4 {
    margin-bottom: 2rem;
    color: var(--color-tea-dark);
    font-family: var(--font-primary);
    font-size: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--color-cream-light);
    border-radius: var(--radius-small);
}

.cookie-option label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    cursor: pointer;
}

.cookie-option small {
    color: var(--color-text-medium);
    font-size: 0.85rem;
    margin-left: 2rem;
}

.cookie-settings-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Toast */
.toast {
    position: fixed;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--color-tea-dark) 0%, var(--color-tea-medium) 100%);
    color: var(--color-cream-light);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-medium);
    box-shadow: var(--shadow-strong);
    z-index: 10002;
    display: none;
    animation: slideInRight 0.4s ease-out;
    border-left: 4px solid var(--color-accent-gold);
}

.toast.show {
    display: block;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Page Specific */
.page-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--color-accent-gold) 50%, transparent 100%);
    border-radius: var(--radius-round);
}

.page-header h1 {
    font-family: var(--font-primary);
    font-size: 3rem;
    color: var(--color-tea-dark);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(107, 68, 35, 0.1);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--color-text-medium);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    font-family: var(--font-primary);
    font-size: 2.3rem;
    color: var(--color-tea-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid var(--color-accent-gold);
    display: inline-block;
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .recipe-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .hero {
        padding: 4rem 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav ul {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, var(--color-tea-dark) 0%, var(--color-text-dark) 100%);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
        box-shadow: var(--shadow-strong);
        justify-content: flex-start;
        overflow-y: auto;
    }

    .main-nav ul.active {
        transform: translateX(0);
    }
    
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .main-nav ul li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    /* Disable hover effects on mobile */
    .dropdown:hover .dropdown-menu {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
    }
    
    .dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-toggle {
        width: 100%;
        justify-content: space-between;
        cursor: pointer;
        pointer-events: auto;
        user-select: none;
        padding: 1rem 0;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
        color: var(--color-cream-light);
        text-decoration: none;
    }
    
    .dropdown-toggle .arrow {
        transition: transform 0.3s ease;
        display: inline-block;
        margin-left: auto;
        font-size: 0.75rem;
        opacity: 0.8;
    }
    
    .dropdown.active .dropdown-toggle {
        color: var(--color-accent-gold);
    }
    
    .dropdown.active .dropdown-toggle .arrow {
        transform: rotate(180deg);
        opacity: 1;
    }

    .dropdown-menu {
        position: static !important;
        max-height: 0 !important;
        height: 0 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.25);
        margin: 0 !important;
        border: none;
        border-radius: 0;
        padding: 0 !important;
        overflow: hidden !important;
        list-style: none;
        width: 100%;
        display: block;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                    height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.3s ease 0.1s, 
                    visibility 0.3s ease 0.1s,
                    padding 0.3s ease 0.1s;
    }
    
    .dropdown.active .dropdown-menu {
        opacity: 1 !important;
        visibility: visible !important;
        max-height: 500px !important;
        height: auto !important;
        padding: 0.5rem 0 !important;
        margin: 0 !important;
        overflow: visible !important;
    }
    
    .dropdown-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateX(-20px);
        transition: opacity 0.3s ease 0.2s, transform 0.3s ease 0.2s;
        height: 0;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }
    
    .dropdown.active .dropdown-menu li {
        opacity: 1;
        transform: translateX(0);
        height: auto;
        overflow: visible;
    }
    
    .dropdown-menu li:last-child {
        border-bottom: none;
    }
    
    .dropdown-menu a {
        padding: 0.875rem 0 0.875rem 2.5rem;
        font-size: 0.95rem;
        opacity: 0.85;
        display: block;
        transition: all 0.2s ease;
        color: var(--color-cream-light);
        text-decoration: none;
        position: relative;
    }
    
    .dropdown-menu a::before {
        display: none;
    }
    
    .dropdown-menu a:hover,
    .dropdown-menu a:active {
        opacity: 1;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 3rem;
    }
    
    .cookie-settings {
        padding: 2rem 1.5rem;
        width: 95%;
        max-width: 95%;
    }
    
    .cookie-settings h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .cookie-option {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-settings-buttons .btn {
        width: 100%;
    }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recipe-card {
        border-radius: var(--radius-medium);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .cookie-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .recipe-detail {
        padding: 2rem 1.5rem;
    }
    
    .recipe-detail-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo-text {
        font-size: 24px;
    }
    
    .logo-subtitle {
        font-size: 11px;
    }
    
    .hero {
        padding: 2.5rem 1.5rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .recipe-content {
        padding: 1.5rem;
    }
    
    .recipe-title {
        font-size: 1.4rem;
    }
    
    .page-header {
        padding: 2rem 0;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .cookie-banner {
        padding: 1.5rem;
    }
    
    .cookie-settings {
        padding: 1.5rem 1rem;
        width: 95%;
        max-width: 95%;
        max-height: 85vh;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .cookie-settings h4 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .cookie-option {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cookie-settings-buttons .btn {
        width: 100%;
    }
    
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
}
