/* Color Palette & Variables */
:root {
    --bg-pale: #FDECEF;
    --bg-pastel: #F6C8D1;
    --bg-rose: #E99DAC;
    --bg-coral: #E08874;
    --bg-crimson: #D44142;
    --text-dark: #1A1A1A;
    --text-light: #FFFFFF;
}

/* Reset without * selector */
html, body, div, span, h1, h2, h3, h4, p, a, ul, li, header, nav, section, footer, button, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

body.site-body {
    background: linear-gradient(270deg, var(--bg-pale), var(--bg-pastel));
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--bg-pale);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader-circle {
    width: 60px; height: 60px;
    border: 6px solid var(--bg-rose);
    border-top: 6px solid var(--bg-crimson);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    font-size: 1.2rem; font-weight: bold; color: var(--bg-crimson);
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Ad Banner */
.ad-banner {
    background-color: var(--bg-pale);
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--bg-rose);
}

/* Header */
.main-header {
    background-color: var(--bg-crimson);
    padding: 15px 5%;
    position: sticky; top: 0; z-index: 1000;
}
.header-container {
    display: flex; justify-content: space-between; align-items: center;
}
.logo-text {
    font-size: 1.8rem; font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    animation: pulseLogo 3s infinite alternate;
}
@keyframes pulseLogo {
    0% { letter-spacing: 1px; color: var(--text-light); }
    100% { letter-spacing: 3px; color: var(--bg-pale); }
}

.desktop-nav .nav-list {
    list-style: none; display: flex; gap: 25px;
}
.nav-link {
    color: var(--text-light); text-decoration: none;
    font-weight: 500; transition: color 0.3s;
}
.nav-link:hover { color: var(--bg-pastel); }

.shop-now-btn {
    background-color: var(--bg-pale);
    color: var(--bg-crimson);
    padding: 10px 20px; border-radius: 25px;
    text-decoration: none; font-weight: bold;
    transition: background 0.3s, transform 0.2s;
}
.shop-now-btn:hover { background-color: var(--text-light); transform: scale(1.05); }

/* Mobile Menu */
.hamburger-btn {
    display: none; background: none; border: none;
    font-size: 2rem; color: var(--text-light); cursor: pointer;
}
.mobile-menu {
    position: fixed; top: 0; right: -100%;
    width: 75%; height: 100vh;
    background-color: var(--bg-crimson);
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 50px 20px; box-shadow: -5px 0 15px rgba(0,0,0,0.2);
}
.mobile-menu.active { right: 0; }
.close-menu-btn {
    background: none; border: none; font-size: 2rem;
    color: var(--text-light); position: absolute; top: 20px; right: 20px; cursor: pointer;
}
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.mobile-nav-link {
    color: var(--text-light); text-decoration: none;
    font-size: 1.5rem; display: block;
}

/* Hero Section */
.hero-section {
    display: flex; align-items: center; justify-content: space-between;
    padding: 80px 5%; min-height: 80vh;
}
.hero-content { flex: 1; padding-right: 40px; }
.hero-heading { font-size: 3.5rem; color: var(--bg-crimson); margin-bottom: 20px; }
.hero-subheading { font-size: 1.2rem; margin-bottom: 40px; }
.hero-cta {
    background-color: var(--bg-crimson); color: var(--text-light);
    padding: 15px 35px; border-radius: 30px; text-decoration: none;
    font-size: 1.2rem; font-weight: bold; display: inline-block;
    transition: all 0.3s ease;
}
.hero-cta:hover { background-color: var(--bg-coral); box-shadow: 0 10px 20px rgba(212, 65, 66, 0.4); transform: translateY(-3px); }

