/* beautycollectio - Style.css */

/* CSS Variables */
:root {
    /* Colors */
    --beautycollectio-color-primary: #ECFAE5;
    --beautycollectio-color-secondary: #DDF6D2;
    --beautycollectio-color-tertiary: #CAE8BD;
    --beautycollectio-color-accent: #B0DB9C;
    --beautycollectio-color-dark: #4A6741;
    --beautycollectio-color-text: #333333;
    --beautycollectio-color-light-text: #666666;
    --beautycollectio-color-white: #FFFFFF;

    /* Typography */
    --beautycollectio-font-heading: 'Cormorant Garamond', serif;
    --beautycollectio-font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --beautycollectio-space-xs: 0.25rem;
    --beautycollectio-space-sm: 0.5rem;
    --beautycollectio-space-md: 1rem;
    --beautycollectio-space-lg: 2rem;
    --beautycollectio-space-xl: 3rem;
    --beautycollectio-space-xxl: 5rem;

    /* Border Radius */
    --beautycollectio-radius-sm: 0.25rem;
    --beautycollectio-radius-md: 0.5rem;
    --beautycollectio-radius-lg: 1rem;

    /* Shadows */
    --beautycollectio-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --beautycollectio-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --beautycollectio-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --beautycollectio-transition-fast: 0.2s ease;
    --beautycollectio-transition-normal: 0.3s ease;
    --beautycollectio-transition-slow: 0.5s ease;

    /* Breakpoints (for reference in media queries) */
    --beautycollectio-bp-sm: 576px;
    --beautycollectio-bp-md: 768px;
    --beautycollectio-bp-lg: 992px;
    --beautycollectio-bp-xl: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--beautycollectio-font-body);
    color: var(--beautycollectio-color-text);
    line-height: 1.6;
    background-color: var(--beautycollectio-color-white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--beautycollectio-font-heading);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--beautycollectio-space-md);
    color: var(--beautycollectio-color-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: var(--beautycollectio-space-md);
}

a {
    color: var(--beautycollectio-color-dark);
    text-decoration: none;
    transition: color var(--beautycollectio-transition-normal);
}

a:hover {
    color: var(--beautycollectio-color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.beautycollectio-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--beautycollectio-space-md);
}

/* Buttons */
.beautycollectio-btn {
    display: inline-block;
    background-color: var(--beautycollectio-color-dark);
    color: var(--beautycollectio-color-white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--beautycollectio-radius-md);
    font-weight: 500;
    transition: all var(--beautycollectio-transition-normal);
    border: none;
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.beautycollectio-btn:hover {
    background-color: var(--beautycollectio-color-accent);
    color: var(--beautycollectio-color-dark);
    transform: translateY(-2px);
}

.beautycollectio-btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--beautycollectio-color-dark);
    padding: 0.7rem 1.4rem;
    border-radius: var(--beautycollectio-radius-md);
    font-weight: 500;
    transition: all var(--beautycollectio-transition-normal);
    border: 1px solid var(--beautycollectio-color-dark);
    cursor: pointer;
    text-align: center;
    font-size: 0.9rem;
}

.beautycollectio-btn-outline:hover {
    background-color: var(--beautycollectio-color-dark);
    color: var(--beautycollectio-color-white);
}

/* Header & Navigation */
.beautycollectio-header {
    background-color: var(--beautycollectio-color-primary);
    padding: var(--beautycollectio-space-sm) 0;
    position: relative;
    z-index: 1000;
    box-shadow: var(--beautycollectio-shadow-sm);
    transition: transform var(--beautycollectio-transition-normal);
}

.beautycollectio-header.scrolled {
    transform: translateY(-100%);
}

.beautycollectio-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.beautycollectio-logo {
    z-index: 1001;
}

.beautycollectio-logo img {
    width: 7rem;
    position: relative;
    z-index: 20;
}

.beautycollectio-logo img {
    display: inline-block;
    transform: rotate(-5deg);
    transition: transform var(--transition-normal);
}

