/* Crusty Delights Pékség Styles - Beige & Brown Theme */

:root {
    /* Primary Beige & Brown Color Palette */
    --primary-brown: #8B4513;
    --primary-beige: #F5E6D3;
    --secondary-brown: #A0522D;
    --light-beige: #FAF7F0;
    --dark-brown: #654321;
    --accent-beige: #E6D7C3;
    --warm-brown: #D2B48C;
    --text-dark: #3D2914;
    --text-medium: #8B4513;
    --text-light: #A0522D;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #ffffff;
}

/* Common Grid Utilities */
.grid-card-300 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

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

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

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

/* Header Styles */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-brown);
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a:hover {
    color: var(--primary-brown);
    transform: translateY(-1px);
}

.nav-menu a.active {
    color: var(--primary-brown);
    font-weight: 600;
}

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

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

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

.btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--dark-brown);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-brown);
    border: 1px solid var(--primary-brown);
}

.btn-secondary:hover {
    background-color: var(--primary-brown);
    color: white;
}

/* Main Content Styles */
main {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
}

.hero-section {
    text-align: center;
    max-width: 600px;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-description {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    background-color: var(--light-beige);
    padding: 4rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

.features-grid {
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-brown), var(--dark-brown));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-description {
    color: #64748b;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
    background-color: #f8fafc;
}

.contact-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--primary-beige) 100%);
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.contact-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.contact-detail {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.contact-detail a {
    color: var(--primary-brown);
    text-decoration: none;
    font-weight: 500;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-detail small {
    color: #94a3b8;
    font-size: 0.9rem;
}

.map-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.map-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    text-align: center;
}

.map-wrapper {
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.map-description {
    color: #64748b;
    line-height: 1.6;
    text-align: center;
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    margin-top: 2rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    color: #64748b;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-brown);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-form-section {
        padding: 2rem 1.5rem;
    }
    
    .map-container {
        padding: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-form-title {
        font-size: 1.6rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
}

/* Events Page Styles */
.events-section {
    padding: 2rem 0;
}

.events-hero {
    text-align: center;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--light-beige) 0%, var(--primary-beige) 100%);
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.events-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.events-subtitle {
    font-size: 1.2rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.slides-section {
    margin: 4rem 0;
    text-align: center;
}

.slides-container {
    margin: 2rem 0;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.slides-container iframe {
    border-radius: 0.5rem;
    max-width: 100%;
}

.events-info {
    margin: 4rem 0;
}

.events-grid {
    margin-top: 2rem;
}

.event-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.event-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.event-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.event-description {
    color: #4b5563;
    line-height: 1.6;
}

.events-contact {
    background: var(--light-beige);
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    margin-top: 4rem;
}

.contact-info-simple {
    max-width: 500px;
    margin: 2rem auto 0;
}

.contact-info-simple p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
    color: #374151;
}

/* Responsive Design for Events */
@media (max-width: 768px) {
    .events-title {
        font-size: 2rem;
    }
    
    .events-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .slides-container iframe {
        width: 100% !important;
        max-width: 90vw;
        height: 400px !important;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-card {
        padding: 1.5rem;
    }
}

/* Google Form Section */
.form-section {
    padding: 5rem 0;
    background: var(--light-beige);
}

.form-section .section-title {
    color: var(--primary-brown);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.form-section .section-description {
    text-align: center;
    color: #4b5563;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-section iframe {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments for form */
@media (max-width: 768px) {
    .form-section iframe {
        width: 100% !important;
        max-width: 90vw;
        height: 600px !important;
    }
    
    .form-section > div > div {
        padding: 0 1rem;
    }
}

/* Footer Section */
footer {
    background-color: #1a1a1a;
    color: #94a3b8;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.footer-social {
    margin-top: 1rem;
}

.footer-social span {
    display: block;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-2px);
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-brown);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: #0073aa;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

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

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

    .btn-large {
        width: 100%;
        max-width: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

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

.hero-section {
    animation: fadeInUp 0.8s ease-out;
}


/* About Page Styles */
.about-section {
    padding: 2rem 0;
}

.about-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.about-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.story-section {
    margin-bottom: 4rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.placeholder-image img,
.placeholder-image.small img {
    max-width: 250px;
    max-height: 180px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.story-section.reverse .story-content {
    grid-template-columns: 1fr 1fr;
}

.story-section.reverse .story-text {
    order: 2;
}

.story-section.reverse .story-image {
    order: 1;
}

.story-heading {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.story-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4b5563;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.placeholder-image {
    background: linear-gradient(135deg, var(--accent-brown) 0%, var(--primary-brown) 100%);
    border-radius: 1rem;
    padding: 3rem;
    text-align: center;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.placeholder-image:hover {
    transform: translateY(-5px);
}

.placeholder-image span {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.placeholder-image p {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.placeholder-image.small {
    padding: 2rem;
    max-width: 350px;
    margin: 1rem auto;
}

.placeholder-image.small span {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.placeholder-image.small p {
    font-size: 0.9rem;
}

.full-story-section {
    margin: 5rem 0;
    padding: 3rem 0;
    background: #f8fafc;
    border-radius: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 3rem;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.story-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #4b5563;
    font-style: italic;
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-brown);
    text-align: center;
    background: white;
    border: 3px solid var(--primary-brown);
    border-radius: 50%;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
}

.timeline-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.timeline-text p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.timeline-image {
    margin-top: 1rem;
}

.values-section {
    margin: 4rem 0;
    padding: 3rem 0;
}

.values-grid {
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.value-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #6b7280;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-section.reverse .story-text,
    .story-section.reverse .story-image {
        order: unset;
    }
    
    .story-heading {
        font-size: 1.8rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }
    
    .timeline-year {
        margin: 0 auto 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}

/* Products Page Styles */
.products-section {
    padding: 2rem 0;
}

.products-hero {
    text-align: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 1rem;
    margin-bottom: 4rem;
}

.products-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 1rem;
}

.products-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.product-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-brown);
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.product-image {
    height: 120px;
    background: linear-gradient(135deg, var(--accent-brown) 0%, var(--primary-brown) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(245, 158, 11, 0.8), rgba(217, 119, 6, 0.8));
}

.product-image span {
    z-index: 1;
    position: relative;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-brown);
    margin-bottom: 0.75rem;
}

.product-description {
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.product-ingredients {
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    color: #4b5563;
    line-height: 1.4;
    border-left: 4px solid var(--primary-brown);
    margin-top: 1rem;
    max-height: 0;
    min-height: 45px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.product-card.expanded .product-ingredients {
    max-height: 200px;
}

.product-ingredients strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 0.5rem;
}

.seasonal-section {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 4rem;
    text-align: center;
}

.seasonal-info {
    margin-top: 2rem;
}

.season-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.season-card p {
    color: #6b7280;
    line-height: 1.5;
}

.category-navigation {
    margin-bottom: 3rem;
    text-align: center;
    position: sticky;
    top: 100px;
    z-index: 10;
    background: white;
    padding: 1rem 0;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-nav-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    background: #f8fafc;
    border: 2px solid #e5e7eb;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    color: #6b7280;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.category-btn:hover {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-brown);
    color: white;
    border-color: var(--primary-brown);
}

/* Responsive Design for Products Page */
@media (max-width: 768px) {
    .products-title {
        font-size: 2.5rem;
    }
    
    .products-subtitle {
        font-size: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .category-title {
        font-size: 1.5rem;
    }
    
    .seasonal-info {
        grid-template-columns: 1fr;
    }
    
    .category-navigation {
        position: static;
        margin-bottom: 2rem;
    }
    
    .category-nav-container {
        gap: 0.5rem;
    }
    
    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}
