/* Custom Reset without using * to match your prompt request */
html, body, div, header, nav, section, footer, h1, h2, h3, h4, p, a, ul, li, span, button, img {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-decoration: none;
    list-style: none;
}

html.html-root {
    scroll-behavior: smooth;
}

/* CSS Variables */
:root {
    --bright-pink: #13707a;
    --soft-pink: #ffb6c1;
    --warm-orange: #b9c96c;
    --burgundy: #800020;
    --dark-grey: #333333;
    --light-bg: #fff5f8;
    --white: #ffffff;
}

/* Animated Background */
body.body-main {
    color: var(--dark-grey);
    overflow-x: hidden;
}

.animated-bg {
    background: linear-gradient(-45deg, var(--light-bg), var(--soft-pink), var(--warm-orange), var(--light-bg));
    background-size: 400% 400%;
    animation: gradientFlow 15s ease infinite;
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Page Loader */
.loader-container {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-circle {
    width: 60px; height: 60px;
    border: 6px solid var(--soft-pink);
    border-top: 6px solid var(--burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    font-size: 1.5rem;
    color: var(--burgundy);
    font-weight: bold;
}
@keyframes spin { 100% { transform: rotate(360deg); } }

/* Ad Banner */
.ad-banner {
    background-color: var(--dark-grey);
    text-align: center;
    padding: 8px;
}
.ad-text {
    color: var(--white);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* Header */
.header-main {
    background-color: var(--bright-pink);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px 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 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}
.desktop-nav .nav-list {
    display: flex;
    gap: 25px;
}
.nav-link {
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--burgundy);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.btn-shop-now {
    background-color: var(--burgundy);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}
.btn-shop-now:hover {
    background-color: var(--white);
    color: var(--burgundy);
    transform: scale(1.05);
}

/* Hamburger */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger-line {
    width: 25px; height: 3px;
    background-color: var(--white);
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; height: 100vh;
    background-color: var(--white);
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
}
.mobile-menu-overlay.active {
    right: 0;
}
.mobile-menu-content {
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
}
.close-btn {
    align-self: flex-end;
    font-size: 2.5rem;
    background: none;
    border: none;
    color: var(--dark-grey);
    cursor: pointer;
    margin-bottom: 30px;
}
.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.mobile-nav-link {
    font-size: 1.5rem;
    color: var(--dark-grey);
    font-weight: bold;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* Hero Section */
.hero-section {
    padding: 80px 5%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}
.hero-content {
    flex: 1;
}
.hero-title {
    font-size: 4rem;
    color: var(--burgundy);
    margin-bottom: 20px;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: var(--dark-grey);
    margin-bottom: 40px;
    line-height: 1.6;
}
.btn-primary {
    display: inline-block;
    background-color: var(--warm-orange);
    color: var(--white);
    padding: 15px 35px;
    font-size: 1.2rem;
    border-radius: 30px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(141, 11, 57, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(161, 15, 49, 0.6);
}
.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-product-img {
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.floating-anim {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* Generic Sections */
.section-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 5%;
}
.section-title {
    font-size: 2.5rem;
    color: var(--burgundy);
    margin-bottom: 30px;
}
.section-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}
.fw-bold { font-weight: bold; }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.feature-card {
    background: rgba(255,255,255,0.7);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-10px);
}
.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}
.feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--burgundy);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.testimonial-avatar {
    width: 60px; height: 60px;
    background-color: var(--soft-pink);
    color: var(--burgundy);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0 auto 20px auto;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-name {
    font-weight: bold;
    color: var(--burgundy);
}

/* FAQs */
.faq-list {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--soft-pink);
    border-radius: 8px;
    overflow: hidden;
    background: var(--white);
}
.faq-btn {
    width: 100%;
    text-align: left;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--burgundy);
    display: flex;
    justify-content: space-between;
}
.faq-btn::after {
    content: '+';
    font-size: 1.5rem;
}
.faq-btn.active::after {
    content: '-';
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fafafa;
}
.faq-text {
    padding: 20px;
    color: var(--dark-grey);
}

/* Footer */
.footer-main {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 5% 20px 5%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column {
    flex: 1;
    min-width: 250px;
}
.footer-title {
    font-size: 1.5rem;
    color: var(--warm-orange);
    margin-bottom: 20px;
}
.footer-text {
    margin-bottom: 10px;
    line-height: 1.5;
}
.footer-link {
    color: var(--soft-pink);
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}
.footer-link:hover {
    color: var(--white);
}
.footer-modal-btn {
    background: none;
    border: none;
    color: var(--soft-pink);
    font-size: 1rem;
    cursor: pointer;
    margin-bottom: 10px;
    text-align: left;
    padding: 0;
}
.footer-modal-btn:hover {
    color: var(--white);
    text-decoration: underline;
}
.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-disclaimer {
    font-size: 0.8rem;
    color: #aaa;
    margin-bottom: 15px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.footer-copyright {
    font-size: 0.9rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-overlay.active {
    display: flex;
}
.modal-content {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-grey);
}
.modal-title {
    color: var(--burgundy);
    margin-bottom: 20px;
}
.modal-text {
    margin-bottom: 10px;
    color: var(--dark-grey);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0; width: 100%;
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    transition: bottom 0.5s ease;
    flex-wrap: wrap;
    gap: 15px;
}
.cookie-banner.show {
    bottom: 0;
}
.cookie-actions {
    display: flex;
    gap: 10px;
}
.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}
.btn-accept { background-color: var(--warm-orange); color: var(--white); }
.btn-reject { background-color: #555; color: var(--white); }

/* Responsive Media Queries */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger-btn { display: flex; }
    .hero-container { flex-direction: column; text-align: center; }
    .hero-title { font-size: 2.8rem; }
    .cookie-banner { flex-direction: column; text-align: center; }
}