.beautycollectio-logo:hover img {
    transform: rotate(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .beautycollectio-logo img {
        width: 5rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 768px) {
    .beautycollectio-logo img {
        width: 5rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 576px) {
    .beautycollectio-logo img {
        width: 4rem;
        position: relative;
        z-index: 20;
    }
}

@media (max-width: 400px) {
    .beautycollectio-logo img {
        width: 4rem;
        position: relative;
        z-index: 20;
    }
}

/* Mobile Menu - Simple and reliable approach */
@media screen and (max-width: 768px) {

    /* Basic mobile menu setup */
    .beautycollectio-menu-toggle {
        display: flex;
        background: var(--beautycollectio-color-accent);
        border: 1px solid var(--beautycollectio-color-dark);
        color: var(--beautycollectio-color-dark);
        font-size: 1.5rem;
        cursor: pointer;
        padding: 0.5rem;
        border-radius: var(--beautycollectio-radius-sm);
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        position: relative;
        z-index: 9999;
    }

    /* Hide desktop menu by default */
    .beautycollectio-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        z-index: 9998;
        padding-top: 60px;
    }

    /* Show menu when active */
    .beautycollectio-nav.active {
        display: block;
    }

    /* Menu styles */
    .beautycollectio-menu {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 20px;
        background-color: var(--beautycollectio-color-primary);
        border-radius: var(--beautycollectio-radius-md);
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }

    .beautycollectio-menu li {
        width: 100%;
        text-align: center;
    }

    .beautycollectio-menu a {
        display: block;
        padding: 15px;
        background-color: var(--beautycollectio-color-accent);
        color: var(--beautycollectio-color-dark);
        border-radius: var(--beautycollectio-radius-sm);
        font-weight: bold;
        border: 1px solid var(--beautycollectio-color-dark);
        font-size: 16px;
    }

    .beautycollectio-menu a.beautycollectio-active {
        background-color: var(--beautycollectio-color-dark);
        color: white;
    }

    .beautycollectio-menu a:hover,
    .beautycollectio-menu a:focus {
        background-color: var(--beautycollectio-color-tertiary);
        transform: scale(1.05);
    }

    /* Hide underline animation for mobile */
    .beautycollectio-menu a::after {
        display: none;
    }
}

.beautycollectio-nav {
    transition: all var(--beautycollectio-transition-normal);
}

.beautycollectio-menu {
    display: flex;
    gap: var(--beautycollectio-space-lg);
}

.beautycollectio-menu a {
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
}

.beautycollectio-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--beautycollectio-color-accent);
    transition: width var(--beautycollectio-transition-normal);
}

.beautycollectio-menu a:hover::after,
.beautycollectio-menu a.beautycollectio-active::after {
    width: 100%;
}

/* Hero Section */
.beautycollectio-hero {
    background-color: var(--beautycollectio-color-secondary);
    padding: var(--beautycollectio-space-xl) 0;
    background-image: linear-gradient(135deg, rgba(236, 250, 229, 0.9), rgba(202, 232, 189, 0.8)), url('../yoga_gallery/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

.beautycollectio-hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    padding: var(--beautycollectio-space-xl) 0;
}

.beautycollectio-hero h1 {
    font-size: 3rem;
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-hero p {
    font-size: 1.2rem;
    margin-bottom: var(--beautycollectio-space-lg);
}

/* Section Headers */
.beautycollectio-section-header {
    text-align: center;
    margin-bottom: var(--beautycollectio-space-xl);
}

.beautycollectio-section-header h2 {
    position: relative;
    display: inline-block;
}

.beautycollectio-section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--beautycollectio-color-accent);
}

/* About Section */
.beautycollectio-about {
    padding: var(--beautycollectio-space-xl) 0;
    background-color: var(--beautycollectio-color-white);
}

.beautycollectio-about-content {
    display: flex;
    gap: var(--beautycollectio-space-xl);
    align-items: center;
}

.beautycollectio-about-text {
    flex: 1;
}

.beautycollectio-about-image {
    flex: 1;
    border-radius: var(--beautycollectio-radius-md);
    overflow: hidden;
    box-shadow: var(--beautycollectio-shadow-md);
}

/* Featured Products Section */
.beautycollectio-featured {
    padding: var(--beautycollectio-space-xl) 0;
    background-color: var(--beautycollectio-color-primary);
}

