/* Variables */
:root {
    --color-pink-bright: #e91e63; /* Bright Pink Header */
    --color-orange-warm: #ff8c00;
    --color-pink-soft: #ffb6c1;
    --color-burgundy: #800020;
    --color-grey-dark: #333333;
    --color-white: #ffffff;
    --color-text: #2c2c2c;
    --color-bg-light: #fff5f8;
    
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    /* Animated Background */
    background: linear-gradient(-45deg, #fffbf0, #fff0f5, #fff5e6, #fce4ec);
    background-size: 400% 400%;
    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(--color-grey-dark);
    color: var(--color-white);
    text-align: center;
    padding: 8px 15px;
    font-size: 0.8rem;
    position: relative;
    z-index: 1001;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader-content {
    text-align: center;
    position: relative;
}

.loader-text {
    font-size: 2rem;
    color: var(--color-burgundy);
    margin-bottom: 20px;
    font-weight: bold;
    animation: pulseText 1.5s infinite alternate;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-pink-soft);
    border-top: 5px solid var(--color-pink-bright);
    border-radius: 50%;
    margin: 0 auto;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseText {
    from { opacity: 0.6; }
    to { opacity: 1; }
}

/* Header */
.main-header {
    background-color: var(--color-pink-bright);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo-link {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-white);
    text-decoration: none;
  
    letter-spacing: 2px;
    animation: floatLogo 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 25px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
    transition: color var(--transition-speed);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--color-white);
    transition: width var(--transition-speed);
}

.nav-link:hover::after {
    width: 100%;
}

.cta-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.shop-btn {
    background-color: var(--color-white);
    color: var(--color-pink-bright);
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.shop-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 75%; /* 75% width as requested */
    height: 100vh;
    background-color: var(--color-white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    padding: 60px 20px 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1999;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-grey-dark);
    cursor: pointer;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--color-grey-dark);
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
}

.mobile-shop-btn {
    display: block;
    text-align: center;
    background-color: var(--color-pink-bright);
    color: var(--color-white);
    padding: 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-heading {
    font-size: 3.5rem;
    color: var(--color-burgundy);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subheading {
    font-size: 1.2rem;
    color: var(--color-grey-dark);
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-cta {
    display: inline-block;
    background-color: var(--color-orange-warm);
    color: var(--color-white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    transition: background-color var(--transition-speed), transform var(--transition-speed);
}

.hero-cta:hover {
    background-color: #e07b00;
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-animated {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--color-pink-soft);
    animation: imageHover 4s ease-in-out infinite;
}

@keyframes imageHover {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Common Section Styles */
.section-common {
    padding: 80px 20px;
}

.container-common {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-grey-dark);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--color-pink-bright);
    margin: 10px auto 0;
}

/* About Section */
.about-section {
    background-color: rgba(255, 255, 255, 0.6);
}

.section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

/* Why Us */
.why-us-section {
    background-color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-orange-warm);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--color-burgundy);
}

/* Testimonials */
.testimonial-section {
    background-color: var(--color-pink-soft);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    position: relative;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--color-burgundy);
    color: var(--color-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.review-name {
    font-weight: bold;
    color: var(--color-grey-dark);
}

/* FAQ */
.faq-section {
    background-color: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--color-white);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-grey-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 20px;
    color: #666;
    display: none; /* Hidden by default */
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .icon-faq {
    transform: rotate(180deg);
}

.icon-faq {
    transition: transform 0.3s;
}

/* Footer */
.main-footer {
    background-color: var(--color-grey-dark);
    color: var(--color-white);
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-pink-soft);
}

.footer-text {
    margin-bottom: 10px;
    color: #ccc;
    font-size: 0.95rem;
}

.footer-link-email {
    color: var(--color-orange-warm);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link-email:hover {
    color: var(--color-white);
}

.footer-links {
    list-style: none;
}

.footer-li {
    margin-bottom: 10px;
}

.footer-a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-a:hover {
    color: var(--color-white);
}

.modal-trigger {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    text-decoration: underline;
}

.modal-trigger:hover {
    color: var(--color-white);
}

.footer-disclaimer {
    border-top: 1px solid #555;
    padding: 20px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #999;
}

.footer-bottom {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: var(--color-white);
    padding: 40px;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    color: var(--color-grey-dark);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-grey-dark);
}

.modal-title {
    margin-bottom: 20px;
    color: var(--color-burgundy);
}

.modal-p {
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Cookie Popup */
.cookie-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--color-white);
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border-radius: 10px;
    z-index: 5000;
    border-left: 5px solid var(--color-orange-warm);
    display: none; /* Controlled by JS */
}

.cookie-text {
    font-size: 0.9rem;
    margin-bottom: 15px;
    color: var(--color-grey-dark);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 8px 0;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.cookie-btn.accept {
    background-color: var(--color-orange-warm);
    color: var(--color-white);
}

.cookie-btn.reject {
    background-color: #eee;
    color: var(--color-grey-dark);
}

/* Responsive Media Queries */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .hero-content {
        padding-right: 0;
        margin-top: 40px;
    }

    .product-image-animated {
        max-width: 80%;
    }
}