/*
Theme Name: Velvet 2026 (Onyx Edition)
Theme URI: https://barradatijucaescortgirls.com
Author: Velvet Brand
Description: A high-performance, AEO-first theme for curated portfolios.
Version: 3.0.0 (Gold Master)
License: Proprietary
Text Domain: velvet
*/

/* --- 0. ASSETS & IMPORTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* --- 1. VARIABLES (The Design System) --- */
:root {
    /* Palette: Onyx & Champagne */
    --bg-body: #0f0f10;       /* Deep matte black */
    --bg-surface: #18181b;    /* Slightly lighter for cards/headers */
    --bg-overlay: rgba(255, 255, 255, 0.05);
    
    --text-main: #e0e0e0;     /* Platinum white */
    --text-muted: #a1a1aa;    /* Grey for secondary text */
    
    --accent-gold: #e5c185;   /* Champagne Gold */
    --accent-glow: rgba(229, 193, 133, 0.15);
    
    --border-subtle: #27272a; /* Very subtle borders */

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --container-width: 1200px;

    /* THE LUXE SPACING STANDARD (Final Lap Fix) */
    --spacing-section-desktop: 120px; /* Massive breathing room */
    --spacing-section-mobile: 80px;   /* Tighter but still clean */
}

/* --- 2. RESET & BASE --- */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #fff;
    font-weight: 400;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; letter-spacing: -0.02em; }
h2 { font-size: 2rem; color: var(--accent-gold); }

a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--accent-gold); }
p { margin-bottom: 1.5rem; }

/* --- 3. LAYOUT UTILITIES & GLOBAL SPACING --- */
.container { max-width: var(--container-width); margin: 0 auto; padding: 0 20px; width: 100%; }

.screen-reader-text {
    border: 0; clip: rect(1px, 1px, 1px, 1px); -webkit-clip-path: inset(50%);
    clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden;
    padding: 0; position: absolute; width: 1px; word-wrap: normal !important;
}

/* GLOBAL SECTION SPACING (Standardizes Top/Bottom gaps) */
.latest-profiles,       /* Homepage Grid */
.gallery-section,       /* Gallery Page */
.page-container,        /* Generic Pages */
.archive-container,     /* Archive Pages */
.profile-layout,        /* Single Profile Content */
.luxe-form-wrapper {    /* Forms */
    padding-top: var(--spacing-section-desktop);
    padding-bottom: var(--spacing-section-desktop);
}

/* --- 4. HEADER --- */
.site-header {
    background-color: rgba(15, 15, 16, 0.9);
    border-bottom: 1px solid var(--border-subtle);
    padding: 25px 0;
    position: sticky; top: 0; z-index: 1000;
    backdrop-filter: blur(10px);
}
.header-container { display: flex; justify-content: space-between; align-items: center; }

.site-title a {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

/* Nav Menu & Icon Layout */
.main-navigation .menu-wrapper {
    display: flex;              /* Forces items (Menu + Icon) to sit in one line */
    align-items: center;        /* Centers them vertically */
    gap: 20px;                  /* Space between menu and icon */
}

.main-navigation ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0; padding: 0;
}

.main-navigation li {
    margin-left: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header Login Icon */
.header-login-icon {
    display: inline-block;
    color: var(--text-main);
    vertical-align: middle;
    transition: 0.3s ease;
}
.header-login-icon:hover {
    color: var(--accent-gold);
    transform: scale(1.1);
}
.header-login-icon svg { display: block; }

/* --- 5. FOOTER --- */
.site-footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border-subtle);
    padding: 60px 0 30px;
    margin-top: 80px;
    font-size: 0.9rem;
    color: var(--text-muted);
    text-align: center;
}
.footer-container { display: flex; flex-direction: column; align-items: center; }

/* --- 6. SAFETY BLUR (Global) --- */
.blur-filter, .entry-content img {
    filter: blur(12px) grayscale(20%);
    transition: all 0.6s ease;
    cursor: pointer;
    border-radius: 4px;
}
.blur-filter:hover, .entry-content img:hover {
    filter: blur(0) grayscale(0);
}

