/* ========================================
   DOMAIN - HOROSCOPE WEBSITE STYLES
   Modern, Unique Design with CSS Animations
======================================== */

/* ========== RESET & GLOBAL ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2e2e2e;
    line-height: 1.7;
    background: linear-gradient(135deg, #f6e7f9 0%, #d7f0ff 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    max-width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ========== CSS ANIMATIONS ========== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(253, 71, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(253, 71, 102, 0.6);
    }
}

/* ========== COOKIE POPUP ========== */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    z-index: 10000;
    animation: slideInLeft 0.5s ease;
}

.cookie-popup.hidden {
    display: none;
}

.cookie-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fd4766;
}

.cookie-content p {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #fd4766;
    text-decoration: underline;
}

.cookie-btn {
    background: #fd4766;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-btn:hover {
    background: #e03654;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 71, 102, 0.3);
}

/* ========== HEADER & NAVIGATION ========== */
.menu-toggle {
    display: none;
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    animation: fadeIn 0.6s ease;
}

/* Add padding to body to compensate for fixed header */
.main-content {
    padding-top: 80px;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fd4766;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-icon span {
    width: 28px;
    height: 3px;
    background: #fd4766;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #2e2e2e;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fd4766;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.cta-nav {
    background: #fd4766;
    color: #ffffff !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600;
}

.cta-nav::after {
    display: none;
}

.cta-nav:hover {
    background: #e03654;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 71, 102, 0.3);
}

/* ========== HERO SECTION ========== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(246, 231, 249, 0.9) 0%, rgba(215, 240, 255, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: fadeIn 1s ease;
}

.hero-logo {
    font-size: 4rem;
    font-weight: 800;
    color: #fd4766;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(253, 71, 102, 0.3);
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3rem;
    color: #2e2e2e;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: slideInRight 0.8s ease;
}

.hero-cta {
    display: inline-block;
    background: #fd4766;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(253, 71, 102, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.hero-cta:hover {
    background: #e03654;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 71, 102, 0.5);
}

/* ========== SECTIONS COMMON ========== */
section {
    padding: 80px 0;
    overflow-x: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2e2e2e;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

/* ========== ABOUT SECTION ========== */
.about-section {
    background: rgba(255, 255, 255, 0.6);
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: float 4s ease-in-out infinite;
}

/* ========== WHY US SECTION ========== */
.why-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(139, 213, 255, 0.2) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(253, 71, 102, 0.2);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 1.3rem;
    color: #fd4766;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* ========== RECIPES SECTION ========== */
.recipes-section {
    background: rgba(255, 225, 236, 0.3);
}

.recipes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.recipe-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.recipe-card:hover {
    transform: translateY(-10px);
    border-color: #8bd5ff;
}

.recipe-card.featured {
    border-color: #fd4766;
    box-shadow: 0 15px 40px rgba(253, 71, 102, 0.3);
}

.recipe-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #8bd5ff;
    color: #2e2e2e;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.recipe-badge.popular {
    background: #fd4766;
    color: #ffffff;
}

.recipe-card h3 {
    font-size: 1.5rem;
    color: #fd4766;
    margin-bottom: 15px;
    margin-top: 10px;
}

.recipe-card > p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #555;
}

.recipe-features {
    list-style: none;
    padding: 0;
}

.recipe-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

.recipe-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fd4766;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ========== HOW IT WORKS ========== */
.how-section {
    background: rgba(255, 255, 255, 0.7);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.step-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    padding: 0;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    overflow: hidden;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(139, 213, 255, 0.4);
}

.step-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.step-content {
    padding: 30px 25px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fd4766 0%, #ff7a8f 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(253, 71, 102, 0.3);
}

