/* Base Styles */
:root {
    --primary-color: #ff6b35;
    --primary-light: #ff8c61;
    --primary-dark: #e54b00;
    --secondary-color: #2e933c;
    --secondary-light: #41b350;
    --secondary-dark: #1e7129;
    --accent-color: #f9c22e;
    --accent-dark: #e3a913;
    --text-color: #333333;
    --text-light: #666666;
    --light-text: #ffffff;
    --dark-bg: #252525;
    --light-bg: #f8f8f8;
    --border-color: #e0e0e0;
    --font-main: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-accent: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

ul, ol {
    list-style-position: inside;
    margin: 1rem 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    padding: 5rem 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    margin-bottom: 3rem;
}

.section-title .subtitle {
    display: block;
    color: var(--primary-color);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
}

.section-title.centered {
    text-align: center;
}

.section-title.centered h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.section-title.light-title {
    color: var(--light-text);
}

.section-title.light-title .subtitle {
    color: var(--accent-color);
}

.section-title.light-title h2:after {
    background: var(--light-text);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--light-text);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    transform: translateY(-2px);
}

.btn-light {
    background-color: var(--light-text);
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
}

/* Location Bar */
.location-bar {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 0.5rem 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* Header and Navigation */
header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 2rem;
    background-color: var(--light-bg);
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.logo {
    max-height: 90px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    background-color: var(--dark-bg);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light-text);
    max-width: 800px;
    padding: 2rem;
}

.hero-text-box {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    border-left: 5px solid var(--primary-color);
}

.hero-text-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--light-text);
}

.hero-text-box p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: block;
    color: var(--light-text);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* About Section */
.about {
    background-color: var(--light-bg);
    position: relative;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.about-image {
    flex: 1;
    position: relative;
    min-width: 300px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow);
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    flex: 1;
    min-width: 120px;
    margin-top: 1rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Featured Products Section */
.featured-products {
    background-color: #fff;
    padding: 5rem 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.product-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.product-image-container {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image-container img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-link {
    background-color: var(--light-text);
    color: var(--primary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.overlay-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    min-height: 48px;
}

.view-all {
    text-align: center;
    margin-top: 3rem;
}

/* Recipes Teaser Section */
.recipes-teaser {
    position: relative;
    padding: 6rem 1rem;
    background-color: var(--primary-dark);
    color: var(--light-text);
}

.recipes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../gorseller/anasayfagorsel/ekinarca_multiple_fruits_side_by_side_product_photography_sty_ad4151ff-a0c9-460a-b75f-85c1977060db_2.png');
    background-position: center;
    background-size: cover;
    opacity: 0.2;
}

.recipes-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.recipe-card {
    background-color: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    color: var(--text-color);
}

.recipe-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.recipe-image {
    height: 200px;
    background-position: center;
    background-size: cover;
    position: relative;
}

.recipe-time {
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    border-top-right-radius: 10px;
}

.recipe-content {
    padding: 1.5rem;
}

.recipe-category {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--dark-bg);
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.recipe-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.recipe-content p {
    margin-bottom: 1.5rem;
    min-height: 50px;
}

/* Newsletter Section */
.newsletter {
    position: relative;
    background-color: var(--secondary-dark);
    padding: 6rem 1rem;
    color: var(--light-text);
    overflow: hidden;
}

.newsletter-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--secondary-color) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.1;
}

.newsletter-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

.newsletter-content {
    flex: 1;
    min-width: 300px;
}

.newsletter-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.newsletter-image img {
    max-height: 400px;
    margin: 0 auto;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
    max-width: 500px;
}

.newsletter-form .form-group {
    flex-grow: 1;
    position: relative;
}

.newsletter-form i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    font-family: var(--font-main);
}

.newsletter-form button {
    padding: 1rem 2rem;
}

.newsletter-promise {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.9rem;
}

.newsletter-promise i {
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 5rem 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo-img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-style: italic;
    color: var(--accent-color);
}

.footer-links h3,
.footer-contact h3 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-links h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--light-text);
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-item i {
    color: var(--primary-color);
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page Banner */
.page-banner {
    padding: 8rem 1rem 4rem;
    text-align: center;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-banner h1 {
    font-size: 3.5rem;
    color: var(--light-text);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner p {
    color: var(--light-text);
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Products Page */
.products-intro {
    text-align: center;
    padding-bottom: 2rem;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.product-tabs {
    text-align: center;
    margin-bottom: 2rem;
}

.tab-navigation {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.tab-button {
    padding: 1rem 2rem;
    background-color: var(--light-bg);
    color: var(--text-color);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.tab-button:hover {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

.tab-button.active {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.product-collection {
    padding-top: 2rem;
}

.product-collection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.product-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-details h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-dark);
}

.product-description {
    margin-bottom: 1.5rem;
}

.product-features,
.product-ingredients,
.product-recipe {
    margin-bottom: 1.5rem;
}

.product-features h4,
.product-ingredients h4,
.product-recipe h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-dark);
}

.product-recipe {
    background-color: #f9f7f4;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.product-recipe h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.recipe-ingredients,
.recipe-instructions {
    margin-bottom: 1rem;
}

.product-usage {
    text-align: center;
    background-color: #fff;
}

.product-usage h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-dark);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.usage-card {
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.usage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.usage-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.usage-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-info {
    padding-bottom: 2rem;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background-color: var(--light-bg);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.contact-method:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.social-icons-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-icons-contact a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-section {
    background-color: var(--light-bg);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin: 0;
    font-size: 0.9rem;
}

.faq-section {
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-icon {
    color: var(--primary-color);
}

.faq-answer {
    padding: 0 0 1.5rem;
    display: none;
}

/* Animation for Hero Slider */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    section {
        padding: 4rem 1rem;
    }
    
    .hero-text-box h2 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-text-box {
        padding: 2rem;
    }
    
    .hero-text-box h2 {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .about-badge {
        right: 0;
        bottom: 0;
    }
    
    .product-item {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: var(--light-bg);
        box-shadow: var(--shadow);
        transition: var(--transition);
        z-index: 101;
        padding: 5rem 2rem;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav ul li {
        margin: 1rem 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 102;
    }

    .hero-text-box {
        padding: 1.5rem;
    }
    
    .hero-text-box h2 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .hero-btns {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text-box h2 {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .page-banner {
        padding: 6rem 1rem 2rem;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-info p {
        min-height: auto;
    }
    
    .about-features {
        flex-direction: column;
    }
    
    .feature {
        margin-bottom: 2rem;
    }
}