/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: #555;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary {
    background-color: #d32f2f;
    color: white;
}

.btn-primary:hover {
    background-color: #b71c1c;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #ffc107;
    color: #333;
}

.btn-secondary:hover {
    background-color: #ffb300;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: #d32f2f;
    border: 2px solid #d32f2f;
}

.btn-outline:hover {
    background-color: #d32f2f;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner:not(.hidden) {
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.hidden {
    display: none !important;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
}

.logo {
    width: 40px;
    height: 40px;
}

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

.nav-link {
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #d32f2f;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #d32f2f;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 80px 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

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

.hero-image .hero-svg {
    width: 100%;
    max-width: 400px;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
    padding: 60px 0;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-hero-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

/* Sections */
.featured-section,
.content-section,
.about-preview,
.services-section,
.testimonials-section,
.blog-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

/* Grid Layouts */
.recipe-grid,
.team-grid,
.values-grid,
.features-grid,
.courses-grid,
.testimonials-grid,
.blog-grid,
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Card Styles */
.recipe-card,
.team-member,
.value-card,
.feature-card,
.course-card,
.testimonial-card,
.blog-card,
.category-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recipe-card:hover,
.team-member:hover,
.value-card:hover,
.feature-card:hover,
.course-card:hover,
.testimonial-card:hover,
.blog-card:hover,
.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.recipe-icon,
.team-photo,
.value-icon,
.feature-icon,
.course-icon,
.author-photo,
.blog-icon,
.category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Course Cards */
.course-card.featured {
    border: 3px solid #d32f2f;
    position: relative;
}

.course-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background-color: #d32f2f;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-price {
    font-size: 2rem;
    font-weight: 700;
    color: #d32f2f;
    margin: 1rem 0;
}

.course-features {
    list-style: none;
    margin: 1.5rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    color: #666;
}

/* Testimonial Cards */
.testimonial-card.featured {
    grid-column: 1 / -1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.author-info small {
    color: #888;
    font-style: italic;
}

/* Blog Cards */
.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: start;
}

.blog-image {
    position: relative;
}

.blog-category {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #d32f2f;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #888;
}

.blog-tags {
    display: flex;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    background-color: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #666;
}

.blog-link {
    color: #d32f2f;
    font-weight: 600;
}

/* Forms */
.contact-form,
.newsletter-form-element {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}
.cta-content p, .footer-section p{
    color: white;
}
.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

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

.footer-section a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    text-align: center;
    color: #bbb;
}

/* Blog Article Styles */
.blog-article {
    padding: 2rem 0;
}

.article-header {
    margin-bottom: 3rem;
}

.breadcrumbs {
    margin-bottom: 1rem;
    color: #666;
}

.breadcrumbs a {
    color: #d32f2f;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.article-category {
    background-color: #d32f2f;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
}

.article-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.article-main-image {
    width: 200px;
    height: 200px;
    margin: 2rem auto;
    display: block;
}

.article-content {
    max-width: 800px;
    margin: 0 auto;
}

.recipe-intro {
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.recipe-info-box,
.info-box {
    background-color: #f8f9fa;
    border-left: 4px solid #d32f2f;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.recipe-stats,
.unique-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.stat,
.factor {
    text-align: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
}

/* Article Sections */
.ingredients-section,
.preparation-section,
.tips-section,
.tradition-section,
.variations-section,
.serving-section,
.categories-section,
.production-process-section,
.cutting-section,
.quality-identification-section,
.conservation-section,
.denominaciones-section {
    margin: 3rem 0;
}

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

.ingredient-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.ingredient-category h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

.ingredient-category ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.steps-container {
    margin-top: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    background-color: #d32f2f;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

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

.tip-card {
    background: #fff3e0;
    border: 2px solid #ffcc02;
    border-radius: 8px;
    padding: 1.5rem;
}

.tip-card h3 {
    color: #f57c00;
    margin-bottom: 1rem;
}

/* Jamón Ibérico Specific Styles */
.jamon-categories {
    display: grid;
    gap: 2rem;
    margin-top: 2rem;
}

.category-card {
    border-left: 8px solid;
    padding: 2rem;
    background: white;
    border-radius: 0 8px 8px 0;
}

.category-card.premium {
    border-color: #000;
}

.category-card.high {
    border-color: #d32f2f;
}

.category-card.medium {
    border-color: #4caf50;
}

.category-card.basic {
    border-color: #999;
}

.category-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.category-color.black {
    background-color: #000;
}

.category-color.red {
    background-color: #d32f2f;
}

.category-color.green {
    background-color: #4caf50;
}

.category-color.white {
    background-color: #999;
    border: 2px solid #666;
}

.characteristics {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    font-style: italic;
}

.process-steps {
    margin-top: 2rem;
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8e8e8 100%);
    border-radius: 8px;
    border-left: 4px solid #d32f2f;
}

.cutting-steps {
    margin-top: 2rem;
}

.cutting-step {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f0f4f8;
    border-radius: 8px;
}

.cutting-step h4 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

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

.tasting-part {
    background: #fff8f0;
    padding: 1.5rem;
    border-radius: 8px;
    border-top: 4px solid #ff9800;
}

.tasting-part h4 {
    color: #f57c00;
    margin-bottom: 1rem;
}

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

.denomination {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-bottom: 4px solid #d32f2f;
}

.denomination h3 {
    color: #d32f2f;
    margin-bottom: 1rem;
}

/* Legal Pages */
.legal-content {
    padding: 3rem 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #d32f2f;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #555;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    list-style-type: disc;
    padding-left: 2rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.last-updated {
    background: #e3f2fd;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    text-align: center;
}

/* Cookie Policy Specific */
.cookie-table {
    overflow-x: auto;
    margin: 1rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

/* Thanks Page */
.thanks-hero {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    padding: 80px 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #4caf50;
    margin-bottom: 3rem;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.while-you-wait,
.free-resources,
.contact-info-thanks,
.social-proof-thanks {
    padding: 60px 0;
}

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

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

.wait-card:hover,
.resource-card:hover {
    transform: translateY(-5px);
}

.wait-icon,
.resource-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.wait-link,
.resource-link {
    color: #d32f2f;
    font-weight: 600;
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
}

.method-info h4 {
    margin-bottom: 0.5rem;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4caf50;
}

.stat-label {
    font-weight: 600;
    color: #333;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.contact-info,
.support-hours,
.faq-preview {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    color: #d32f2f;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.day {
    font-weight: 600;
}

.time {
    color: #666;
}

.faq-item {
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: #d32f2f;
    margin-bottom: 0.5rem;
}

.why-choose-us {
    background: #f8f9fa;
    padding: 60px 0;
}

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

.reason-card {
    background: white;
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.location-section {
    padding: 60px 0;
}

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

.map-placeholder {
    background: #f0f0f0;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed #ccc;
}

.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    opacity: 0.6;
}

/* Services Page Specific */
.courses-section {
    padding: 60px 0;
}

.methodology-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
    align-items: center;
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.methodology-svg {
    width: 100%;
    max-width: 300px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .blog-card.featured {
        grid-template-columns: 1fr;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .community-stats {
        flex-direction: column;
        gap: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .page-hero {
        padding: 40px 0;
    }

    .page-hero-content h1 {
        font-size: 2rem;
    }

    .featured-section,
    .content-section,
    .about-preview,
    .services-section,
    .testimonials-section,
    .blog-section {
        padding: 40px 0;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 24px;
        font-size: 1rem;
    }

    .recipe-grid,
    .team-grid,
    .values-grid,
    .features-grid,
    .courses-grid,
    .testimonials-grid,
    .blog-grid,
    .categories-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ingredients-grid {
        grid-template-columns: 1fr;
    }

    .tips-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .cookie-banner,
    .nav-toggle,
    .btn,
    .footer {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    .article-content {
        max-width: none;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }

    .card,
    .recipe-card,
    .team-member,
    .value-card,
    .feature-card,
    .course-card,
    .testimonial-card,
    .blog-card,
    .category-card {
        border: 2px solid #333;
    }
}