.hero-image-container { flex: 1; text-align: center; }
.hero-image {
    max-width: 80%; border-radius: 20px;
    animation: floatImg 4s ease-in-out infinite;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
@keyframes floatImg {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Sections Global */
.section-container { max-width: 1200px; margin: 0 auto; text-align: center; padding: 60px 20px; }
.section-title { font-size: 2.5rem; color: var(--bg-crimson); margin-bottom: 30px; }
.section-text { font-size: 1.1rem; max-width: 800px; margin: 0 auto; line-height: 1.8; }

/* Features & Testimonials */
.features-grid, .testimonials-grid { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }
.feature-card, .testimonial-card {
    background-color: var(--text-light); padding: 30px; border-radius: 15px;
    flex: 1; min-width: 250px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}
.feature-card:hover, .testimonial-card:hover { transform: translateY(-10px); }
.feature-icon { font-size: 3rem; display: block; margin-bottom: 15px; }
.feature-heading, .testimonial-name { font-size: 1.3rem; margin-bottom: 10px; color: var(--bg-crimson); }
.testimonial-header { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 15px; }
.testimonial-avatar {
    width: 50px; height: 50px; background-color: var(--bg-rose); color: var(--text-light);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; font-size: 1.2rem;
}

/* FAQs */
.faq-list { text-align: left; max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--text-light); padding: 20px; margin-bottom: 15px; border-radius: 10px; cursor: pointer; transition: background 0.3s;}
.faq-item:hover { background: var(--bg-pale); }
.faq-question { font-size: 1.2rem; color: var(--bg-crimson); margin-bottom: 5px; }
.faq-answer { display: none; font-size: 1rem; margin-top: 10px; }

/* Footer */
.main-footer { background-color: var(--text-dark); color: var(--text-light); padding: 50px 5% 20px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 40px; }
.footer-column { flex: 1; min-width: 250px; }
.footer-heading { color: var(--bg-rose); margin-bottom: 20px; font-size: 1.4rem; }
.footer-text, .footer-list-item { margin-bottom: 10px; }
.footer-list { list-style: none; }
.footer-link, .footer-btn-link { color: var(--text-light); text-decoration: none; transition: color 0.3s; background: none; border: none; font-size: 1rem; cursor: pointer; text-align: left; padding: 0;}
.footer-link:hover, .footer-btn-link:hover { color: var(--bg-pastel); }
.footer-disclaimer { border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; text-align: center; color: #aaa; margin-bottom: 10px; }
.footer-copyright { text-align: center; font-size: 0.9rem; color: #888; }

/* Modals */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6); display: none; justify-content: center; align-items: center; z-index: 3000;
}
.modal-overlay.active { display: flex; }
.modal-content {
    background: var(--text-light); padding: 40px; border-radius: 15px; width: 90%; max-width: 500px;
    position: relative; color: var(--text-dark);
}
.close-modal { position: absolute; top: 15px; right: 20px; background: none; border: none; font-size: 1.5rem; cursor: pointer; }
.modal-title { color: var(--bg-crimson); margin-bottom: 20px; font-size: 1.8rem;}
.modal-text { margin-bottom: 10px; }
.modal-link { color: var(--bg-crimson); text-decoration: none; }

/* Cookie Banner */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; width: 100%;
    background-color: var(--text-dark); color: var(--text-light);
    padding: 20px 5%; display: flex; justify-content: space-between; align-items: center; z-index: 4000;
    box-shadow: 0 -5px 10px rgba(0,0,0,0.2);
}
.cookie-text { flex: 1; margin-right: 20px; font-size: 0.9rem;}
.cookie-actions { display: flex; gap: 10px; }
.cookie-btn { padding: 10px 20px; border: none; border-radius: 5px; cursor: pointer; font-weight: bold; }
.accept-btn { background-color: var(--bg-crimson); color: var(--text-light); }
.reject-btn { background-color: transparent; border: 1px solid var(--text-light); color: var(--text-light); }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .desktop-nav, .shop-now-btn { display: none; }
    .hamburger-btn { display: block; }
    .hero-section { flex-direction: column; text-align: center; padding-top: 40px; }
    .hero-content { padding-right: 0; margin-bottom: 40px; }
    .hero-heading { font-size: 2.5rem; }
    .cookie-banner { flex-direction: column; text-align: center; gap: 15px; }
    .cookie-text { margin-right: 0; }
}