/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #9bb99b;
    --primary-dark: #7a9a7a;
    --primary-light: #bdd4bd;
    --text-dark: #2c3e2c;
    --text-light: #5a6a5a;
    --bg-light: #f8faf8;
    --bg-white: #ffffff;
    --border-color: #e0e8e0;
    --shadow: 0 4px 20px rgba(155, 185, 155, 0.15);
    --shadow-hover: 0 8px 30px rgba(155, 185, 155, 0.25);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    padding-top: 80px;
}

/* Ensure text is readable on all devices */
p, li, span, a {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Schutz vor Screenshots und Downloads - Globale Bild/Video Regeln */
img:not(.logo-image), video {
    -webkit-touch-callout: none !important;
    -webkit-user-select: none !important;
    -khtml-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-user-drag: none !important;
    -khtml-user-drag: none !important;
    -moz-user-drag: none !important;
    -o-user-drag: none !important;
    user-drag: none !important;
    /* Bilder sollen angezeigt werden, aber nicht gezogen werden können */
    pointer-events: auto !important;
    display: inline-block !important;
    max-width: 100% !important;
    height: auto !important;
    visibility: visible !important;
    opacity: 1 !important;
}

img::selection, video::selection {
    background: transparent !important;
}

img::-moz-selection, video::-moz-selection {
    background: transparent !important;
}

/* Video Controls müssen funktionieren */
video::-webkit-media-controls {
    pointer-events: auto;
}

video::-webkit-media-controls-panel {
    pointer-events: auto;
}

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

/* Header */
.header {
    background: var(--bg-white);
    border-bottom: 2px solid var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
    width: 100%;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-image {
    height: 50px !important;
    width: auto !important;
    max-width: 120px !important;
    min-width: 40px !important;
    max-height: 50px !important;
    object-fit: contain !important;
    display: inline-block !important;
    vertical-align: middle !important;
    flex-shrink: 0 !important;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

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

.nav-list a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

/* Intro Section */
.intro-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.intro-content {
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

.intro-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-text {
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Headings */
.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1rem;
    overflow: visible;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

/* Features Section */
.features-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

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

.feature-box {
    background: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid var(--border-color);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

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

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

.feature-box p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    padding: 5rem 20px;
}

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

.product-card {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid var(--primary-light);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border-left: 5px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

/* Media Section */
.media-section {
    padding: 5rem 20px;
}

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

.media-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.media-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.media-card h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.media-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.media-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.media-link:hover {
    background: var(--primary-color);
    color: white;
}

/* About Preview */
.about-preview-section {
    padding: 5rem 20px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
}

.about-preview-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.about-preview-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-preview-card p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-button.secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 5rem 20px;
}

.who-content {
    max-width: 900px;
    margin: 0 auto;
}

.who-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 700;
}

.who-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Success Timeline */
.success-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.success-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.success-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    min-width: 100px;
    text-align: right;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    padding-top: 0.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 97px;
    top: 10px;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-light);
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.timeline-content h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 5rem 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
}

.contact-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
}

/* Product Detail */
.product-detail-section {
    padding: 3rem 20px;
}

.product-detail-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.product-header {
    text-align: center;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border-color);
}

.product-emoji-large {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.product-header h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.product-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
}

.product-description {
    margin-bottom: 2rem;
}

.product-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.product-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

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

.detail-block h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-block ul {
    list-style: none;
    padding-left: 0;
}

.detail-block li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-block li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.detail-block p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Comparison */
.comparison-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

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

.comparison-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.comparison-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.comparison-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.comparison-features {
    text-align: left;
}