.step-card h3 {
    font-size: 1.3rem;
    color: #2e2e2e;
    margin-bottom: 15px;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

/* ========== TESTIMONIALS ========== */
.testimonials-section {
    background: linear-gradient(135deg, rgba(139, 213, 255, 0.2) 0%, rgba(255, 225, 236, 0.3) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #fd4766;
    font-size: 0.95rem;
}

/* ========== FAQ SECTION (CSS-only with details) ========== */
.faq-section {
    background: rgba(255, 255, 255, 0.6);
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    margin-bottom: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(253, 71, 102, 0.15);
}

.faq-item summary {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2e2e2e;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: all 0.3s ease;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    color: #fd4766;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-item[open] summary {
    background: linear-gradient(135deg, #ffe1ec 0%, #8bd5ff 100%);
    color: #2e2e2e;
}

.faq-content {
    padding: 0 30px 25px 30px;
}

.faq-content p {
    line-height: 1.8;
    color: #555;
    font-size: 0.95rem;
}

/* ========== ORDER FORM ========== */
.order-section {
    background: linear-gradient(135deg, rgba(255, 225, 236, 0.4) 0%, rgba(139, 213, 255, 0.3) 100%);
}

.order-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.order-form {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #2e2e2e;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.required {
    color: #fd4766;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #fd4766;
    box-shadow: 0 0 0 3px rgba(253, 71, 102, 0.1);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23fd4766' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-color: #ffffff;
    cursor: pointer;
}

.form-group select option {
    background: #ffffff;
    color: #2e2e2e;
    padding: 10px;
}

.checkbox-group {
    margin-top: 20px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #fd4766;
    cursor: pointer;
    margin-top: 3px;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #555;
}

.checkbox-label a {
    color: #fd4766;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #fd4766 0%, #ff7a8f 100%);
    color: #ffffff;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 30px;
    box-shadow: 0 10px 30px rgba(253, 71, 102, 0.4);
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #e03654 0%, #fd4766 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 71, 102, 0.5);
}

/* ========== FOOTER ========== */
.site-footer {
    background: linear-gradient(135deg, #2e2e2e 0%, #1a1a1a 100%);
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3,
.footer-column h4 {
    color: #fd4766;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #ccc;
}

.contact-list,
.footer-links {
    list-style: none;
}

.contact-list li,
.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.contact-list a,
.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
}

.contact-list a:hover,
.footer-links a:hover {
    color: #fd4766;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #999;
}

/* ========== POLICY PAGES STYLES ========== */
.policy-page {
    background: rgba(255, 255, 255, 0.8);
    min-height: 60vh;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 3px solid #8bd5ff;
}

.policy-content h1 {
    color: #fd4766;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.policy-content h2 {
    color: #2e2e2e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-content h3 {
    color: #555;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.policy-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.policy-content strong {
    color: #2e2e2e;
    font-weight: 600;
}

.contact-info {
    background: linear-gradient(135deg, #ffe1ec 0%, #8bd5ff 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.contact-info h3 {
    color: #fd4766;
    margin-top: 0;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    color: #2e2e2e;
}

/* ========== EXTRA PAGES STYLES ========== */
.content-block {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.content-block h1 {
    color: #fd4766;
    margin-bottom: 30px;
    font-size: 2.5rem;
}

.content-block h2 {
    color: #2e2e2e;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-block p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
    font-size: 1.05rem;
}

.content-block img {
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.value-card {
    background: linear-gradient(135deg, #ffe1ec 0%, #f9f9f9 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    color: #fd4766;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 0.95rem;
    color: #555;
}

.blog-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.blog-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(253, 71, 102, 0.2);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin: 0;
    border-radius: 0;
}

.blog-card-content {
    padding: 25px;
}

.blog-card-content h3 {
    color: #fd4766;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.blog-card-content p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

/* ========== THANKS PAGE ========== */
.thanks-section {
    background: rgba(255, 255, 255, 0.6);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-box {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid #8bd5ff;
    text-align: center;
}

.thanks-box h1 {
    color: #fd4766;
    font-size: 2.8rem;
    margin-bottom: 25px;
}

.thanks-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

.thanks-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fd4766 0%, #ff7a8f 100%);
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(253, 71, 102, 0.4);
    transition: all 0.3s ease;
}

.thanks-btn:hover {
    background: linear-gradient(135deg, #e03654 0%, #fd4766 100%);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 71, 102, 0.5);
}

/* Prevent horizontal scroll on all screen sizes */
* {
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    /* Mobile menu */
    .menu-icon {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.4s ease;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        display: block;
        padding: 18px 0;
        font-size: 1.1rem;
    }
    
    .cta-nav {
        margin-top: 20px;
        text-align: center;
    }
    
    #menu-toggle:checked ~ header .nav-menu {
        right: 0;
    }
    
    #menu-toggle:checked ~ header .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    #menu-toggle:checked ~ header .menu-icon span:nth-child(2) {
        opacity: 0;
    }
    
    #menu-toggle:checked ~ header .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Hero section */
    .hero-logo {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    /* Sections */
    section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Grids */
    .why-grid,
    .recipes-grid,
    .steps-grid,
    .testimonials-grid,
    .footer-grid,
    .values-grid,
    .blog-cards {
        grid-template-columns: 1fr;
    }
    
    /* Forms */
    .order-form,
    .policy-content,
    .content-block {
        padding: 30px 25px;
    }
    
    .thanks-box {
        padding: 40px 30px;
    }
    
    .thanks-box h1 {
        font-size: 2rem;
    }
    
    /* Cookie popup */
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.7rem;
    }
    
    .policy-content h1,
    .content-block h1 {
        font-size: 2rem;
    }
}

