/* Custom Variables for Color Palette */
:root {
    --warm-orange: #FF9F43;
    --soft-pink: #FFC0CB;
    --bright-pink: #FF69B4;
    --burgundy: #800020;
    --dark-grey: #2d2d2d;
    --white: #ffffff;
    --light-grey: #f9f9f9;
}

/* Base Resets mapped strictly by tags to avoid '*' */
html, body, div, span, h1, h2, h3, h4, p, a, img, ul, li, button, header, section, footer, nav {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html {
    scroll-behavior: smooth;
}

/* Animated Modern Background */
.body-container {
    background: linear-gradient(-45deg, #fff5f5, var(--soft-pink), #fff0e6, #ffffff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    color: var(--dark-grey);
    overflow-x: hidden;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Top Advertisement Section */
.top-ad-disclaimer {
    background-color: var(--dark-grey);
    text-align: center;
    padding: 8px 15px;
}

.ad-text {
    color: var(--white);
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Header & Navigation */
.header-section {
    background-color: var(--bright-pink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.logo-container {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
}

.logo-highlight {
    color: var(--burgundy);
    font-style: italic;
}

.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--burgundy);
}

.shop-now-btn, .hero-explore-btn {
    background-color: var(--warm-orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.shop-now-btn:hover, .hero-explore-btn:hover {
    background-color: var(--burgundy);
    transform: scale(1.05);
}

.shop-btn-link, .hero-btn-link {
    text-decoration: none;
}

/* Mobile Menu & Hamburger */
.hamburger-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--white);
    border-radius: 3px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75vw;
    height: 100vh;
    background-color: var(--burgundy);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-close {
    color: var(--white);
    font-size: 40px;
    align-self: flex-end;
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-heading {
    font-size: 48px;
    color: var(--burgundy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--dark-grey);
    line-height: 1.5;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-product-img {
    width: 100%;
    max-width: 450px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    /* Image animation requested */
    animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Sections Styling */
.about-section, .why-us-section, .testimonials-section, .faq-section {
    padding: 60px 5%;
    text-align: center;
}

.section-title {
    font-size: 32px;
    color: var(--burgundy);
    margin-bottom: 30px;
}

/* About Us */
.about-description {
    max-width: 800px;
    margin: 0 auto 20px auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Why Us */
.features-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 15px;
}

.feature-title {
    color: var(--warm-orange);
    margin-bottom: 10px;
}

.feature-text {
    color: var(--dark-grey);
}

/* Testimonials */
.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--soft-pink);
    color: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: bold;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-name {
    color: var(--warm-orange);
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    color: var(--burgundy);
    margin-bottom: 10px;
}

.faq-answer {
    color: var(--dark-grey);
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 50px 5% 20px 5%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    min-width: 250px;
}

.footer-heading {
    color: var(--warm-orange);
    margin-bottom: 15px;
}

.footer-link, .footer-text {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--soft-pink);
}

.modal-trigger-btn {
    background: none;
    border: none;
    color: var(--white);
    text-align: left;
    font-size: 14px;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.modal-trigger-btn:hover {
    color: var(--soft-pink);
}

.footer-disclaimer {
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
    padding: 15px 0;
    margin-bottom: 20px;
    text-align: center;
}

.important-text {
    font-size: 12px;
    color: #ccc;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
}

.copyright-text {
    font-size: 14px;
    color: var(--soft-pink);
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 30px;
    border-radius: 10px;
    position: relative;
    color: var(--dark-grey);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--burgundy);
}

.modal-title {
    color: var(--burgundy);
    margin-bottom: 20px;
}

.modal-subtitle {
    color: var(--warm-orange);
    margin: 15px 0 10px 0;
}

.modal-text {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.modal-divider {
    border: 0;
    height: 1px;
    background: #eee;
    margin: 20px 0;
}

.modal-list {
    padding-left: 20px;
    margin-top: 10px;
}

.modal-list-item {
    margin-bottom: 10px;
    font-size: 14px;
}

/* Page Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    transition: opacity 0.5s ease;
}

.loader-circle {
    border: 5px solid var(--soft-pink);
    border-top: 5px solid var(--burgundy);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-text {
    color: var(--burgundy);
    font-weight: bold;
    letter-spacing: 2px;
}

/* Cookies Pop Up */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 90%;
    max-width: 500px;
    border-left: 5px solid var(--warm-orange);
}

.cookie-text {
    font-size: 14px;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-accept {
    background-color: var(--warm-orange);
    color: var(--white);
}

.cookie-reject {
    background-color: #ccc;
    color: var(--dark-grey);
}

/* Responsive Media Queries */
@media screen and (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    .hamburger-icon {
        display: flex;
    }
    .shop-now-btn {
        display: none; /* Hide on mobile header to save space, added inside hamburger menu */
    }
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    .hero-heading {
        font-size: 36px;
    }
}