/* --- Variables & Reset --- */
:root {
    --primary-pink: #F8BBD0; /* Soft Pink */
    --accent-burgundy: #880E4F; /* Burgundy */
    --warm-orange: #FFAB91; /* Warm Orange */
    --dark-grey: #212121; /* Dark Grey */
    --white: #FFFFFF;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    /* Animated Gradient Background */
    background: linear-gradient(-45deg, #fff5f8, #fff0e6, #ffebee);
    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%; }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* --- Loader --- */
.loader-container {
    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: 9999;
    transition: opacity 0.5s ease;
}

.loader-circle {
    width: 50px;
    height: 50px;
    border: 5px solid var(--primary-pink);
    border-top: 5px solid var(--accent-burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    font-family: var(--font-heading);
    color: var(--accent-burgundy);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* --- Top Disclaimer --- */
.top-disclaimer {
    background-color: #fce4ec;
    color: #666;
    text-align: center;
    font-size: 0.8rem;
    padding: 10px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* --- Header --- */
.main-header {
    background-color: var(--primary-pink);
    height: var(--nav-height);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-burgundy);
    font-weight: 700;
    letter-spacing: 1px;
    /* Animated Logo */
    animation: logoPulse 3s infinite alternate;
}

@keyframes logoPulse {
    0% { text-shadow: 0 0 2px rgba(255,255,255,0.3); }
    100% { text-shadow: 0 0 10px rgba(255,255,255,0.8); }
}

.nav-list {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-grey);
    position: relative;
    transition: color 0.3s;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-burgundy);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--accent-burgundy);
}

.shop-btn {
    background-color: var(--accent-burgundy);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: transform 0.3s, background-color 0.3s;
}

.shop-btn:hover {
    background-color: #580833;
    transform: translateY(-2px);
}

.hamburger-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--accent-burgundy);
    cursor: pointer;
}

/* --- Mobile Navigation --- */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%; /* Hidden by default */
    width: 75%; /* 75% width as requested */
    height: 100%;
    background-color: var(--white);
    z-index: 1001;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.mobile-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--accent-burgundy);
}

.close-menu {
    font-size: 1.8rem;
    color: var(--dark-grey);
    cursor: pointer;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-link {
    font-size: 1.2rem;
    color: var(--dark-grey);
    font-weight: 500;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--accent-burgundy);
}

.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #555;
}

.cta-btn {
    display: inline-block;
    background-color: var(--warm-orange);
    color: var(--dark-grey);
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(255, 171, 145, 0.4);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background-color: #ff8a65;
    transform: scale(1.05);
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-bag-img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    mix-blend-mode: multiply; /* Blends image white bg */
}

/* Animation on Image only */
.floating-animation {
    animation: floatBag 4s ease-in-out infinite;
}

@keyframes floatBag {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* --- Sections Common --- */
.section-title {
    font-family: var(--font-heading);
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--accent-burgundy);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 25%;
    width: 50%;
    height: 3px;
    background-color: var(--warm-orange);
}

section {
    padding: 80px 0;
}

/* --- About & Why Us --- */
.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.9);
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--warm-orange);
    margin-bottom: 20px;
}

.feature-title {
    margin-bottom: 15px;
    color: var(--accent-burgundy);
}

/* --- Testimonials --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary-pink);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    color: var(--accent-burgundy);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
}

.customer-name {
    font-weight: 600;
    color: var(--dark-grey);
}

/* --- FAQ --- */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.faq-question.active i {
    transform: rotate(45deg);
    transition: transform 0.3s;
}

.faq-answer.open {
    max-height: 200px; /* Approximate max height */
}

/* --- Footer --- */
.main-footer {
    background-color: var(--dark-grey);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: var(--warm-orange);
}

.footer-column p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #ccc;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a, .modal-trigger {
    color: #ccc;
    transition: color 0.3s;
    background: none;
    font-size: 0.9rem;
    text-align: left;
    padding: 0;
}

.footer-links a:hover, .modal-trigger:hover {
    color: var(--warm-orange);
    text-decoration: underline;
}

.footer-disclaimer {
    border-top: 1px solid #444;
    padding: 20px 0;
    text-align: center;
    font-size: 0.75rem;
    color: #888;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}

/* --- Modals (Popup) --- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--dark-grey);
}

.modal-content h2 {
    color: var(--accent-burgundy);
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.modal-body-text p {
    margin-bottom: 10px;
    color: #333;
}

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 1500;
    display: none; /* Controlled by JS */
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 8px 20px;
    border-radius: 5px;
    font-weight: 600;
}

.cookie-btn.accept {
    background-color: var(--accent-burgundy);
    color: var(--white);
}

.cookie-btn.reject {
    background-color: #ddd;
    color: var(--dark-grey);
}

/* --- Responsive Media Queries --- */
@media (max-width: 768px) {
    .desktop-nav, .shop-btn {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-heading {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-bag-img {
        max-height: 350px;
    }
}