.comparison-features p {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.comparison-features strong {
    color: var(--text-dark);
}

/* Mission Section */
.mission-section {
    padding: 5rem 20px;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Ingredients */
.ingredients-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

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

.ingredient-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

.ingredient-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.ingredient-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.ingredient-card ul {
    list-style: none;
    padding-left: 0;
}

.ingredient-card li {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.ingredient-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1;
}

/* Packaging */
.packaging-section {
    padding: 5rem 20px;
}

.packaging-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.packaging-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.packaging-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.packaging-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.packaging-feature {
    background: var(--primary-light);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
}

/* Future Section */
.future-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.future-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.future-content h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.future-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.future-goals {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.goal-item {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 500;
    border: 2px solid var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 5rem 20px;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

/* Sustainability CTA Special Styling */
.sustainability-cta {
    padding: 5rem 20px;
}

.sustainability-cta-content {
    background: var(--primary-light);
    border: 3px solid var(--primary-color);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.sustainability-cta-content h2 {
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sustainability-cta-content p {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.sustainability-cta-content .cta-button {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.sustainability-cta-content .cta-button:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.sustainability-cta-content .cta-button.secondary {
    background: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.sustainability-cta-content .cta-button.secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* Video Section */
.video-section {
    padding: 5rem 20px;
}

.video-container {
    max-width: 900px;
    margin: 3rem auto 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.video-container video {
    width: 100%;
    display: block;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

.video-container video::-webkit-media-controls {
    pointer-events: auto;
}

/* Pitch Video Section */
.pitch-video-section {
    padding: 5rem 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.pitch-video-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    border: 3px solid var(--primary-color);
}

/* Gallery */
.gallery-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item.hidden {
    display: none;
}

/* Instagram Links */
.instagram-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: var(--primary-dark);
}

.instagram-link-footer {
    color: var(--text-dark);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.instagram-link-footer:hover {
    color: var(--primary-color);
}

.instagram-link-footer span {
    font-size: 1.2rem;
}

/* Section Images - Small decorative images that are never bigger than text */
.section-image-small {
    max-width: 500px;
    margin: 2rem auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    position: relative;
}

.section-image-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
}

.section-image-small img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Text Image Inline - Small images within text blocks */
.text-image-inline {
    float: right;
    max-width: 250px;
    margin: 0 0 1rem 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.text-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 768px) {
    .text-image-inline {
        float: none;
        max-width: 100%;
        margin: 1.5rem auto;
        display: block;
    }
}

/* Product Images */
.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
    pointer-events: auto;
}

/* Timeline Read More */
.timeline-text-short {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.timeline-text-full {
    color: var(--text-light);
    line-height: 1.7;
}

.read-more-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.read-more-btn.expanded {
    background: var(--primary-dark);
}

/* Who We Are Image */
.who-image {
    margin-top: 3rem;
    text-align: center;
}

.who-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-hover);
}

.image-source {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.image-source a {
    color: var(--primary-color);
    text-decoration: none;
}

.image-source a:hover {
    text-decoration: underline;
}

/* Products Comparison */
.products-comparison-section {
    padding: 5rem 20px;
}

.products-comparison-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.product-comparison-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.product-comparison-card:hover {
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.product-comparison-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--border-color);
}

.product-comparison-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-comparison-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Swipe Indicator */
.swipe-indicator {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.swipe-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.swipe-dot.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Sustainability Enhanced Styles */
.sustainability-mission .mission-content-with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.mission-text-block {
    min-width: 0;
}

.mission-text-block h2 {
    text-align: left;
}

.mission-text-block h2::after {
    left: 0;
    transform: none;
}

.mission-image-block {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    max-width: 100%;
    align-self: start;
}

.mission-image-block img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 400px;
    object-fit: cover;
}

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

.ingredient-card-enhanced {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card-enhanced:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.ingredient-image-enhanced {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.ingredient-image-enhanced img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-content-enhanced {
    padding: 2rem;
}

.packaging-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.packaging-image-enhanced {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.packaging-image-enhanced img {
    width: 100%;
    height: auto;
    display: block;
}

.packaging-features-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.packaging-feature-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.packaging-feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.feature-icon-large {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.packaging-feature-card span {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    margin-top: 0.5rem;
}

.future-content-enhanced {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.future-image-enhanced {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.future-image-enhanced img {
    width: 100%;
    height: auto;
    display: block;
}

.future-text-enhanced {
    text-align: left;
}

.future-goals-enhanced {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.goal-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.goal-card:hover {
    transform: translateX(5px);
}

.goal-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.goal-card h4 {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.goal-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--text-dark) 100%);
    color: white;
    padding: 4rem 20px 2rem;
    margin-top: 5rem;
    border-top: 3px solid var(--primary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 1rem;
    color: white;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Section Headings sollen immer sichtbar sein, nur die Animation soll laufen */
.section-heading.animate-on-scroll {
    opacity: 1;
}

.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

.section-heading.animate-in {
    animation: none;
}

/* Smooth Transitions für alle interaktiven Elemente */
a, button, .card, .feature-card, .product-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Hover Animationen */
.feature-card:hover,
.feature-box:hover {
    transform: translateY(-8px) scale(1.02);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-comparison-card:hover {
    transform: translateY(-5px) scale(1.01);
}

.ingredient-card-enhanced:hover {
    transform: translateY(-8px);
}

.packaging-feature-card:hover {
    transform: translateY(-5px) scale(1.02);
}

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

/* Logo Animation */
.logo-image {
    transition: transform 0.3s ease !important;
}

.logo:hover .logo-image {
    transform: scale(1.1) rotate(5deg);
}

/* Button Animationen */
.cta-button, .read-more-btn {
    position: relative;
    overflow: hidden;
}

.cta-button::before, .read-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before, .read-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover, .read-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(155, 185, 155, 0.4);
}

/* Feature Tag Animation */
.feature-tag {
    transition: all 0.3s ease;
}

.feature-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(155, 185, 155, 0.3);
}

/* Image Hover Effects */
.product-image, .product-comparison-image, .ingredient-image-enhanced, .packaging-image-enhanced, .future-image-enhanced, .mission-image-block, .text-image-inline {
    overflow: hidden;
}

.product-image img, .product-comparison-image img, .ingredient-image-enhanced img, .packaging-image-enhanced img, .future-image-enhanced img, .mission-image-block img, .text-image-inline img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    display: block;
}

.product-image:hover img, .product-comparison-image:hover img, .ingredient-image-enhanced:hover img, .packaging-image-enhanced:hover img, .future-image-enhanced:hover img, .mission-image-block:hover img, .text-image-inline:hover img {
    transform: scale(1.1);
}

/* Timeline Animation */
.timeline-item {
    transition: all 0.4s ease;
}

.timeline-item:hover {
    transform: translateX(10px);
}

/* Section Heading Animation - nur die Unterstreichung animieren */
.section-heading.animate-in::after {
    animation: slideInUnderline 0.8s ease 0.3s forwards;
}

@keyframes slideInUnderline {
    from {
        width: 0;
        opacity: 0;
    }
    to {
        width: 80px;
        opacity: 1;
    }
}

/* Section Headings sollen immer sichtbar bleiben */
.section-heading {
    opacity: 1 !important;
}

/* Intro Section Animation */
.intro-section {
    animation: fadeIn 1s ease;
}

.intro-title {
    animation: fadeInUp 1s ease 0.2s backwards;
}

.intro-text {
    animation: fadeInUp 1s ease 0.4s backwards;
}

/* Floating Animation für Emojis */
.product-emoji-large {
    animation: float 3s ease-in-out infinite;
}

.product-emoji {
    animation: float 3s ease-in-out infinite;
}

/* Staggered Animation für Grid Items */
.features-grid .feature-card:nth-child(1),
.features-grid .feature-box:nth-child(1) { animation-delay: 0.1s; }
.features-grid .feature-card:nth-child(2),
.features-grid .feature-box:nth-child(2) { animation-delay: 0.2s; }
.features-grid .feature-card:nth-child(3),
.features-grid .feature-box:nth-child(3) { animation-delay: 0.3s; }
.features-grid .feature-card:nth-child(4),
.features-grid .feature-box:nth-child(4) { animation-delay: 0.4s; }

.products-grid .product-card:nth-child(1) { animation-delay: 0.1s; }
.products-grid .product-card:nth-child(2) { animation-delay: 0.2s; }

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Legal Section */
.legal-section {
    padding: 5rem 20px;
    background: var(--bg-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.legal-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.legal-content p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-content ul {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.legal-block {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.legal-block p {
    margin-bottom: 0.75rem;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.footer-column ul {
    list-style: none;
}

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

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--primary-light);
}

.instagram-link-footer {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none;
    display: inline-block;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

.instagram-link-footer:hover {
    color: var(--primary-light) !important;
}

.instagram-link-footer span {
    display: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

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

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

    .products-comparison-wrapper {
        gap: 2rem;
    }

    .product-comparison-card {
        padding: 2rem;
    }

    .sustainability-mission .mission-content-with-image,
    .packaging-content-enhanced,
    .future-content-enhanced {
        gap: 2rem;
    }
}

/* Responsive - Mobile & Tablet */
@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        border-top: 2px solid var(--primary-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav-list {
        flex-direction: column;
        padding: 1rem 20px;
        gap: 0;
    }

    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-list a {
        display: block;
        padding: 1rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

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

    .intro-text {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 2rem;
    }

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

    .success-timeline::before {
        left: 50px;
    }

    .timeline-year {
        min-width: 50px;
        font-size: 1.2rem;
    }

    .timeline-item::before {
        left: 47px;
    }

    .product-detail-card {
        padding: 2rem 1.5rem;
    }

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

    .cta-button {
        text-align: center;
    }

    .products-comparison-section {
        padding: 2rem 10px;
    }

    .products-comparison-section .section-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    /* Products Comparison Mobile - Kompaktes Design */
    .products-comparison-wrapper {
        grid-template-columns: 1fr;
        display: grid;
        gap: 1rem;
        overflow: visible;
        margin-top: 1.5rem;
    }

    .product-comparison-card {
        width: 100%;
        padding: 1rem 0.75rem;
        margin-bottom: 0;
        border-radius: 12px;
    }

    .product-comparison-header {
        padding-bottom: 0.5rem;
        margin-bottom: 0.5rem;
        border-bottom-width: 1px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.25rem;
    }

    .product-emoji-large {
        font-size: 1.2rem;
        margin-bottom: 0;
        line-height: 1;
    }

    .product-comparison-header h2 {
        font-size: 1.1rem;
        margin: 0;
        line-height: 1.2;
    }

    .product-comparison-header .product-tagline {
        font-size: 0.75rem;
        line-height: 1.3;
        margin-top: 0.25rem;
    }

    .product-comparison-image {
        height: 120px;
        margin-bottom: 0.75rem;
        border-radius: 8px;
    }

    .product-description {
        margin-bottom: 0.75rem;
    }

    .product-description p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin: 0;
    }

    .product-features-list {
        margin-bottom: 0.75rem;
        gap: 0.4rem;
        flex-wrap: wrap;
        display: flex;
    }

    .feature-tag {
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
        border-radius: 6px;
    }

    .product-details {
        gap: 0.75rem;
        margin-top: 0.75rem;
        grid-template-columns: 1fr;
    }

    .detail-block {
        margin-bottom: 0.5rem;
    }

    .detail-block h3 {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        font-weight: 600;
    }

    .detail-block ul {
        font-size: 0.75rem;
        line-height: 1.4;
        padding-left: 1.25rem;
        margin: 0;
    }

    .detail-block p {
        font-size: 0.75rem;
        line-height: 1.4;
        margin: 0;
    }

    .comparison-features {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--border-color);
    }

    .comparison-features p {
        font-size: 0.75rem;
        margin-bottom: 0.3rem;
        line-height: 1.4;
    }

    .swipe-indicator {
        display: none;
    }

    /* Sustainability Mobile */
    .sustainability-mission .mission-content-with-image,
    .packaging-content-enhanced,
    .future-content-enhanced {
        grid-template-columns: 1fr;
    }

    .packaging-features-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Responsive - Tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .intro-title {
        font-size: 2.5rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

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

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

    .products-comparison-wrapper {
        gap: 2rem;
    }

    .product-comparison-card {
        padding: 2rem;
    }

    .sustainability-mission .mission-content-with-image,
    .packaging-content-enhanced,
    .future-content-enhanced {
        gap: 2rem;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .header-container {
        padding: 0.75rem 15px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    .logo-image {
        height: 36px !important;
        max-width: 90px !important;
        max-height: 36px !important;
    }
    
    .logo a {
        gap: 0.4rem;
    }

    .intro-section {
        padding: 4rem 15px 2rem;
    }

    .intro-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .intro-text {
        font-size: 0.95rem;
    }

    .section-heading {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .page-header {
        padding: 3rem 15px;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .features-section,
    .products-section,
    .testimonials-section,
    .media-section,
    .who-we-are-section,
    .success-section,
    .contact-section,
    .product-detail-section,
    .products-comparison-section,
    .mission-section,
    .ingredients-section,
    .packaging-section,
    .future-section,
    .cta-section,
    .video-section,
    .gallery-section {
        padding: 3rem 15px;
    }

    .feature-box {
        padding: 1.5rem 1.25rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-box h3 {
        font-size: 1.1rem;
    }

    .product-card {
        padding: 2rem 1.5rem;
    }

    .product-emoji {
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 1.75rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .media-card {
        padding: 1.5rem;
    }

    .media-card h3 {
        font-size: 1.1rem;
    }

    .about-preview-card h2 {
        font-size: 2rem;
    }

    .about-preview-card p {
        font-size: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        min-width: auto;
        text-align: left;
        font-size: 1.1rem;
    }

    .success-timeline::before {
        display: none;
    }

    .timeline-item::before {
        display: none;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .timeline-content h3 {
        font-size: 1.2rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .product-comparison-card {
        padding: 0.875rem 0.65rem;
    }

    .product-comparison-header {
        padding-bottom: 0.4rem;
        margin-bottom: 0.4rem;
        gap: 0.2rem;
    }

    .product-emoji-large {
        font-size: 1rem;
    }

    .product-comparison-header h2 {
        font-size: 1rem;
    }

    .product-comparison-header .product-tagline {
        font-size: 0.7rem;
    }

    .product-comparison-image {
        height: 100px;
        margin-bottom: 0.6rem;
    }

    .product-description p {
        font-size: 0.75rem;
    }

    .product-features-list {
        gap: 0.35rem;
        margin-bottom: 0.6rem;
    }

    .feature-tag {
        padding: 0.25rem 0.5rem;
        font-size: 0.65rem;
    }

    .product-details {
        gap: 0.6rem;
        margin-top: 0.6rem;
    }

    .detail-block {
        margin-bottom: 0.4rem;
    }

    .detail-block h3 {
        font-size: 0.8rem;
        margin-bottom: 0.3rem;
    }

    .detail-block ul {
        font-size: 0.7rem;
        padding-left: 1rem;
    }

    .comparison-features {
        margin-top: 0.6rem;
        padding-top: 0.6rem;
    }

    .comparison-features p {
        font-size: 0.7rem;
        margin-bottom: 0.25rem;
    }

    .product-details {
        grid-template-columns: 1fr;
    }

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

    .ingredient-card-enhanced {
        margin-bottom: 1.5rem;
    }

    /* Legal Section Mobile */
    .legal-section {
        padding: 3rem 20px;
    }

    .legal-content {
        padding: 2rem 1.5rem;
    }

    .legal-content h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }

    .legal-content p {
        font-size: 1rem;
    }

    .legal-block {
        padding: 1.5rem;
    }

    .packaging-features-enhanced {
        grid-template-columns: 1fr;
    }

    .packaging-feature-card {
        padding: 1.25rem;
    }

    .future-goals-enhanced {
        gap: 1rem;
    }

    .goal-card {
        padding: 1.25rem;
    }

    .footer {
        padding: 3rem 15px 1.5rem;
    }

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

    .footer-column h3,
    .footer-column h4 {
        font-size: 1.1rem;
    }

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

    .gallery-filters {
        gap: 0.5rem;
    }

    .filter-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .video-container {
        border-radius: 12px;
    }

    .nav-list {
        padding: 1rem 15px;
    }

    .nav-list a {
        padding: 0.875rem 0;
        font-size: 0.95rem;
    }

    .who-text h2 {
        font-size: 2rem;
    }

    .who-text p {
        font-size: 1rem;
    }

    .mission-content h3,
    .packaging-content h3,
    .future-content h3 {
        font-size: 1.5rem;
    }

    .mission-content p,
    .packaging-content p,
    .future-content p {
        font-size: 1rem;
    }

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

    .cta-content p {
        font-size: 1.1rem;
    }

    .sustainability-cta-content {
        padding: 2rem 1.5rem;
    }

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

    .sustainability-cta-content p {
        font-size: 1.1rem;
    }

    .product-header h2 {
        font-size: 1.75rem;
    }

    .product-tagline {
        font-size: 1rem;
    }

    .detail-block h3 {
        font-size: 1.1rem;
    }

    .comparison-card h3 {
        font-size: 1.3rem;
    }

    .comparison-emoji {
        font-size: 3rem;
    }

    .mission-text-block h2 {
        font-size: 1.75rem;
    }

    .mission-text-block h3 {
        font-size: 1.5rem;
    }
}

/* Touch-friendly adjustments for mobile */
@media (max-width: 768px) {
    button,
    .cta-button,
    .read-more-btn,
    .filter-btn,
    .media-link {
        min-height: 44px;
        min-width: 44px;
    }

    a {
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .read-more-btn {
        width: 100%;
    }
}

/* Landscape orientation adjustments */
@media (max-width: 768px) and (orientation: landscape) {
    .intro-section {
        padding: 3rem 20px 2rem;
    }

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

    .page-header {
        padding: 2.5rem 20px;
    }

    .features-section,
    .products-section,
    .testimonials-section {
        padding: 3rem 20px;
    }
}

/* Better readability on all devices */
@media (max-width: 1024px) {
    body {
        font-size: 16px;
    }

    p {
        line-height: 1.7;
    }

    h1, h2, h3, h4 {
        line-height: 1.3;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .intro-image img,
    .product-image img,
    .who-image img,
    .gallery-item img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

