/* Color Variables & Reset Rules via classes */
:root {
    --dusty-mauve: #d47f9a;
    --muted-rosewood: #d58eb6;
    --deep-burgundy: #742335;
    --royal-wine: #4E091C;
    --dark-maroon: #330828;
    --white: #ffffff;
    --light-grey: #f4f4f4;
}

.html-root, .body-container, .main-header, .main-content, .main-footer, .nav-list, .hero-section, .footer-grid, .modal-box {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Background Animation */
.animated-bg {
    background: linear-gradient(-45deg, var(--dark-maroon), var(--royal-wine), var(--deep-burgundy), var(--muted-rosewood));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    color: var(--white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Page Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-maroon);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid var(--dusty-mauve);
    border-top: 6px solid var(--white);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--white);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Top Disclaimer */
.top-disclaimer {
    background-color: var(--dark-maroon);
    color: var(--white);
    text-align: center;
    padding: 8px 10px;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--royal-wine);
}

.disclaimer-text {
    display: block;
    line-height: 1.4;
}

/* Header */
.main-header {
    background-color: var(--muted-rosewood);
    padding: 15px 30px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 1px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--dark-maroon);
}

.btn-primary, .btn-hero {
    background-color: var(--deep-burgundy);
    color: var(--white);
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn-primary:hover, .btn-hero:hover {
    background-color: var(--white);
    color: var(--deep-burgundy);
}

/* Hamburger Mobile Menu */
.hamburger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--deep-burgundy);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    padding: 30px;
}

.mobile-menu-overlay.is-active {
    right: 0;
}

.close-menu-btn {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 2rem;
    align-self: flex-end;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: bold;
}

/* Layout & Typography */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    padding: 80px 30px;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-heading {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-product-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.4);
}

.floating-animation {
    animation: floating 4s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* Sections */
.content-section {
    max-width: 1000px;
    width: 90%;
    margin: 40px auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
    border-bottom: 2px solid var(--dusty-mauve);
    display: inline-block;
    padding-bottom: 10px;
}

.section-card {
    background-color: rgba(255,255,255,0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Grids */
.features-grid, .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card, .testimonial-card {
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature-card:hover, .testimonial-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-text, .testimonial-text {
    font-size: 1.1rem;
    line-height: 1.5;
}

.avatar {
    width: 60px;
    height: 60px;
    background-color: var(--dusty-mauve);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px auto;
}

.testimonial-name {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: var(--dusty-mauve);
}

/* FAQs */
.faq-container {
    text-align: left;
}

.faq-item {
    background-color: rgba(0,0,0,0.2);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.faq-question {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dusty-mauve);
}

.faq-answer {
    line-height: 1.6;
}

/* Footer */
.main-footer {
    background-color: var(--dark-maroon);
    color: var(--white);
    padding: 50px 30px 20px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dusty-mauve);
}

.footer-text, .footer-link {
    color: var(--white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    line-height: 1.5;
}

.footer-link:hover {
    color: var(--dusty-mauve);
}

.footer-btn {
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    text-decoration: underline;
    display: block;
    margin-bottom: 10px;
    font-size: 1rem;
    padding: 0;
    text-align: left;
}

.footer-btn:hover {
    color: var(--dusty-mauve);
}

.footer-disclaimer-box {
    max-width: 1000px;
    margin: 0 auto 20px auto;
    border-top: 1px solid var(--royal-wine);
    padding-top: 20px;
    text-align: center;
}

.footer-disclaimer-text {
    font-size: 0.85rem;
    color: var(--light-grey);
    line-height: 1.4;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid var(--royal-wine);
    padding-top: 20px;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.modal-overlay.is-open {
    visibility: visible;
    opacity: 1;
}

.modal-box {
    background-color: var(--white);
    color: var(--dark-maroon);
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 10px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-maroon);
}

.modal-title {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--dusty-mauve);
    padding-bottom: 10px;
}

.modal-text {
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    color: var(--dark-maroon);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    z-index: 4000;
    width: 90%;
    max-width: 600px;
    text-align: center;
    display: none; /* Controlled via JS */
}

.cookie-text {
    margin-bottom: 15px;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-accept {
    background-color: var(--muted-rosewood);
    color: var(--white);
}

.cookie-reject {
    background-color: var(--light-grey);
    color: var(--dark-maroon);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }
}
/* Suche diesen Bereich am Ende deiner Datei */
@media (max-width: 768px) {
    
    /* DIESE REGEL HINZUFÜGEN: Versteckt den Shop-Button im Header auf dem Handy */
    .header-action {
        display: none;
    }

    /* Bestehende Regeln beibehalten oder so anpassen: */
    .header-inner {
        display: flex;
        justify-content: space-between; 
        align-items: center;
        padding: 0 15px;
    }
    
    .desktop-nav {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}