/* Reset and Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #030712;
    color: #fff;
    line-height: 1.6;
}

.app {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(to bottom, #111827, #030712, #030712);
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 20%, rgba(236, 72, 153, 0.1), transparent 50%);
}

.hero-content {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 6rem 1.5rem;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(219, 39, 119, 0.1);
    border: 1px solid rgba(219, 39, 119, 0.2);
    border-radius: 9999px;
    color: #f472b6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.gradient-text {
    background: linear-gradient(to right, #f472b6, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9ca3af;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

/* Telegram Channel Button */
.telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 136, 204, 0.1);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 9999px;
    color: #0088cc;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    margin-top: 1.5rem;
    transition: all 0.2s ease;
}

.telegram-btn:hover {
    background: #0088cc;
    border-color: #0088cc;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 136, 204, 0.3);
}

.telegram-btn i {
    font-size: 1rem;
}

/* Filters Section */
.filters-section {
    background: rgba(17, 24, 39, 0.5);
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.filters-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.filters-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-label {
    display: block;
    font-size: 0.875rem;
    color: #9ca3af;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    height: 3rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    outline: none;
}

.dropdown-trigger:hover {
    background: #1f2937;
    border-color: #db2777;
}

.dropdown-trigger:focus {
    border-color: #db2777;
    box-shadow: 0 0 0 2px rgba(219, 39, 119, 0.2);
}

.dropdown-trigger i {
    font-size: 0.75rem;
    margin-left: 0.5rem;
    transition: transform 0.2s ease;
    opacity: 0.7;
}

.dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 250px;
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.75rem;
    padding: 1rem;
    z-index: 50;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    /* Animation - matching Radix UI feel */
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transform-origin: top;
    transition: opacity 0.15s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.15s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.15s;
}

.dropdown.open .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.dropdown-content.scrollable {
    max-height: 300px;
    overflow-y: auto;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

.checkbox-item input[type="checkbox"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 1rem;
    height: 1rem;
    border: 1px solid #4b5563;
    border-radius: 0.125rem;
    background: transparent;
    cursor: pointer;
    transition: all 0.1s ease;
    position: relative;
    flex-shrink: 0;
}

.checkbox-item input[type="checkbox"]:hover {
    border-color: #6b7280;
}

.checkbox-item input[type="checkbox"]:checked {
    background: #db2777;
    border-color: #db2777;
}

.checkbox-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-item input[type="checkbox"]:focus {
    outline: none;
}

.checkbox-item label {
    font-size: 0.875rem;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    transition: color 0.15s ease;
    user-select: none;
}

.checkbox-item label:hover {
    color: #db2777;
}

.reset-btn {
    padding: 0 1.5rem;
    height: 3rem;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid rgba(55, 65, 81, 0.5);
    border-radius: 0.75rem;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.15s ease;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.reset-btn:hover {
    background: #db2777;
    border-color: #db2777;
}

.reset-btn:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(219, 39, 119, 0.2);
}

/* Listings Section */
.listings-section {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Listing Card */
.listing-card {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: all 0.3s;
}

.listing-card:hover {
    border-color: #db2777;
    box-shadow: 0 25px 50px -12px rgba(219, 39, 119, 0.1);
    transform: translateY(-4px);
}

.card-image-container {
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.5s;
}

.listing-card:hover .card-image {
    transform: scale(1.1);
}

.card-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #111827, transparent, transparent);
    opacity: 0.6;
}

/* Blurred placeholder (teaser) shown until a real photo is uploaded */
.card-image-container.is-placeholder .card-image {
    filter: blur(3px) brightness(0.75) saturate(1.1);
    transform: scale(1.08);
}
.card-image-container.is-placeholder .card-image-overlay {
    opacity: 0.85;
}
.card-image-lock {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    text-align: center;
    pointer-events: none;
}
.card-image-lock i {
    font-size: 1.6rem;
    color: #f472b6;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
.card-image-lock span {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(17, 24, 39, 0.55);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(244, 114, 182, 0.45);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
}

.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(17, 24, 39, 0.7);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s;
    backdrop-filter: blur(4px);
}

.listing-card:hover .nav-btn {
    opacity: 1;
}

.nav-btn:hover {
    background: #db2777;
}

.nav-prev {
    left: 0.5rem;
}

.nav-next {
    right: 0.5rem;
}

.image-counter {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(4px);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    color: #fff;
    font-size: 0.875rem;
}

.card-badges-top {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    gap: 0.5rem;
}

.card-badges-bottom {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
}

.status-real {
    background: rgba(147, 51, 234, 0.9);
    color: #fff;
}

.status-ai {
    background: rgba(8, 145, 178, 0.9);
    color: #fff;
}

.badge-media {
    background: rgba(219, 39, 119, 0.9);
    color: #fff;
}

.badge-outline {
    background: rgba(31, 41, 55, 0.5);
    color: #d1d5db;
    border: 1px solid #374151;
    transition: all 0.2s;
}

.badge-outline:hover {
    background: #db2777;
    color: #fff;
    border-color: #db2777;
}

.badge-tag {
    background: rgba(219, 39, 119, 0.2);
    color: #f472b6;
    border: 1px solid rgba(219, 39, 119, 0.3);
    transition: all 0.2s;
}

.badge-tag:hover {
    background: #db2777;
    color: #fff;
}

.card-header {
    padding: 1rem 1.5rem 0.5rem;
}

.card-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.2s;
}