.beautycollectio-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--beautycollectio-space-lg);
    margin-bottom: var(--beautycollectio-space-xl);
}

.beautycollectio-product-card {
    background-color: var(--beautycollectio-color-white);
    border-radius: var(--beautycollectio-radius-md);
    overflow: hidden;
    box-shadow: var(--beautycollectio-shadow-sm);
    transition: transform var(--beautycollectio-transition-normal);
}

.beautycollectio-product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--beautycollectio-shadow-md);
}

.beautycollectio-product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.beautycollectio-product-info {
    padding: var(--beautycollectio-space-md);
    text-align: center;
}

.beautycollectio-product-info h3 {
    font-size: 1.2rem;
    margin-bottom: var(--beautycollectio-space-sm);
}

.beautycollectio-price {
    font-weight: 600;
    color: var(--beautycollectio-color-dark);
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-view-all {
    text-align: center;
}

/* Testimonials Section */
.beautycollectio-testimonials {
    padding: var(--beautycollectio-space-xl) 0;
    background-color: var(--beautycollectio-color-white);
}

.beautycollectio-testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    gap: var(--beautycollectio-space-lg);
    justify-content: center;
}

.beautycollectio-testimonial {
    background-color: var(--beautycollectio-color-secondary);
    padding: var(--beautycollectio-space-lg);
    border-radius: var(--beautycollectio-radius-md);
    max-width: 400px;
    box-shadow: var(--beautycollectio-shadow-sm);
}

.beautycollectio-testimonial-content {
    margin-bottom: var(--beautycollectio-space-md);
    font-style: italic;
}

.beautycollectio-testimonial-author {
    text-align: right;
    font-weight: 500;
}

/* CTA Section */
.beautycollectio-cta {
    padding: var(--beautycollectio-space-xl) 0;
    background-color: var(--beautycollectio-color-tertiary);
    text-align: center;
}

.beautycollectio-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.beautycollectio-cta h2 {
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-cta p {
    margin-bottom: var(--beautycollectio-space-lg);
}

/* Footer */
.beautycollectio-footer {
    background-color: var(--beautycollectio-color-dark);
    color: var(--beautycollectio-color-white);
    padding: var(--beautycollectio-space-lg) 0;
    font-size: 0.9rem;
}

.beautycollectio-footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beautycollectio-footer-info {
    display: flex;
    flex-direction: column;
    gap: var(--beautycollectio-space-sm);
}

.beautycollectio-footer-links {
    display: flex;
    gap: var(--beautycollectio-space-lg);
}

.beautycollectio-footer-links a {
    color: var(--beautycollectio-color-white);
}

.beautycollectio-footer-links a:hover {
    color: var(--beautycollectio-color-accent);
}

/* Privacy Popup */
.beautycollectio-privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: var(--beautycollectio-color-white);
    padding: var(--beautycollectio-space-lg);
    z-index: 9999;
    display: none;
}

.beautycollectio-privacy-popup.show {
    display: block;
}

.beautycollectio-privacy-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beautycollectio-privacy-actions {
    display: flex;
    gap: var(--beautycollectio-space-md);
}

/* Contact Form */
.beautycollectio-contact-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--beautycollectio-color-secondary);
    padding: var(--beautycollectio-space-lg);
    border-radius: var(--beautycollectio-radius-md);
    box-shadow: var(--beautycollectio-shadow-md);
}

