.html-root {
    box-sizing: border-box;
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}
.body-root {
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

/* Werbebanner Top */
.ad-banner {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    font-size: 12px;
}
.ad-text {
    letter-spacing: 0.5px;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #0a192f;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-hidden {
    opacity: 0;
    pointer-events: none;
}
.loader-circle {
    border: 5px solid #ffffff;
    border-top: 5px solid #e63946;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}
.loader-text {
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
.main-header {
    background-color: #0a192f;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container {
    display: flex;
    align-items: center;
}
.logo-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}
.desktop-nav {
    display: none; /* Mobile first */
}
@media (min-width: 900px) {
    .desktop-nav {
        display: block;
    }
}
.nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #e63946;
}
.header-cta {
    display: none;
}
@media (min-width: 900px) {
    .header-cta {
        display: block;
    }
    .hamburger-icon {
        display: none;
    }
}
.shop-btn {
    background-color: #e63946;
    color: #ffffff;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
}
.shop-btn:hover {
    background-color: #c92a37;
    transform: translateY(-2px);
}

/* Hamburger & Mobile Menu */
.hamburger-icon {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.hamburger-bar {
    width: 30px;
    height: 3px;
    background-color: #ffffff;
}
.mobile-menu {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100vh;
    background-color: #0a192f;
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 30px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.mobile-menu-active {
    right: 0;
}
.close-icon {
    color: #ffffff;
    font-size: 40px;
    align-self: flex-end;
    cursor: pointer;
    line-height: 1;
}
.mobile-nav-list {
    list-style: none;
    margin: 50px 0 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.mobile-nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 20px;
}
.mobile-shop-btn {
    background-color: #e63946;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 20px;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    margin-top: 20px;
}

/* Sections Global */
.main-content {
    background-color: #ffffff;
}
.section-title {
    text-align: center;
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #0a192f;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
    background-color: #f8f9fa;
    text-align: center;
}
@media (min-width: 900px) {
    .hero-section {
        flex-direction: row;
        text-align: left;
        padding: 80px 10%;
    }
}
.hero-content {
    flex: 1;
}
.hero-heading {
    font-size: 40px;
    color: #0a192f;
    margin: 0 0 15px 0;
}
.hero-subheading {
    font-size: 18px;
    color: #555555;
    margin: 0 0 30px 0;
    line-height: 1.5;
}
.hero-btn {
    background-color: #e63946;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
    display: inline-block;
}
.hero-btn:hover {
    background-color: #c92a37;
}
.hero-image-container {
    flex: 1;
    margin-top: 40px;
    display: flex;
    justify-content: center;
}
@media (min-width: 900px) {
    .hero-image-container { margin-top: 0; }
}
.hero-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* About Section */
.about-section {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    margin: 0;
}

/* Why Us Section */
.why-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
}
.features-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}
@media (min-width: 800px) {
    .features-grid {
        flex-direction: row;
    }
}
.feature-card {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}
.feature-title {
    font-size: 20px;
    color: #0a192f;
    margin: 0 0 10px 0;
}
.feature-text {
    color: #555555;
    margin: 0;
    line-height: 1.4;
}

/* Testimonials */
.testimonials-section {
    padding: 40px 20px;
}
.reviews-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}
@media (min-width: 700px) {
    .reviews-container {
        flex-direction: row;
    }
}
.review-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}
.avatar-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 10px;
    object-fit: cover;
}
.reviewer-name {
    margin: 0 0 10px 0;
    color: #0a192f;
}
.review-text {
    font-style: italic;
    color: #555555;
    margin: 0;
}

/* FAQs */
.faq-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 40px;
    border-radius: 8px;
}
.faq-item {
    margin-bottom: 20px;
}
.faq-question {
    font-size: 18px;
    color: #e63946;
    margin: 0 0 5px 0;
}
.faq-answer {
    color: #333333;
    margin: 0;
    line-height: 1.5;
}

/* Footer */
.main-footer {
    background-color: #0a192f;
    color: #ffffff;
    padding: 50px 20px 20px 20px;
}
.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    margin-bottom: 30px;
}
@media (min-width: 800px) {
    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-col-title {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: #e63946;
}
.footer-text {
    margin: 0 0 8px 0;
    font-size: 14px;
}
.footer-link {
    color: #ffffff;
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-link:hover {
    color: #e63946;
}
.footer-disclaimer {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}
.disclaimer-text {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
    margin: 0;
}
.footer-copyright {
    text-align: center;
    margin-top: 20px;
}
.copyright-text {
    font-size: 14px;
    margin: 0;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 3000;
}
.modal-active {
    opacity: 1;
    pointer-events: auto;
}
.modal-box {
    background-color: #ffffff;
    width: 90%;
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    color: #000000;
}
.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #0a192f;
    line-height: 1;
}
.modal-title {
    margin: 0 0 15px 0;
    color: #e63946;
}
.modal-text {
    margin: 0 0 10px 0;
    line-height: 1.5;
}

/* Cookies Pop-up */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #0a192f;
    color: #ffffff;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: bottom 0.5s ease;
    z-index: 4000;
    box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}
@media (min-width: 700px) {
    .cookie-popup {
        flex-direction: row;
        justify-content: center;
    }
}
.cookie-active {
    bottom: 0;
}
.cookie-text {
    margin: 0;
    font-size: 14px;
    text-align: center;
}
.cookie-buttons {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-weight: bold;
}
.accept-btn {
    background-color: #e63946;
    color: #ffffff;
}
.reject-btn {
    background-color: #ffffff;
    color: #000000;
}