/* --- 1. GLOBAL BRAND VARIABLES --- */
:root {
    --accent: #d8bfd8;         /* Light Purple */
    --accent-hover: #cda4cd;   /* Darker purple */
    --text: #57534e;           /* Dark Stone */
    --bg: #fdfbf9;             /* Cream */
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* --- 2. BASE STYLES --- */
* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo { 
    font-family: 'Playfair Display', serif; 
}

/* --- 3. NAVIGATION (Global) --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.nav-links { 
    display: flex; 
    list-style: none; 
    gap: 30px; 
}

.nav-links a { 
    text-decoration: none; 
    color: var(--text); 
    font-weight: 600; 
}

/* --- 4. HOME PAGE: HERO SECTION --- */
.hero-fullscreen {
    position: relative;
    width: 100%;
    height: 90vh;
    background-image: url('hero-placeholder.jpg'); /* Matches your uploaded file */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.45); /* Darkens image for text readability */
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff; /* White text on background image */
    max-width: 800px;
}

.hero-content-center h1 {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content-center p {
    font-size: 1.25rem;
    margin-bottom: 35px;
}

/* --- 5. REVIEWS SECTION (Separated) --- */
.reviews-section {
    padding: 100px 8%;
    background-color: var(--white);
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.review-card {
    background: var(--bg);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.review-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.review-card span {
    font-weight: 600;
    color: var(--accent-hover);
}

/* --- 6. SHOP PAGE: PRODUCT GRID & FILTERS --- */
.category-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 40px 8%;
}

.product-card {
    background: var(--white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.product-card[style*="display: none"] {
    display: none !important;
}

.p-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    margin-bottom: 15px;
}

/* --- 7. BUTTONS & UI --- */
.btn-primary, .btn-add, .filter-btn {
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    padding: 18px 45px;
}

.btn-add {
    background-color: var(--accent);
    color: white;
    width: 100%;
    padding: 14px;
    margin-top: auto;
}

.filter-btn {
    background: var(--white);
    border: 1px solid var(--accent);
    padding: 10px 24px;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent);
    color: white;
}

/* --- 8. MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .navbar { padding: 15px 5%; }
    .nav-links { display: none; }
    
    .hero-fullscreen { height: 70vh; }
    .hero-content-center h1 { font-size: 2.5rem; }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}