.beautycollectio-form-group {
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-form-group label {
    display: block;
    margin-bottom: var(--beautycollectio-space-sm);
    font-weight: 500;
}

.beautycollectio-form-control {
    width: 100%;
    padding: var(--beautycollectio-space-sm) var(--beautycollectio-space-md);
    border: 1px solid var(--beautycollectio-color-tertiary);
    border-radius: var(--beautycollectio-radius-sm);
    font-family: var(--beautycollectio-font-body);
    font-size: 0.9rem;
}

.beautycollectio-form-control:focus {
    outline: none;
    border-color: var(--beautycollectio-color-accent);
}

textarea.beautycollectio-form-control {
    min-height: 150px;
    resize: vertical;
}

.beautycollectio-form-check {
    display: flex;
    align-items: flex-start;
    gap: var(--beautycollectio-space-sm);
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-form-check input {
    margin-top: 0.3rem;
}

/* Map Section */
.beautycollectio-map {
    margin-top: var(--beautycollectio-space-xl);
}

.beautycollectio-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: var(--beautycollectio-radius-md);
    box-shadow: var(--beautycollectio-shadow-md);
}

/* Products Page */
.beautycollectio-products-list {
    padding: var(--beautycollectio-space-xl) 0;
}

.beautycollectio-product-full {
    margin-bottom: var(--beautycollectio-space-xl);
    display: flex;
    gap: var(--beautycollectio-space-xl);
    align-items: center;
    padding: var(--beautycollectio-space-lg);
    background-color: var(--beautycollectio-color-secondary);
    border-radius: var(--beautycollectio-radius-md);
}

.beautycollectio-product-image-full {
    flex: 1;
    border-radius: var(--beautycollectio-radius-md);
    overflow: hidden;
}

.beautycollectio-product-details {
    flex: 2;
}

.beautycollectio-product-details h3 {
    margin-bottom: var(--beautycollectio-space-sm);
}

.beautycollectio-product-description {
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-product-actions {
    display: flex;
    gap: var(--beautycollectio-space-md);
}

/* 404 Page */
.beautycollectio-404 {
    padding: var(--beautycollectio-space-xxl) 0;
    text-align: center;
}

.beautycollectio-404 h1 {
    font-size: 6rem;
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-404 p {
    margin-bottom: var(--beautycollectio-space-lg);
}

/* Thank You Page */
.beautycollectio-thank-you {
    padding: var(--beautycollectio-space-xxl) 0;
    text-align: center;
    background-color: var(--beautycollectio-color-secondary);
}

.beautycollectio-thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.beautycollectio-thank-you h1 {
    margin-bottom: var(--beautycollectio-space-md);
}

.beautycollectio-thank-you p {
    margin-bottom: var(--beautycollectio-space-lg);
}

/* Responsive Styles */
/* Global responsive adjustments */
@media screen and (max-width: 1200px) {
    .beautycollectio-container {
        width: 95%;
    }
}

/* Large devices (laptops/desktops) */
@media screen and (max-width: 992px) {

    /* Typography adjustments */
    html {
        font-size: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .beautycollectio-hero h1 {
        font-size: 2.5rem;
    }

    /* Layout adjustments */
    .beautycollectio-about-content,
    .beautycollectio-product-full {
        flex-direction: column;
        gap: var(--beautycollectio-space-md);
    }

    .beautycollectio-about-image,
    .beautycollectio-about-text,
    .beautycollectio-product-image-full,
    .beautycollectio-product-details {
        width: 100%;
    }

    /* Spacing adjustments */
    .beautycollectio-section-header {
        margin-bottom: var(--beautycollectio-space-lg);
    }

    .beautycollectio-hero,
    .beautycollectio-about,
    .beautycollectio-featured,
    .beautycollectio-testimonials,
    .beautycollectio-cta {
        padding: var(--beautycollectio-space-lg) 0;
    }

    /* Footer adjustments */
    .beautycollectio-footer-content {
        flex-direction: column;
        gap: var(--beautycollectio-space-lg);
        text-align: center;
    }

    .beautycollectio-footer-info {
        align-items: center;
    }

    /* Product card adjustments */
    .beautycollectio-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

/* Medium devices (tablets) */
@media screen and (max-width: 768px) {

    /* Typography */
    html {
        font-size: 14px;
    }

    @media screen and (max-width: 768px) {

        /* Typography */
        html {
            font-size: 14px;
        }

        /* Navigation */
        .beautycollectio-menu-toggle {
            display: flex;
        }

        .beautycollectio-header-content {
            padding: var(--beautycollectio-space-sm) 0;
        }

        .beautycollectio-nav {
            position: fixed;
            top: 0;
            right: -100%;
            width: 70%;
            height: 100vh;
            background-color: var(--beautycollectio-color-primary);
            padding: 5rem var(--beautycollectio-space-lg) var(--beautycollectio-space-lg);
            box-shadow: var(--beautycollectio-shadow-lg);
            transition: right var(--beautycollectio-transition-normal);
            z-index: 1001;
            overflow-y: auto;
        }

        .beautycollectio-nav.active {
            right: 0;
        }

        .beautycollectio-menu {
            flex-direction: column;
            gap: var(--beautycollectio-space-md);
        }

        .beautycollectio-menu a {
            display: block;
            padding: var(--beautycollectio-space-sm) 0;
            font-size: 1.1rem;
        }

        /* Add overlay when menu is active */
        body::after {
            content: '';
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
        }

        body.menu-active::after {
            display: block;
        }

        /* Privacy popup */
        .beautycollectio-privacy-content {
            flex-direction: column;
            gap: var(--beautycollectio-space-md);
            text-align: center;
        }

        /* Hero section */
        .beautycollectio-hero-content {
            padding: var(--beautycollectio-space-lg) 0;
        }

        /* Testimonials */
        .beautycollectio-testimonial {
            max-width: 100%;
        }

        /* Product page */
        .beautycollectio-product-image-full img {
            width: 100%;
            height: auto;
        }

        /* Form adjustments */
        .beautycollectio-contact-form::before {
            display: none;
            /* Remove decorative element on smaller screens */
        }
    }

    /* Small devices (landscape phones) */
    @media screen and (max-width: 576px) {

        /* Typography */
        html {
            font-size: 14px;
        }

        h1 {
            font-size: 1.8rem;
        }

        h2 {
            font-size: 1.5rem;
        }

        .beautycollectio-hero h1 {
            font-size: 2rem;
        }

        .beautycollectio-hero p {
            font-size: 1rem;
        }

        /* Layout */
        .beautycollectio-container {
            width: 92%;
            padding: 0 var(--beautycollectio-space-sm);
        }

        .beautycollectio-product-grid {
            grid-template-columns: 1fr;
        }

        .beautycollectio-nav {
            width: 80%;
        }

        .beautycollectio-about,
        .beautycollectio-featured,
        .beautycollectio-testimonials,
        .beautycollectio-cta {
            padding: var(--beautycollectio-space-lg) 0;
        }

        /* Buttons */
        .beautycollectio-btn,
        .beautycollectio-btn-outline {
            padding: 0.6rem 1.2rem;
            font-size: 0.85rem;
            width: 100%;
            max-width: 300px;
            margin: 0 auto;
            display: block;
        }

        /* Privacy popup */
        .beautycollectio-privacy-popup {
            padding: var(--beautycollectio-space-md);
        }

        .beautycollectio-privacy-actions {
            flex-direction: column;
            width: 100%;
            gap: var(--beautycollectio-space-sm);
        }

        .beautycollectio-privacy-actions button,
        .beautycollectio-privacy-actions a {
            width: 100%;
        }

        /* Forms */
        .beautycollectio-form-group {
            margin-bottom: var(--beautycollectio-space-sm);
        }

        /* Map */
        .beautycollectio-map iframe {
            height: 300px;
        }

        /* 404 page */
        .beautycollectio-404 h1 {
            font-size: 4rem;
        }
    }

    /* Extra small devices (phones) */
    @media screen and (max-width: 400px) {

        /* Typography */
        html {
            font-size: 13px;
        }

       

        /* Navigation */
        .beautycollectio-nav {
            width: 85%;
            padding: 4rem var(--beautycollectio-space-md) var(--beautycollectio-space-md);
        }

        /* Footer */
        .beautycollectio-footer-links {
            flex-direction: column;
            gap: var(--beautycollectio-space-sm);
        }

        /* Hero */
        .beautycollectio-hero {
            padding: var(--beautycollectio-space-md) 0;
        }

        .beautycollectio-hero-content {
            padding: var(--beautycollectio-space-md) 0;
        }

        /* Sections */
        .beautycollectio-section-header {
            margin-bottom: var(--beautycollectio-space-md);
        }
    }

    /* Support for high-resolution screens */
    @media screen and (min-width: 1920px) {
        html {
            font-size: 18px;
        }

        .beautycollectio-container {
            max-width: 1400px;
        }
    }
}

@media (min-width: 768px) {
    .beautycollectio-menu-toggle {
        display: none;
    }
}