.listing-card:hover .card-title {
    color: #db2777;
}

.copy-btn {
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem;
    transition: all 0.2s;
}

.copy-btn:hover {
    color: #db2777;
    background: #1f2937;
}

.card-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #db2777;
    font-weight: 700;
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.card-content {
    padding: 0.5rem 1.5rem 1rem;
}

.card-description {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.5;
    white-space: pre-line;
    margin-bottom: 0.75rem;
}

.card-info {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: #9ca3af;
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
}

.card-info i {
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.card-delivery {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.card-delivery i {
    color: #db2777;
}

.card-section {
    margin-bottom: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.section-title i {
    color: #db2777;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.card-footer {
    padding: 0 1.5rem 1.5rem;
}

.order-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: #db2777;
    color: #fff;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 500;
    transition: background 0.2s;
}

.order-btn:hover {
    background: #be185d;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 6rem 0;
}

.no-results-icon {
    font-size: 5rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.no-results-subtitle {
    color: #6b7280;
}

/* FAQ Section */
.faq-section {
    background: #030712;
    padding: 6rem 0;
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-title-row {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.faq-icon {
    font-size: 2rem;
    color: #db2777;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
}

@media (min-width: 768px) {
    .faq-title {
        font-size: 3rem;
    }
}

.faq-subtitle {
    color: #9ca3af;
    font-size: 1.125rem;
    margin-top: 1rem;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background: #111827;
    border: 1px solid #1f2937;
    border-radius: 0.5rem;
    padding: 0 1.5rem;
    transition: border-color 0.2s;
}

.accordion-item:hover {
    border-color: #db2777;
}

.accordion-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.125rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
}

.accordion-trigger:hover {
    color: #db2777;
}

.accordion-icon {
    transition: transform 0.2s;
}

.accordion-item.open .accordion-icon {
    transform: rotate(180deg);
}

/* Accordion content styles moved to bottom for smooth animation */

/* Footer */
.site-footer {
    background: linear-gradient(to bottom, #030712, #111827);
    border-top: 1px solid rgba(31, 41, 55, 0.5);
}

.footer-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(to right, #f472b6, #db2777);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #9ca3af;
    line-height: 1.75;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: #1f2937;
    border-radius: 50%;
    color: #fff;
    transition: background 0.2s;
}

.social-link:hover {
    background: #db2777;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #db2777;
}

/* Toast */
#toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: #1f2937;
    border: 1px solid #374151;
    border-radius: 0.5rem;
    padding: 1rem 1.5rem;
    color: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    color: #9ca3af;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #111827;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Hidden class for filtering */
.listing-card.hidden {
    display: none;
}

/* ==================== */
/* 18+ Age Verification Modal */
/* ==================== */
.age-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none; /* Hidden by default, JS will show if needed */
    align-items: center;
    justify-content: center;
}

.age-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.age-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1f2937 0%, #111827 100%);
    border: 1px solid #374151;
    border-radius: 1.5rem;
    padding: 3rem;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: scale(0.9) translateY(-20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.age-modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(219, 39, 119, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-modal-icon i {
    font-size: 2.5rem;
    color: #db2777;
}

.age-modal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.age-modal-content p {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.age-warning {
    color: #f472b6 !important;
    font-size: 0.875rem;
    padding: 1rem;
    background: rgba(219, 39, 119, 0.1);
    border-radius: 0.5rem;
    margin: 1.5rem 0 !important;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}

.age-btn-confirm {
    background: linear-gradient(135deg, #db2777 0%, #be185d 100%);
    color: #fff;
}

.age-btn-confirm:hover {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(219, 39, 119, 0.4);
}

.age-btn-exit {
    background: #374151;
    color: #9ca3af;
}

.age-btn-exit:hover {
    background: #4b5563;
    color: #fff;
}

/* ==================== */
/* Gallery Modal */
/* ==================== */
.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.open {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.gallery-modal-content {
    position: relative;
    width: 90vw;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image {
    max-width: 85vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 0.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.gallery-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 3rem;
    height: 3rem;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid #374151;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    z-index: 10;
}

.gallery-close:hover {
    background: #db2777;
    border-color: #db2777;
    transform: scale(1.1);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3.5rem;
    height: 3.5rem;
    background: rgba(31, 41, 55, 0.8);
    border: 1px solid #374151;
    border-radius: 50%;
    color: #fff;
    font-size: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease;
    z-index: 10;
}

.gallery-nav:hover {
    background: #db2777;
    border-color: #db2777;
}

.gallery-prev {
    left: 1rem;
}

.gallery-next {
    right: 1rem;
}

.gallery-info {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(31, 41, 55, 0.9);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    border: 1px solid #374151;
}

.gallery-counter {
    color: #fff;
    font-weight: 500;
}

.gallery-model {
    color: #db2777;
    font-weight: 600;
}

/* Expand Button on Cards */
.expand-btn {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(17, 24, 39, 0.8);
    border: none;
    border-radius: 0.5rem;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.2s ease;
    z-index: 5;
    backdrop-filter: blur(4px);
}

.listing-card:hover .expand-btn {
    opacity: 1;
}

.expand-btn:hover {
    background: #db2777;
    transform: scale(1.1);
}

/* ==================== */
/* Smooth FAQ Animation */
/* ==================== */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
}

.accordion-item.open .accordion-content {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.accordion-content p {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.75;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease 0.1s, transform 0.2s ease 0.1s;
}

.accordion-item.open .accordion-content p {
    opacity: 1;
    transform: translateY(0);
}

/* ==================== */
/* Language switcher (FR / EN) */
/* ==================== */
.lang-switcher {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 60;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    background: rgba(17, 24, 39, 0.72);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(219, 39, 119, 0.3);
    border-radius: 9999px;
}

.lang-switcher button {
    background: none;
    border: none;
    padding: 0 0.15rem;
    color: #9ca3af;
    font: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    transition: color 0.15s ease;
}

.lang-switcher button:hover {
    color: #fff;
}

.lang-switcher button.active {
    color: #f472b6;
    font-weight: 700;
}

.lang-sep {
    color: rgba(156, 163, 175, 0.5);
}

@media (max-width: 640px) {
    .lang-switcher {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.3rem 0.6rem;
        font-size: 0.7rem;
    }
}