/* --- 7. FRONT PAGE & ARCHIVES --- */
.front-hero {
    background-color: var(--bg-body);
    padding: 100px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-subtle);
}
.hero-title { font-size: 3.5rem; margin-bottom: 20px; color: #fff; line-height: 1.1; }
.hero-subtitle { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 50px; }

/* Section Headers */
.section-header, .archive-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-title { font-size: 1rem; text-transform: uppercase; letter-spacing: 3px; color: var(--text-muted); }
.section-line { width: 60px; height: 2px; background: var(--accent-gold); margin: 15px auto 0; }

.archive-title { font-size: 3rem; color: var(--accent-gold); margin-bottom: 15px; }
.archive-description { font-size: 1.2rem; color: var(--text-muted); }

/* Buttons */
.btn-outline-gold {
    display: inline-block; border: 1px solid var(--accent-gold); color: var(--accent-gold);
    padding: 15px 40px; text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.btn-outline-gold:hover { background: var(--accent-gold); color: #000; box-shadow: 0 0 20px var(--accent-glow); }

/* Pagination */
.pagination-wrapper { text-align: center; margin-top: 40px; }
.pagination-wrapper .page-numbers {
    display: inline-block; padding: 10px 15px; margin: 0 5px;
    background: var(--bg-surface); color: var(--text-main); border: 1px solid var(--border-subtle);
}
.pagination-wrapper .page-numbers.current, .pagination-wrapper .page-numbers:hover {
    background: var(--accent-gold); color: #000; border-color: var(--accent-gold);
}

/* --- 8. PROFILE GRID (The Loop) --- */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 40px;
}
.profile-card {
    background: var(--bg-surface); border: 1px solid var(--border-subtle);
    transition: transform 0.3s ease; position: relative;
}
.profile-card:hover { transform: translateY(-5px); border-color: var(--accent-gold); }
.profile-image-wrapper { position: relative; aspect-ratio: 3 / 4; overflow: hidden; background: #000; }
.profile-thumb { width: 100%; height: 100%; object-fit: cover; }
.card-badge {
    position: absolute; bottom: 15px; right: 15px; background: var(--accent-gold);
    color: #000; font-size: 0.7rem; font-weight: 700; padding: 4px 10px; z-index: 5; text-transform: uppercase;
}
.profile-info { padding: 20px; text-align: center; }
.profile-name { font-size: 1.5rem; margin-bottom: 5px; color: #fff; }
.profile-meta { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; }

/* --- 9. SINGLE PROFILE PAGE --- */
.profile-hero {
    position: relative; height: 60vh; min-height: 400px;
    display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg-img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.6; z-index: 1; }
.hero-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, var(--bg-body) 0%, transparent 80%); z-index: 2;
}
.hero-content { position: relative; z-index: 3; padding-bottom: 60px; }

.verification-badge {
    display: inline-block; background: var(--accent-gold); color: #000;
    padding: 6px 16px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 15px;
}
.profile-title { font-size: 3.5rem; margin-bottom: 10px; text-shadow: 0 4px 10px rgba(0,0,0,0.5); }
.profile-subtitle { font-size: 1.25rem; opacity: 0.9; }

.profile-layout { display: flex; flex-wrap: wrap; gap: 60px; }
.profile-main { flex: 2; min-width: 300px; }
.profile-sidebar { flex: 1; min-width: 300px; }

.editor-note-box {
    background: rgba(229, 193, 133, 0.05); border-left: 3px solid var(--accent-gold);
    padding: 25px; margin-bottom: 40px;
}
.bio-content { font-size: 1.1rem; line-height: 1.8; margin-bottom: 50px; }

/* Interview */
.interview-section { border-top: 1px solid var(--border-subtle); padding-top: 40px; }
.interview-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.qa-label { display: block; color: var(--text-muted); font-size: 0.75rem; text-transform: uppercase; margin-bottom: 5px; }

/* Sidebar */
.sidebar-card { background: var(--bg-surface); padding: 30px; border: 1px solid var(--border-subtle); position: sticky; top: 100px; }
.profile-stats .stat-row { display: flex; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px dotted #333; }
.profile-stats dd { font-weight: 600; color: #fff; }
.btn-gold {
    display: block; width: 100%; text-align: center; background: var(--accent-gold); color: #000;
    padding: 15px; font-weight: 700; text-transform: uppercase; margin-top: 25px; transition: 0.3s; border: none; cursor: pointer;
}
.btn-gold:hover { background: #fff; }

/* Dark Mode Map */
iframe, .map-frame { filter: invert(90%) hue-rotate(180deg); }

/* --- 10. LUXE PAGE PATTERNS (About, FAQ) --- */
.luxe-drop-cap::first-letter {
    float: left; font-family: var(--font-heading); font-size: 4rem;
    line-height: 0.8; padding-right: 15px; padding-top: 5px; color: var(--accent-gold);
}
.luxe-signature {
    font-family: var(--font-heading); font-size: 1.5rem; font-style: italic;
    color: var(--accent-gold); margin-top: 50px; text-align: right;
}
.standards-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; margin: 60px 0;
}
.standard-item { border: 1px solid #333; padding: 30px; text-align: center; transition: 0.3s; }
.standard-item:hover { border-color: var(--accent-gold); }
.standard-icon { display: block; font-size: 1.5rem; color: var(--accent-gold); margin-bottom: 15px; }
.luxe-manifesto {
    border-left: 3px solid var(--accent-gold); padding-left: 30px;
    margin: 50px 0; font-style: italic; color: #fff; font-size: 1.3rem;
}
details.luxe-faq { background: #18181b; border-bottom: 1px solid #333; margin-bottom: 15px; }
details.luxe-faq summary { padding: 20px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; }
details.luxe-faq summary::after { content: '+'; color: var(--accent-gold); font-size: 1.5rem; }
details.luxe-faq[open] summary::after { content: '-'; }
.faq-answer { padding: 0 20px 20px; color: #a1a1aa; border-top: 1px solid #222; margin-top: 10px; padding-top: 15px; }

/* --- 11. GALLERIES (Standard & Inline) --- */
.gallery-section { background: #000; }
.gallery-grid, .gallery-grid-inline {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
    max-width: 1040px; margin: 0 auto; width: 100%;
}
.gallery-item, .gallery-item-portrait {
    width: 100%; aspect-ratio: 2 / 3; overflow: hidden; background: #111;
}
.gallery-item img, .gallery-item-portrait img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}
.gallery-gate, .gallery-gate-inline { text-align: center; margin-top: 50px; }

/* --- 12. FORMS (Login & Register - Unified) --- */
.luxe-form-wrapper, .luxe-form {
    background: var(--bg-surface); padding: 40px; border: 1px solid var(--border-subtle); border-radius: 2px;
}

#loginform label, #luxe-login label, .luxe-form label {
    display: block; color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase;
    letter-spacing: 1px; margin-bottom: 8px; margin-top: 15px;
}

#loginform input[type="text"], #loginform input[type="password"],
#luxe-login input[type="text"], #luxe-login input[type="password"],
.luxe-form input[type="text"], .luxe-form input[type="email"], 
.luxe-form input[type="tel"], .luxe-form input[type="password"] {
    width: 100%; padding: 12px 15px; background: #0f0f10; border: 1px solid #333;
    color: #fff; font-size: 1rem; outline: none; transition: 0.3s; height: 50px;
}
#loginform input:focus, #luxe-login input:focus, .luxe-form input:focus { border-color: var(--accent-gold); }

#loginform input[type="submit"], #luxe-login input[type="submit"] {
    display: block; width: 100%; background: var(--accent-gold); color: #000; border: none;
    padding: 15px; font-weight: 700; text-transform: uppercase; cursor: pointer; margin-top: 20px; transition: 0.3s;
}
#loginform input[type="submit"]:hover, #luxe-login input[type="submit"]:hover { background: #fff; }

.checkbox-group, .login-remember { display: flex; align-items: center; gap: 10px; margin-top: 20px; }
input[type="checkbox"] { width: 20px; height: 20px; accent-color: var(--accent-gold); }

.luxe-error-box { background: rgba(255,0,0,0.1); border: 1px solid #ff4444; padding: 15px; margin-bottom: 20px; color: #ffcccc; }
.luxe-success-box { text-align: center; padding: 40px; background: var(--bg-surface); border: 1px solid var(--accent-gold); }

/* --- 13. 404 PAGE --- */
.error-404 { padding: 120px 20px; text-align: center; min-height: 60vh; display: flex; flex-direction: column; justify-content: center; align-items: center; }
.error-code { font-size: 6rem; line-height: 1; color: var(--accent-gold); font-weight: 700; }
.error-404 .page-title { font-size: 2rem; color: #fff; margin: 10px 0 20px; }

/* --- 14. MOBILE RESPONSIVENESS (Consolidated) --- */
.menu-toggle { display: none; background: transparent; border: none; cursor: pointer; padding: 10px; z-index: 2000; }
.menu-toggle .bar { display: block; width: 25px; height: 2px; background: #fff; margin: 5px 0; transition: 0.3s; }

@media (max-width: 768px) {
    /* Global Spacing Override */
    .latest-profiles, .gallery-section, .page-container, .archive-container, .profile-layout, .luxe-form-wrapper {
        padding-top: var(--spacing-section-mobile);
        padding-bottom: var(--spacing-section-mobile);
    }
    
    /* Header Layout */
    .header-container { flex-direction: column; gap: 15px; }
    .site-title { margin-bottom: 10px; }
    
    /* Mobile Menu Logic */
    .menu-toggle { display: block; }
    
    /* Force Menu Hidden initially */
    .main-navigation .menu-wrapper {
        display: none; 
        position: absolute; top: 100%; left: 0; right: 0;
        background: #0f0f10; border-bottom: 1px solid var(--border-subtle);
        padding: 20px 0; box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    /* Force Menu Shown when toggled */
    .main-navigation.toggled .menu-wrapper {
        display: flex !important; /* Override none */
        flex-direction: column;
        align-items: center;
        gap: 0;
        animation: slideDown 0.3s ease forwards;
    }
    
    .main-navigation ul { flex-direction: column; width: 100%; }
    .main-navigation li { margin: 0; padding: 15px 0; border-bottom: 1px solid #222; width: 100%; text-align: center; }
    .main-navigation li:last-child { border-bottom: none; }

    /* Login Icon Centering */
    .header-login-icon {
        display: table !important; /* Force centering trick */
        margin: 20px auto 0 !important;
        float: none !important;
        width: 40px; height: 40px; border: 1px solid #333; padding: 8px; border-radius: 50%;
    }

    /* Gallery Mobile */
    .gallery-grid, .gallery-grid-inline { grid-template-columns: 1fr; max-width: 500px; }
    
    /* Hamburger Animation */
    .main-navigation.toggled .bar:nth-child(1) { transform: rotate(-45deg) translate(-5px, 5px); background: var(--accent-gold); }
    .main-navigation.toggled .bar:nth-child(2) { opacity: 0; }
    .main-navigation.toggled .bar:nth-child(3) { transform: rotate(45deg) translate(-5px, -5px); background: var(--accent-gold); }
    
    .profile-layout { flex-direction: column; }
    h1 { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- MOBILE TYPOGRAPHY REFINEMENT --- */
@media (max-width: 768px) {
    /* Make the Hero Title smaller on mobile so it doesn't scream */
    .profile-title {
        font-size: 2.5rem !important; /* Was 3.5rem */
        line-height: 1.1;
    }

    /* Adjust the gold badge to be more subtle */
    .verification-badge {
        font-size: 0.65rem !important;
        padding: 4px 12px !important;
        margin-bottom: 10px !important;
    }

    /* Add breathing room inside the hero text area */
    .hero-content {
        padding-bottom: 40px !important; /* Lift it up slightly */
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* --- TAXONOMY CHIPS (Tags & Categories) --- */

/* Target links inside the Definition List Data (dd) */
.profile-stats dd a {
    display: inline-block;
    font-size: 0.75rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    
    /* The Chip Shape */
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 20px; /* Pill shape */
    padding: 4px 12px;
    margin-right: 6px;
    margin-bottom: 6px; /* Spacing for multi-line tags */
    
    transition: all 0.2s ease;
    text-decoration: none;
}

/* Hover Effect: Gold Border & White Text */
.profile-stats dd a:hover {
    border-color: var(--accent-gold);
    color: #fff;
    background-color: rgba(229, 193, 133, 0.05); /* Faint gold bg */
    transform: translateY(-1px);
}

/* Adjust the container to handle the chips wrapping */
.profile-stats .stat-row {
    align-items: center; /* Vertically center the label with the chips */
}

/* Make sure the label (dt) doesn't get squashed */
.profile-stats dt {
    flex-shrink: 0; 
    margin-top: 6px; /* Align with the first row of chips */
}

/* --- TAXONOMY CHIPS (Gold Pills) --- */

/* 1. Target the links inside the details list */
.profile-stats dd a {
    display: inline-block;
    font-size: 0.75rem;       /* Smaller, elegant text */
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #a1a1aa;           /* Muted Text */
    
    /* The Chip Shape */
    background-color: rgba(255, 255, 255, 0.05); /* Faint background */
    border: 1px solid #333;   /* Subtle border */
    border-radius: 50px;      /* Maximum rounding for pill shape */
    padding: 5px 14px;        /* Breathing room */
    margin-right: 6px;
    margin-bottom: 6px;       /* Spacing for multi-line tags */
    
    text-decoration: none;
    transition: all 0.3s ease;
}

/* 2. Hover Effect (Gold Glow) */
.profile-stats dd a:hover {
    border-color: var(--accent-gold);
    color: #000;
    background-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 193, 133, 0.2);
}

/* 3. Alignment Fix */
.profile-stats .stat-row {
    align-items: center; /* Vertically center the label with the chips */
}

.profile-stats dt {
    margin-top: 6px; /* Aligns the label 'Features' with the first row of chips */
}

/* --- SIDEBAR SPACING FIX --- */
.spaced-stats .stat-row {
    padding-bottom: 15px;       /* More space below the line */
    margin-bottom: 15px;        /* More space between items */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtler line */
}

.spaced-stats dt {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
}

.spaced-stats dd {
    font-weight: 600;
    color: #fff;
    text-align: right;          /* Clean right alignment */
}

/* --- STACKED ACTION BUTTONS --- */
.action-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;                  /* Space between buttons */
    margin-top: 30px;
}

.btn-stack {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px;
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 4px;         /* Slight rounding */
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 1px;
}

.btn-icon {
    margin-right: 10px;
    font-size: 1.1rem;
}

/* 1. WhatsApp Button (Brand Green) */
.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
    border: none;
}
.btn-whatsapp:hover {
    background-color: #1ebc57;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transform: translateY(-2px);
}

/* 2. SMS Button (Dark/Neutral) */
.btn-sms {
    background-color: #333;
    color: #fff;
    border: 1px solid #444;
}
.btn-sms:hover {
    background-color: #444;
    color: #fff;
    transform: translateY(-2px);
}

/* 3. Tease Cam Button (Red/Attention) */
.btn-tease {
    background: linear-gradient(45deg, #FF416C, #FF4B2B); /* Seductive gradient */
    color: #fff;
    border: none;
    position: relative;
    overflow: hidden;
}

/* Add a subtle shine animation to the Tease button */
.btn-tease::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: btnShine 3s infinite;
}

@keyframes btnShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.btn-tease:hover {
    box-shadow: 0 4px 20px rgba(255, 75, 43, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

/* --- AJAX FILTER BAR --- */
.luxe-filter-bar {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-group {
    flex: 1;
    min-width: 250px; /* Ensures inputs don't get too small */
    max-width: 350px;
}

.filter-input, 
.filter-select {
    width: 100%;
    padding: 12px 15px;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
    border-radius: 2px;
    appearance: none; /* Removes default browser arrows */
}

/* Custom Arrow for Selects */
.filter-select {
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23e5c185%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 15px top 50%;
    background-size: 12px auto;
}

/* Focus State: Gold Glow */
.filter-input:focus, 
.filter-select:focus {
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(229, 193, 133, 0.1);
}

/* Placeholder Color */
::placeholder {
    color: var(--text-muted);
    opacity: 0.7;
}

@media (max-width: 768px) {
    .luxe-filter-bar {
        flex-direction: column;
        gap: 15px;
    }
    .filter-group {
        max-width: 100%;
    }
}