/* Custom Properties / Variables */
:root {
    --color-orange: #f4a261; /* Warm Orange */
    --color-pink: #ffb6c1;   /* Soft Pink / Bright Pink */
    --color-burgundy: #800020; /* Burgundy */
    --color-darkgrey: #333333; /* Dark Grey */
    --color-white: #ffffff;
    --color-lightbg: #fff0f5; 
}

/* Reset without using * */
html, body, div, span, h1, h2, h3, h4, p, a, ul, li, nav, section, header, footer, button {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
}

.site-body {
    background-color: var(--color-lightbg);
    color: var(--color-darkgrey);
    overflow-x: hidden;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--color-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(--color-pink);
    border-top: 6px solid var(--color-burgundy);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}
.loader-text {
    font-size: 1.2rem;
    color: var(--color-burgundy);
    font-weight: bold;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Advert Top Bar */
.advert-top-bar {
    background-color: var(--color-darkgrey);
    text-align: center;
    padding: 8px 15px;
}
.advert-text {
    color: var(--color-white);
    font-size: 0.85rem;
}

/* Header */
.main-header {
    background-color: var(--color-pink);
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-burgundy);
}
.logo-highlight {
    color: var(--color-white);
    font-style: italic;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-link {
    text-decoration: none;
    color: var(--color-darkgrey);
    font-weight: bold;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--color-burgundy);
}
.btn-shop-header, .btn-primary {
    background-color: var(--color-burgundy);
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.btn-shop-header:hover, .btn-primary:hover {
    background-color: var(--color-orange);
    transform: translateY(-2px);
}

/* Mobile Hamburger */
.hamburger-icon {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.line {
    width: 25px;
    height: 3px;
    background-color: var(--color-darkgrey);
}
.mobile-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 75%; height: 100vh;
    background-color: var(--color-white);
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
    transition: right 0.4s ease;
    padding: 50px 20px;
}
.mobile-menu.active {
    right: 0;
}
.close-menu {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-burgundy);
}
.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}
.mobile-nav-link {
    text-decoration: none;
    color: var(--color-darkgrey);
    font-size: 1.3rem;
    font-weight: bold;
}
.btn-mobile-shop {
    color: var(--color-burgundy);
}

/* Animated Background */
.animated-bg {
    background: linear-gradient(-45deg, #fff0f5, #ffb6c1, #f4a261, #fff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    min-height: 80vh;
}
.hero-text-content {
    flex: 1;
    max-width: 500px;
}
.hero-title {
    font-size: 3rem;
    color: var(--color-burgundy);
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    line-height: 1.5;
}
.hero-image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-product-img {
    max-width: 80%;
    border-radius: 15px;
    box-shadow: 0 10px 20px 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); }
}

/* General Sections */
.content-section {
    padding: 60px 5%;
    background-color: rgba(255,255,255,0.7);
    margin: 20px 5%;
    border-radius: 15px;
}
.section-title {
    text-align: center;
    color: var(--color-burgundy);
    font-size: 2.2rem;
    margin-bottom: 30px;
}
.section-text {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Why Us */
.features-grid {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}
.feature-card {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 20px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.feature-card:hover {
    transform: scale(1.05);
}
.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}
.feature-title {
    color: var(--color-orange);
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}
.testimonial-card {
    background: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
}
.avatar-circle {
    width: 50px; height: 50px;
    background-color: var(--color-pink);
    color: var(--color-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    font-weight: bold;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 15px;
}
.testimonial-name {
    font-weight: bold;
    color: var(--color-burgundy);
}

/* FAQs */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}
.faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--color-pink);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--color-darkgrey);
    cursor: pointer;
    outline: none;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-text {
    padding-bottom: 15px;
    color: #555;
}

/* Footer */
.main-footer {
    background-color: var(--color-darkgrey);
    color: var(--color-white);
    padding: 50px 5% 20px 5%;
}
.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}
.footer-col-title {
    color: var(--color-pink);
    margin-bottom: 15px;
    font-size: 1.2rem;
}
.footer-text, .footer-link {
    color: var(--color-white);
    margin-bottom: 8px;
    text-decoration: none;
    display: block;
}
.footer-link:hover {
    color: var(--color-orange);
}
.footer-list {
    list-style: none;
}
.btn-text-link {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    text-decoration: underline;
    font-size: 1rem;
    margin-bottom: 8px;
    padding: 0;
}
.btn-text-link:hover {
    color: var(--color-orange);
}
.footer-disclaimer {
    border-top: 1px solid #555;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.disclaimer-text {
    font-size: 0.8rem;
    color: #bbb;
}
.footer-copyright {
    text-align: center;
}
.copyright-text {
    font-size: 0.9rem;
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}
.modal-box {
    background: var(--color-white);
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    position: relative;
}
.modal-title {
    color: var(--color-burgundy);
    margin-bottom: 15px;
}
.modal-text {
    margin-bottom: 10px;
    line-height: 1.5;
}
.close-modal {
    position: absolute;
    top: 15px; right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-darkgrey);
}

/* Cookies */
.cookie-container {
    position: fixed;
    bottom: -100px; left: 0; width: 100%;
    background-color: var(--color-darkgrey);
    color: var(--color-white);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 4000;
    transition: bottom 0.5s ease;
}
.cookie-container.show {
    bottom: 0;
}
.cookie-text {
    font-size: 0.9rem;
    margin-right: 20px;
}
.cookie-buttons button {
    padding: 8px 15px;
    margin-left: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
}
.btn-cookie-accept {
    background-color: var(--color-burgundy);
    color: var(--color-white);
}
.btn-cookie-reject {
    background-color: #555;
    color: var(--color-white);
}

/* Responsive Tablet & Mobile */
@media (max-width: 900px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 30px;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-image-content {
        margin-top: 40px;
    }
    .desktop-nav, .btn-shop-header {
        display: none;
    }
    .hamburger-icon {
        display: flex;
    }
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}