/* Core Variables & Reset approach without using * selector */
:root {
    --soft-cream: #FFF5E6;
    --light-apricot: #FFD8A8;
    --warm-peach: #FFB56B;
    --coral-orange: #FF7F50;
    --deep-terracotta: #E94F37;
    --dark-bg: #222222;
    --white: #FFFFFF;
    --text-color: #333333;
    --font-family: 'Helvetica Neue', Arial, sans-serif;
}

html, body, div, p, h1, h2, h3, h4, h5, ul, li, a, button, section, header, footer, dialog {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.site-body {
    font-family: var(--font-family);
    color: var(--text-color);
    background: linear-gradient(120deg, var(--soft-cream), var(--light-apricot), var(--soft-cream));
    background-size: 200% 200%;
    animation: gradientBG 15s ease infinite;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ad Banner */
.ad-banner {
    background-color: var(--soft-cream);
    text-align: center;
    padding: 8px;
    border-bottom: 1px solid var(--light-apricot);
}
.ad-text {
    font-size: 12px;
    color: #666;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--soft-cream);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--light-apricot);
    border-top: 5px solid var(--deep-terracotta);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    color: var(--deep-terracotta);
    font-weight: 300;
}
@keyframes spin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

/* Header */
.site-header {
    background-color: var(--coral-orange); /* Fits the bright pink/coral request */
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.logo-link {
    text-decoration: none;
}
.logo-text {
    color: var(--white);
    font-size: 28px;
    font-weight: bold;
    animation: pulseLogo 3s infinite alternate;
}
@keyframes pulseLogo {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { transform: scale(1.05); text-shadow: 0 0 15px rgba(255,255,255,0.9); }
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-right: 30px;
}
.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover {
    color: var(--soft-cream);
}
.shop-btn {
    background-color: var(--deep-terracotta);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
}
.shop-btn:hover {
    background-color: var(--white);
    color: var(--deep-terracotta);
    transform: translateY(-2px);
}

/* Hamburger (Mobile) */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger-line {
    width: 30px;
    height: 3px;
    background-color: var(--white);
}
.close-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: var(--white);
    cursor: pointer;
    align-self: flex-end;
    margin: 20px;
}

/* Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5%;
}
.section-title {
    font-size: 36px;
    color: var(--deep-terracotta);
    text-align: center;
    margin-bottom: 40px;
}

/* Hero Section */
.hero-section {
    padding: 80px 5%;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-image-wrapper {
    flex: 1;
}
.hero-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}
.hero-text-content {
    flex: 1;
}
.hero-heading {
    font-size: 48px;
    color: var(--deep-terracotta);
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-subheading {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #555;
}
.cta-btn {
    display: inline-block;
    background-color: var(--deep-terracotta);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s;
}
.cta-btn:hover {
    background-color: var(--coral-orange);
    transform: scale(1.05);
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.6);
}
.about-text {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: center;
}
.product-highlight {
    display: flex;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.product-img {
    width: 40%;
    object-fit: cover;
}
.product-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-name {
    font-size: 24px;
    color: var(--deep-terracotta);
    margin-bottom: 15px;
}
.product-desc {
    margin-bottom: 15px;
    line-height: 1.6;
}
.product-price {
    font-weight: bold;
    font-size: 20px;
    color: var(--coral-orange);
    margin-bottom: 20px;
}
.product-link {
    align-self: flex-start;
    background-color: var(--warm-peach);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

/* Features (Why Us) */
.features-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.feature-card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 40px;
    margin-bottom: 15px;
}
.feature-title {
    font-size: 20px;
    color: var(--deep-terracotta);
    margin-bottom: 10px;
}
.feature-text {
    color: #666;
}

/* Testimonials */
.testimonials-section {
    background-color: rgba(255, 255, 255, 0.4);
}
.testimonials-grid {
    display: flex;
    gap: 30px;
}
.testimonial-card {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.customer-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--warm-peach);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: bold;
    font-size: 20px;
}
.customer-name {
    font-size: 18px;
}
.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.6;
}

/* FAQs */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
    font-size: 18px;
    color: var(--coral-orange);
    margin-bottom: 10px;
}
.faq-answer {
    color: #666;
    line-height: 1.5;
}

/* Footer */
.site-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 5% 20px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}
.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-heading {
    font-size: 20px;
    color: var(--light-apricot);
    margin-bottom: 15px;
}
.footer-link, .footer-text {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--warm-peach);
}
.footer-legal {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
}
.legal-notice {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
.copyright-text {
    font-size: 14px;
    color: #bbb;
}

/* Modals */
.modal-dialog {
    border: none;
    border-radius: 15px;
    padding: 40px;
    max-width: 500px;
    background-color: var(--white);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.modal-dialog::backdrop {
    background-color: rgba(0,0,0,0.5);
}
.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--deep-terracotta);
}
.modal-title {
    color: var(--deep-terracotta);
    margin-bottom: 20px;
    font-size: 24px;
}
.modal-text {
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--text-color);
}

/* Cookie Pop-up */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
    width: 90%;
    max-width: 600px;
}
.cookie-text {
    text-align: center;
    color: var(--text-color);
}
.cookie-buttons {
    display: flex;
    gap: 15px;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.accept-btn {
    background-color: var(--deep-terracotta);
    color: var(--white);
}
.reject-btn {
    background-color: #ccc;
    color: var(--text-color);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .hamburger-btn { display: flex; }
    .close-menu-btn { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%; /* Exakt wie gefordert: 75% */
        height: 100vh;
        background-color: var(--coral-orange);
        flex-direction: column;
        align-items: center;
        transition: right 0.3s ease;
        padding-top: 20px;
    }
    .nav-menu.active {
        right: 0;
    }
    .nav-list {
        flex-direction: column;
        margin-right: 0;
        text-align: center;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .hero-container { flex-direction: column; text-align: center; }
    .features-grid, .testimonials-grid { flex-direction: column; }
    .product-highlight { flex-direction: column; }
    .product-img { width: 100%; }
    .footer-container { flex-direction: column; gap: 30px; text-align: center; }
}