﻿/* Modern Premium Design System */

:root {
    /* Color Palette - Street/Cyberpunk Blue */
    --bg-body: #050505;
    --bg-card: rgba(20, 20, 20, 0.8);
    --bg-card-hover: rgba(30, 30, 30, 0.9);

    --color-primary: #10ADE4;
    /* Blue #10ADE4 */
    --color-primary-dark: #0a8bb8;
    --color-accent: #ffffff;
    /* White accent */

    --text-white: #ffffff;
    --text-heading: #ffffff;
    --text-body: #e0e0e0;
    --text-muted: #a0a0a0;

    --border-subtle: rgba(255, 255, 255, 0.1);
    --border-accent: rgba(16, 173, 228, 0.5);

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --font-display: 'Rajdhani', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CRITICAL: html and body MUST be transparent to show the fixed site-background */
html {
    background-color: transparent !important;
}

body {
    background-color: transparent !important;
    /* Transparent to show fixed bg */
    font-family: var(--font-sans);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Dedicated Fixed Background */
.site-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-desktop-new.jpg');
    background-size: cover;
    background-position: center 40px;
    background-repeat: no-repeat;
}

/* Video Background */
.site-background-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
}

.site-background-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-background-video .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

/* Pure Black Page Utility - Use sparingly */
/* NOTE: This class is now deprecated - use theme settings for backgrounds */
.bg-black-solid {
    background-color: #000000 !important;
    background-image: none !important;
}

/* Main content should be transparent to show site-background */
main {
    background: transparent;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
.logo-text {
    font-family: var(--font-heading);
}

.eyebrow,
.stat span,
.trust-item {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Text Gradient Effect (Shared) */
.text-gradient,
.typewriter-text {
    background: linear-gradient(135deg, var(--text-white) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: none;
    /* Fix: Prevent parent shadow from showing through transparent text */
}

/* Typewriter Specifics */
.typewriter-text {
    /* Removed solid blue override, syncing with admin gradient */
    text-shadow: none;
    /* Gradient doesn't play well with shadow usually, or keep subtle if needed but admin has none */
}

.cursor {
    color: var(--text-white);
    /* Keep cursor white or match primary */
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 5%;
}

.text-primary {
    color: var(--color-primary);
}

/* Button Resets & Base Styles */
.btn,
.btn-primary,
.btn-outline,
.btn-text {
    /* added variants to ensure coverage */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8em 2em;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    border-radius: 50px;
    /* Pillow shape for modern mobile feel */
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 173, 228, 0.6);
}

/* Header specific 'Get Started' button transparency effect */
.header-actions .btn-primary:hover {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    box-shadow: none;
    transform: none;
}

/* Circular Icon Button */
.btn-icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    /* Increased size */
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    /* Subtle background */
    color: var(--text-white);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
}

.btn-icon-circle:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(16, 173, 228, 0.5);
}

.btn-icon-circle svg {
    width: 20px;
    height: 20px;
}

/* Hero 'Browse Inventory' Glow & Transparency Effect */
.btn-glow {
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    /* Prepare for border transition */
}

.btn-glow:hover {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
    /* Keep glow but transparent */
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-white);
    color: var(--text-white);
    backdrop-filter: blur(4px);
    /* Glassy feel */
}

.btn-outline:hover {
    background: var(--color-primary);
    /* Fill with pink on hover */
    border-color: var(--color-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
}

.btn-text {
    font-weight: 500;
    color: var(--text-body);
    padding: 0.5rem 1rem;
}

.btn-text:hover {
    color: var(--text-white);
}

/* Header */
.site-header {
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    position: fixed;
    /* Changed from sticky to fixed for absolute persistence */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 0.5rem 0;
    /* Slightly increased padding for better breathing room */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 45px;
    /* Balanced Size */
    height: 45px;
    border-radius: 50%;
    object-fit: contain;
    /* Ensure it fits if it's not square */
}

.logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: 0.05em;
    font-size: 1.4rem;
    /* Balanced Text */
    line-height: 1;
    /* Fix vertical alignment */
}

/* Fix Header Vertical Alignment */
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    /* Ensure full height usage */
}

.site-header {
    background-color: rgba(10, 10, 10, 0.95);
    /* Darker for better contrast */
    padding: 1rem 0;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    /* Increased gap */
    align-items: center;
    /* Ensure vertical center */
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text-body);
    display: inline-flex;
    align-items: center;
}



.nav-link:hover,
.nav-link.active {
    color: var(--text-white);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- Dropdown Menu --- */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    padding: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    min-width: 200px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    z-index: 1000;
    flex-direction: column;
}

.dropdown-content a {
    color: var(--text-heading);
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.dropdown-content a:hover {
    background-color: var(--color-primary);
    color: var(--text-white);
}

.dropdown:hover .dropdown-content {
    display: flex;
}

/* Mobile Dropdown */
.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
}

.mobile-dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 1.5rem;
    margin-top: 1rem;
    border-left: 1px solid var(--border-subtle);
}

.mobile-dropdown-content a {
    color: var(--text-muted);
    font-size: 1.2rem;
    padding: 0.5rem 0;
}

/* Show mobile dropdown on click (handled via JS needed if not hover, but CSS focus/active can work poorly. JS added in next step is best, but for now simplest hover for desktop) */
.mobile-dropdown:hover .mobile-dropdown-content {
    display: flex;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    /* Standardized Top Padding for Fixed Header */
    overflow: hidden;
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.eyebrow {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    /* Bigger visibility */
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 7vw, 6rem);
    /* Massive impact */
    line-height: 1;
    color: var(--text-white);
    margin-bottom: 2rem;
    margin-bottom: 2rem;
    /* Clean look: No shadow on parent to prevent muddy gradients */
    /* Deep shadow for pop */
}

/* Typewriter Cursor */
.cursor {
    display: inline-block;
    color: var(--color-primary);
    animation: blink 1s step-end infinite;
    font-weight: 300;
    margin-left: 2px;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-heading);
    /* Use white for better contrast than grey */
    max-width: 700px;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    font-weight: 500;
}

.hero-btns {
    display: flex;
    justify-content: center;
    /* Explicitly center */
    align-items: center;
    gap: 1.5rem;
    /* Larger gap */
    flex-wrap: wrap;
    /* Allow wrapping on tiny screens */
    margin-bottom: 3rem;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-btns {
        flex-direction: column;
        /* Stack vertically on mobile */
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
        /* Ensure some breathing room */
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
        max-width: 400px;
        /* Increased max-width/removed constraints for better fit */
        margin: 0 auto;
    }
}

.trust-row {
    display: flex;
    gap: 2rem;
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-heading);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

/* Hero Visual (Hidden - Using Full Background) */
.hero-visual {
    display: none;
}

.image-3d-wrapper {
    display: none;
}

.hero-image-3d {
    width: 100%;
    border-radius: 0;
    /* No corners */
    box-shadow: none;
    /* No shadow */
    border: none;
    /* No border */

    /* Fade out the edges to blend with background */
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%),
        linear-gradient(to bottom, black 80%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;

    opacity: 0.9;
}

.glow-effect {
    display: none;
    /* Remove glow for cleaner look */
}



/* --- Search Interaction Styles --- */
.search-toggle-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--border-subtle);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0.5rem;
}

.search-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(16, 173, 228, 0.2);
}

.search-toggle-btn i {
    width: 20px;
    height: 20px;
}

/* Search Popup Overlay */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    /* Backdrop dim */
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: flex-start;
    /* Align to top */
    padding-top: 100px;
    /* Offset from header */
}

.search-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-popup-overlay .container {
    width: 100%;
    max-width: 800px;
}

.search-popup-form {
    position: relative;
    width: 100%;
    background: rgba(20, 20, 20, 0.95);
    border: 1px solid var(--border-accent);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-20px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-popup-overlay.active .search-popup-form {
    transform: translateY(0);
}

.search-popup-form input {
    width: 100%;
    background: transparent;
    border: none;
    padding: 0.5rem 3rem 0.5rem 3rem;
    font-size: 1.25rem;
    color: var(--text-white);
    outline: none;
    font-family: var(--font-body);
}

.search-popup-form .search-icon {
    position: absolute;
    left: 1.5rem;
    color: var(--color-primary);
}

.close-search-btn {
    position: absolute;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    transition: color 0.3s;
}

.close-search-btn:hover {
    color: var(--color-danger);
}

/* Mobile Search Specifics */
.mobile-search-form {
    width: 100%;
}

.mobile-search-form .search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-subtle);
    border-radius: 50px;
    padding: 0.75rem 1.25rem;
    width: 100%;
}

.mobile-search-form .search-input-wrapper input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    width: 100%;
    font-size: 1rem;
}

.mobile-search-form .search-input-wrapper svg {
    margin-right: 0.75rem;
    color: var(--text-muted);
}

/* Mobile Search Submit Button */
.mobile-search-form .search-submit-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    min-width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 0.5rem;
}

.mobile-search-form .search-submit-btn:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
}

.mobile-search-form .search-submit-btn svg {
    width: 18px;
    height: 18px;
    color: #fff;
    margin: 0;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block !important;
        margin-left: 0.5rem;
    }

    .desktop-only {
        display: none !important;
    }

    .header-actions {
        gap: 0.5rem;
        margin-left: auto;
        /* Push to right on mobile/tablet */
    }

    /* Ensure search toggle is VISIBLE on mobile */
    .search-toggle-btn {
        display: flex;
        margin-right: 0;
        /* Remove margin as it's the only item */
    }

    /* Adjust popup padding for mobile */
    .search-popup-overlay {
        padding-top: 80px;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.site-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--border-subtle);
    margin-top: 0;
    /* REMOVED extra margin for seamless flows */
    background-color: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand h4 {
    color: var(--text-white);
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {

    /* 1. Market Hero Swiper */
    .market-hero {
        position: relative;
        z-index: 10;
        /* Above background but below nav */
    }

    .market-hero-swiper {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
        border: 1px solid var(--border-subtle);
    }

    .market-slide {
        width: 100%;
    }

    .market-slide-inner {
        width: 100%;
        height: 500px;
        /* Desktop Height */
        position: relative;
        border-radius: 24px;
        /* Ensure inner has radius */
    }

    /* Gradient Overlay for Text Readability */
    .market-slide-inner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right,
                rgba(0, 0, 0, 0.9) 0%,
                rgba(0, 0, 0, 0.6) 40%,
                transparent 100%);
        z-index: 1;
    }

    .market-slide-content {
        position: absolute;
        top: 50%;
        left: 4rem;
        transform: translateY(-50%);
        z-index: 2;
        max-width: 500px;
    }

    .market-slide-content h2 {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 1rem;
        color: #fff;
        text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    }

    .badge-featured {
        display: inline-block;
        background: linear-gradient(90deg, #FF0080, #7928CA);
        color: #fff;
        padding: 0.25rem 0.75rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 700;
        margin-bottom: 1rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
    }

    .market-slide-content .price {
        font-size: 2.5rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        font-family: var(--font-display);
    }

    /* Mobile Hero Adjustments */
    @media (max-width: 768px) {
        .market-slide-inner {
            height: 350px;
            /* Reduced Mobile Height */
            background-position: center top !important;
            /* Focus on top part of image */
        }

        .market-slide-inner::before {
            background: linear-gradient(to top,
                    rgba(0, 0, 0, 0.95) 10%,
                    rgba(0, 0, 0, 0.4) 60%,
                    transparent 100%);
        }

        .market-slide-content {
            left: 1.5rem;
            bottom: 2rem;
            top: auto;
            transform: none;
            width: calc(100% - 3rem);
        }

        .market-slide-content h2 {
            font-size: 1.8rem;
        }

        .market-slide-content .price {
            font-size: 1.8rem;
        }
    }


    /* 2. Sticky Market Filters */
    .sticky-filters {
        position: sticky;
        top: 70px;
        /* Adjust based on header height */
        z-index: 900;
        background: rgba(10, 10, 10, 0.85);
        /* Proper glass background */
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border-subtle);
        padding: 1rem 0;
        transition: all 0.3s ease;
    }

    .filter-scroll-container {
        display: flex;
        gap: 0.75rem;
        overflow-x: auto;
        padding-bottom: 0.5rem;
        scrollbar-width: none;
        /* Hide Scrollbar Firefox */
        -ms-overflow-style: none;
        /* Hide Scrollbar IE */
        margin-bottom: 1rem;
    }

    .filter-scroll-container::-webkit-scrollbar {
        display: none;
        /* Hide Scrollbar Chrome */
    }

    /* Premium Filter Button */
    .filter-btn {
        background: rgba(255, 255, 255, 0.05);
        /* Very subtle fill */
        border: 1px solid var(--border-subtle);
        color: var(--text-muted);
        padding: 0.5rem 1.25rem;
        border-radius: 50px;
        font-size: 0.9rem;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        transition: all 0.3s ease;
    }

    .filter-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        transform: translateY(-1px);
    }

    .filter-btn.active {
        background: var(--color-primary);
        border-color: var(--color-primary);
        color: #fff;
        box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
    }

    /* Ranges Area */
    .filter-ranges-grid {
        border-top: 1px solid var(--border-subtle);
        padding-top: 1.5rem;
        /* Hidden by default on mobile maybe? No, requested to be there */
    }

    /* Custom Range Slider Styling */
    .range-wrapper {
        width: 100%;
    }

    .price-slider {
        -webkit-appearance: none;
        appearance: none;
        width: 100%;
        height: 6px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 5px;
        outline: none;
        opacity: 0.9;
        transition: opacity .2s;
    }

    .price-slider:hover {
        opacity: 1;
    }

    .price-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 20px;
        height: 20px;
        background: var(--color-primary);
        /* Pink Thumb */
        border: 2px solid #fff;
        cursor: pointer;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(16, 173, 228, 0.6);
        margin-top: -7px;
        /* Align thumb with track */
    }

    .price-slider::-moz-range-thumb {
        width: 20px;
        height: 20px;
        background: var(--color-primary);
        border: 2px solid #fff;
        cursor: pointer;
        border-radius: 50%;
        box-shadow: 0 0 10px rgba(16, 173, 228, 0.6);
    }

    /* Swiper Pagination Customization */
    .market-hero .swiper-pagination-bullet {
        background: #fff;
        opacity: 0.5;
        width: 8px;
        height: 8px;
    }

    .market-hero .swiper-pagination-bullet-active {
        background: var(--color-primary);
        opacity: 1;
        width: 20px;
        border-radius: 5px;
        /* Pill shape */
    }

    /* Ensure header doesn't overlap weirdly */
    @media (min-width: 1024px) {
        .filter-ranges-grid {
            justify-content: center;
            /* Center ranges on large screens */
        }
    }

    color: var(--text-body);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--color-primary);
}

/* --- Social Media Styling (Shared & Mobile) --- */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    align-items: center;
}

.social-icon-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-white);
    transition: all 0.3s ease;
    border: 1px solid var(--border-subtle);
}

.social-icon-brand svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Brand Colors on Hover */
.social-icon-brand:hover {
    transform: translateY(-3px);
}

.social-icon-brand.youtube:hover {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
}

.social-icon-brand.instagram:hover {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.1);
    border-color: #E1306C;
}

.social-icon-brand.facebook:hover {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
}

.social-icon-brand.tiktok:hover {
    color: #00f2ea;
    background: rgba(0, 242, 234, 0.1);
    border-color: #FE2C55;
    text-shadow: 2px 2px 0px #FE2C55;
}

.social-icon-brand.whatsapp:hover {
    color: #25D366;
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
}

/* --- RESPONSIVE OPTIMIZATION --- */

/* Tablet (Portrait & Small Laptop) */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
        /* Keep split layout but tighten */
    }

    .hero-title {
        font-size: 3rem;
    }

    .image-3d-wrapper {
        width: 100%;
        /* Fit container */
        max-width: 600px;
        transform: rotateY(-10deg) scale(1);
    }
}

/* Mobile (Phones) */
@media (max-width: 1024px) {
    .site-background {
        background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/bg-mobile-new.jpg');
        background-position: center center;
        background-size: cover;
        /* Fixed + Cover = Perfect */
    }

    /* Clear body bg if inherited */
    body {
        background: transparent;
    }

    .site-header {
        padding: 1rem 0;
    }

    .main-nav {
        display: none;
    }

    .header-actions {
        /* Ensure actions are visible on mobile now */
        display: flex;
        gap: 0.5rem;
        margin-left: auto;
        /* Push to the right */
        margin-right: 1rem;
        /* Space between phone and menu */
        align-items: center;
    }

    /* Hide standard buttons on mobile if needed, but KEEP phone button */
    .header-actions .btn-primary {
        display: none;
    }

    .header-actions .btn-icon-circle {
        display: flex;
        /* Explicitly show circle button */
    }

    .header-container {
        justify-content: flex-start;
        /* Align start to allow push */
    }

    /* Mobile Social Links Layout */
    .mobile-social-links {
        display: flex;
        justify-content: center;
        gap: 1.5rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid var(--border-subtle);
    }

    .mobile-social-links .social-icon-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        color: var(--text-white);
        transition: all 0.3s ease;
    }

    .mobile-social-links .social-icon-brand svg {
        width: 20px;
        height: 20px;
    }

    /* Brand Colors on Hover (Shared) */
    .social-icon-brand:hover {
        transform: translateY(-3px);
    }

    .social-icon-brand.youtube:hover {
        color: #FF0000;
        background: rgba(255, 0, 0, 0.1);
    }

    .social-icon-brand.instagram:hover {
        color: #E1306C;
        background: rgba(225, 48, 108, 0.1);
    }

    .social-icon-brand.facebook:hover {
        color: #1877F2;
        background: rgba(24, 119, 242, 0.1);
    }

    .social-icon-brand.tiktok:hover {
        color: #00f2ea;
        background: rgba(0, 242, 234, 0.1);
        /* TikTok Cyan/Pink mix - simplified to cyan highlight or white */
        color: #fff;
        text-shadow: 2px 2px 0px #FE2C55, -2px -2px 0px #25F4EE;
    }

    .social-icon-brand.whatsapp:hover {
        color: #25D366;
        background: rgba(37, 211, 102, 0.1);
    }

    .hero {
        padding: 6rem 0 4rem;
        /* More top padding for header space */
        min-height: 80vh;
        /* Full screen feel */
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    .hero-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        /* Tighter gap on mobile */
        padding-top: 6rem;
        /* Account for fixed header */
    }

    .hero-text {
        position: relative;
        z-index: 2;
        /* Text on top */
        text-align: center;
        padding: 0 1rem;

    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
    }

    /* Mobile Hero Visual - Vertical Image */
    .hero-visual {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        opacity: 1;
        pointer-events: auto;
        margin-top: 1rem;
        order: 2;
        /* Image below text on mobile */
    }

    .image-3d-wrapper {
        width: 100%;
        max-width: 320px;
        /* Limit width of vertical image */
        margin: 0 auto;
        transform: none;
        /* No tilt on mobile */
    }

    .hero-image-3d {
        /* Remove mask for clear image */
        mask-image: none;
        -webkit-mask-image: none;
        border-radius: 20px;
        /* Add subtle corners */
        box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-brand h4 {
        margin-top: 0;
    }

    .footer-brand .social-links {
        justify-content: center;
        margin-top: 1.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    color: var(--text-white);
    cursor: pointer;
}

.mobile-menu-btn svg {
    width: 28px;
    height: 28px;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    /* Slide out by default */
    transition: transform 0.3s ease-in-out;
}

.mobile-nav-overlay.active {
    transform: translateX(0);
    /* Slide in */
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 1rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.mobile-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
    text-transform: uppercase;
}

.mobile-link:hover {
    color: var(--color-primary);
}

.mobile-nav-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
        /* Show hamburger on mobile */
    }

    .header-container {
        justify-content: flex-start;
        /* Align items start */
    }
}

/* --- Carousel Section --- */
.section-carousel {
    padding: 0 0 1rem;
    padding: 0 0 2rem;
    /* Added bottom padding */
    margin-top: 0;
    /* Reset negative margin which was causing layout issues */
    position: relative;
    overflow: hidden;
    background: transparent;
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Swiper Customization - HERO MODE (Scoped to Marketplace) */
#marketplace-carousel .swiper {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

#marketplace-carousel .swiper-slide {
    width: 60%;
    /* Desktop default */
    height: auto;
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Inactive state: Blurred & Darker (Background effect) */
    opacity: 0.6;
    transform: scale(0.85);
    filter: blur(6px) brightness(0.6);
    /* Pronounced blur */
}

#marketplace-carousel .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    z-index: 10;
    filter: none;
    /* Crystal clear */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    /* Deep shadow */
}

/* Force Aspect Ratio on Links */
.carousel-card-link {
    display: block;
    width: 100%;
    aspect-ratio: 2.5 / 1;
    /* Wide banner style */
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-subtle);
    background: #1a1a1a;
    /* Placeholder bg */
}

.carousel-card-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

#marketplace-carousel .swiper-slide-active .carousel-card-link {
    border-color: var(--color-primary);
    /* Highlight active */
    box-shadow: 0 0 20px rgba(16, 173, 228, 0.2);
}

/* Navigation Buttons - THEME MATCH (Blue) */
.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: var(--color-primary);
    /* Match UI Blue */
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
    transition: all 0.3s ease;
    z-index: 20;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.4rem !important;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--color-primary-dark);
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(16, 173, 228, 0.6);
}

/* Pagination */
.swiper-pagination-bullet {
    background: var(--text-muted) !important;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: var(--color-primary) !important;
    /* Match UI Pink */
    width: 24px;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
    #marketplace-carousel .swiper-slide {
        width: 70%;
    }

    /* Hide arrows on Tablet & Mobile (Touch Devices) */
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    /* Reduce spacing on Tablet/Mobile */
    .hero {
        padding-bottom: 2rem;
        /* Was larger */
    }

    .section-carousel {
        padding-top: 0;
        /* Tightest spacing */
        padding-bottom: 2rem;
    }

    .section-header {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    #marketplace-carousel .swiper-slide {
        width: 80%;
        /* Optimize width for mobile */
    }

    .carousel-card-link {
        aspect-ratio: 16 / 9;
    }

    /* Aggressive spacing reduction for Mobile */
    .hero {
        padding-bottom: 1rem;
        min-height: auto;
        /* Allow it to shrink if needed */
    }

    .section-carousel {
        padding-top: 0;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1rem !important;
    }
}

/* --- Features Section --- */
.section-features {
    padding: 1rem 0 4rem;
    /* Reduced top padding from 2rem to 1rem */
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .features-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .features-grid .feature-card {
        width: calc(50% - 0.5rem);
        /* 2 per row with gap consideration */
        flex-grow: 1;
        min-width: 140px;
        /* Prevent crushing */
    }

    .hide-on-mobile {
        display: none !important;
    }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(16, 173, 228, 0.2);
    background: var(--bg-card-hover);
}

.feature-icon {
    margin-bottom: 1rem;
    color: var(--color-primary);
    /* Explicitly Blue */
    display: inline-flex;
    padding: 12px;
    background: rgba(16, 173, 228, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--color-primary);
    color: var(--text-white);
    box-shadow: 0 0 20px rgba(16, 173, 228, 0.4);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 0.05em;
    margin: 0;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {

    /* Show only top 3 features on mobile */
    /* Show all features on mobile in 2x2 grid */

}

/* --- Action Section --- */
.section-actions {
    padding: 2rem 0 6rem;
    position: relative;
    z-index: 10;
}

.actions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.action-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    /* overflow: hidden; Removed to allow button glow to visually escape if needed */
    transition: all 0.3s ease;
}

/* Action Buttons Styling */
/* Buy Button: Mimic Hero 'Browse Inventory' (Solid -> Transparent + Glow) */
.action-buy .action-btn {
    /* Base is .btn-primary */
    border: 2px solid transparent;
    /* Prepare for hover border */
}

.action-buy .action-btn:hover {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 20px var(--color-primary), inset 0 0 10px rgba(16, 173, 228, 0.3);
    transform: translateY(-3px);
}

/* Sell Button: Mimic Hero 'Sell ID' (Outline -> Solid) */
/* It already has .btn-outline class, so standard behavior applies. 
   We just ensure no conflicting hover overrides it. */
.action-sell .action-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
    transform: translateY(-3px);
}

/* Specific Apply Filters Button Override */
#applyFiltersBtn:hover {
    background: transparent !important;
    border-color: var(--color-primary) !important;
    color: var(--color-primary) !important;
    box-shadow: 0 0 20px rgba(16, 173, 228, 0.4);
    transform: translateY(-2px);
}

.action-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.action-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--color-primary);
}

.action-icon svg {
    width: 40px;
    height: 40px;
}

.action-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-family: var(--font-display);
}

.action-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.action-btn {
    width: 100%;
    max-width: 250px;
}




/* --- WhatsApp Section (Single Container) --- */
.section-whatsapp {
    padding: 6rem 0;
}

.whatsapp-single-container {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    max-width: 800px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.whatsapp-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-subtle);
}

.whatsapp-item:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.wa-icon-wrapper img {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.wa-details {
    flex: 1;
    text-align: left;
}

.wa-details h3 {
    font-size: 1.25rem;
    color: var(--text-heading);
    margin-bottom: 0.25rem;
}

.wa-details p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.btn-whatsapp-sm {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-whatsapp-sm:hover {
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 15px rgba(16, 173, 228, 0.4);
}

/* Mobile & Tablet Adjustments for WhatsApp List */
@media (max-width: 900px) {
    .whatsapp-single-container {
        padding: 2rem;
        margin: 2rem auto 0;
        width: 90%;
    }

    .whatsapp-item {
        gap: 1rem;
        padding-bottom: 2rem;
        flex-direction: column;
        /* Stack Everything */
        align-items: center;
        /* Center horizontally */
        text-align: center;
        /* Center text */
    }

    .wa-details {
        text-align: center;
        width: 100%;
    }

    .wa-icon-wrapper svg {
        width: 48px;
        /* Slightly larger for center stage */
        height: 48px;
        min-width: 48px;
    }

    .wa-details {
        width: 100%;
        /* Full width text block */
    }

    .wa-details h3 {
        font-size: 1.2rem;
        margin-bottom: 0.25rem;
    }

    .wa-details p {
        font-size: 0.9rem;
    }

    /* Stacked Button */
    .btn-whatsapp-sm {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        font-size: 1rem;
        margin-top: 0.5rem;
        flex-basis: 100%;
    }
}

/* Mobile Features Grid (2x2) */
@media (max-width: 500px) {
    .features-grid {
        grid-template-columns: 1fr 1fr !important;
        /* Force 2 columns */
        gap: 0.75rem;
        /* Smaller gap for mobile */
    }

    .feature-card {
        padding: 1rem 0.5rem;
        /* Compact padding */
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-desc {
        font-size: 0.8rem;
    }
}


/* --- Customer Reviews Section --- */
.section-reviews {
    padding: 2rem 0 5rem;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.reviews-swiper {
    width: 100%;
    padding: 1rem 1rem 3.5rem;
    /* Padding for shadow/hover space + pagination */
}

/* Card Styling */
.review-card {
    background: rgba(20, 20, 20, 0.6);
    /* Slightly more transparent/flat */
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Removed transition and hover effects */
}

/* Removed check for: .review-card:hover */


/* Header: Avatar, Name, Badge */
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary), #0a8bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 0 10px rgba(16, 173, 228, 0.3);
    flex-shrink: 0;
}

.reviewer-avatar-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 10px rgba(16, 173, 228, 0.3);
}

.reviewer-info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.reviewer-name {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

/* --- Contact Buttons (WhatsApp) --- */
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid transparent;
}

.btn-whatsapp {
    background-color: #25D366;
    color: #ffffff;
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1ebc57;
    border-color: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Marketplace Module --- */

/* Marketplace Hero Slider */
.market-hero {
    padding-bottom: 2rem;
}

.market-slide-inner {
    height: 60vh;
    min-height: 400px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.market-slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, #000 0%, transparent 60%);
}

.market-slide-content {
    position: relative;
    z-index: 2;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    /* Center Hero Text */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.badge-featured {
    background: var(--color-primary);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
}

/* Sticky Filter Bar */
.sticky-filters {
    position: sticky;
    position: -webkit-sticky;
    top: 72px;
    /* Adjusted to match header height + gap */
    z-index: 900;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    /* Added shadow for separation */
}

@media (max-width: 768px) {
    .sticky-filters {
        top: 60px;
        padding: 1rem 0;
    }
}

.filter-scroll-container {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    /* Firefox */

    /* PC: Center Alignment */
    justify-content: center;
}

@media (max-width: 768px) {
    .filter-scroll-container {
        justify-content: flex-start;
        /* Mobile: Scroll from left */
    }
}

.filter-scroll-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.filter-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(16, 173, 228, 0.4);
}

/* Price Range Slider */
.filter-ranges-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    /* Limit width for centered stack */
    margin: 1.5rem auto 0;
    width: 100%;
    /* Ensure container takes space */
}

.range-wrapper {
    width: 100%;
    /* Force full width to ensure stacking */
}

.range-slider-container {
    position: relative;
    padding: 1rem 0;
}

.price-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    /* Slightly smaller for compactness */
    height: 20px;
    border-radius: 50%;
    background: var(--color-primary);
    cursor: pointer;
    box-shadow: 0 0 10px rgba(16, 173, 228, 0.5);
    transition: transform 0.2s;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.price-bubble {
    position: absolute;
    top: -30px;
    right: 0;
    background: var(--color-primary);
    color: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    pointer-events: none;
    opacity: 0;
    /* Hidden by default or until interaction */
    transition: opacity 0.3s;
}

.range-slider-container:hover .price-bubble {
    opacity: 1;
}

/* Market Grid Cards */
.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    /* slightly smaller min width */
    gap: 1.5rem;
    /* Tighter gap */
}

.market-card {
    background: #0a0a0a;
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    /* Tighter radius */
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.market-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 173, 228, 0.15);
    border-color: var(--color-primary);
}

.card-image-wrapper {
    position: relative;
    aspect-ratio: 16/9;
    /* 16:9 Image Ratio */
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.market-card:hover .card-img {
    transform: scale(1.05);
}

.discount-bubble {
    position: absolute;
    top: 10px;
    left: 10px;
    /* Moved to Left */
    background: #FF0000;
    color: #fff;
    width: 36px;
    /* Smaller bubble */
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.7rem;
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
    z-index: 2;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.market-card:hover .card-overlay {
    opacity: 1;
}

.btn-view {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    color: #fff;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
}

.card-details {
    padding: 1.5rem;
}

.card-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 700;
}

.badge-cat {
    color: var(--color-primary);
}

.level-tag {
    color: var(--text-muted);
}

.card-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.original-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.current-price {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 700;
}

.btn-buy-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary);
    border: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-buy-icon:hover {
    background: #fff;
    color: var(--color-primary);
}

/* --- Product Details Page --- */
.product-layout-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

.main-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 1rem;
    border: 1px solid var(--border-subtle);
}

.product-main-img {
    width: 100%;
    display: block;
}

.discount-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #FF0000;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 800;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.thumb-item {
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.thumb-item.active,
.thumb-item:hover {
    opacity: 1;
    border-color: var(--color-primary);
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Column */
.product-info-col {
    position: sticky;
    top: 100px;
}

.badge-cat-large {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.product-title-large {
    font-size: 2.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.product-price-large {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-subtle);
}

.product-price-large .curr-price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.product-price-large .orig-price {
    font-size: 1.5rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
}

.stat-box .label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.stat-box .value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

.product-desc-box {
    margin-bottom: 2rem;
}

.product-desc-box h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.product-desc-box p {
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.75rem;
    color: var(--text-white);
}

.features-list li i {
    color: var(--color-primary);
    width: 18px;
}

.btn-whatsapp-large {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    background: #25D366;
    color: #fff;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-whatsapp-large:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .product-layout-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .market-slide-inner {
        height: 50vh;
    }

    .product-title-large {
        font-size: 2rem;
    }
}

.verified-badge svg {
    width: 20px;
    height: 20px;
    filter: drop-shadow(0 0 5px rgba(16, 173, 228, 0.5));
}

/* Star Rating - Yellow */
.review-rating {
    display: flex;
    gap: 2px;
    margin-bottom: 1rem;
    color: #FFD700;
    /* Yellow */
}

.review-rating svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

/* Review Text */
.review-text {
    font-size: 0.95rem;
    color: var(--text-body);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

/* Swiper Pagination */
.reviews-pagination .swiper-pagination-bullet {
    background: var(--text-muted);
    opacity: 0.5;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 24px;
    /* Elongated pill for active state */
    border-radius: 4px;
    box-shadow: 0 0 10px var(--color-primary);
}



@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Global Fixes --- */
html,
body {
    background-color: #000000 !important;
    /* Prevent white gaps on all pages */
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

footer {
    background-color: #000000 !important;
    /* Match page bg exactly */
    margin-top: 0 !important;
    /* Remove ghost area */
    border-top: none !important;
}

/* --- Contact Page Specifics (Restored) --- */
.owners-grid-parallel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.owner-card-parallel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.owner-details-parallel {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.contact-methods-parallel {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.btn-phone-glass {
    width: 100%;
    max-width: 250px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 50px;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-phone-jack {
    background: rgba(16, 173, 228, 0.1);
    border: 1px solid rgba(16, 173, 228, 0.4);
    color: #fff;
}

.btn-phone-jack:hover {
    background: rgba(16, 173, 228, 0.2);
    box-shadow: 0 0 15px rgba(16, 173, 228, 0.4);
}

.btn-phone-shafu {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.4);
    color: #fff;
}

.btn-phone-shafu:hover {
    background: rgba(37, 211, 102, 0.2);
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
}

/* Official Departments / Premium Cards */
.dept-grid-centered {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.dept-card-premium {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s ease;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
}

.dept-card-premium:hover {
    transform: translateY(-8px);
    border-color: rgba(16, 173, 228, 0.5);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.dept-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.dept-content h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.dept-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.dept-email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.dept-email-link:hover {
    background: #fff;
    color: #000;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
    .owners-grid-parallel {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .dept-grid-centered {
        flex-direction: column;
        align-items: center;
    }

    .dept-card-premium {
        width: 100%;
        max-width: 400px;
    }
}

/* Stack Actions on Mobile */
/* Stack Actions on Mobile (Updated to Tablet) */
@media (max-width: 1024px) {

    /* Tablet & Mobile Shared Base */
    .actions-grid {
        grid-template-columns: 1fr !important;
        /* Force Stacking */
        gap: 2rem;
    }

    .action-card {
        padding: 3rem 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        background: rgba(20, 20, 20, 0.9);
        border: 1px solid var(--border-subtle);
        border-radius: var(--radius-lg);
        min-height: auto;
        /* Let content dictate height */
    }

    .action-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .action-btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer Tablet/Mobile */
    .footer-content {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .footer-brand,
    .footer-links,
    .footer-social {
        align-items: center;
        width: 100%;
    }
}

/* Mobile Specific Polish (Rebuild) */
@media (max-width: 768px) {
    .section-actions {
        padding: 2rem 1rem 4rem;
    }

    .action-card {
        padding: 2rem 1.5rem;
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: none;
        /* Flat look for mobile performance */
    }

    .action-title {
        font-size: 1.75rem;
    }

    .action-desc {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .footer-content {
        gap: 2.5rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        /* Larger headings */
        margin-bottom: 1rem;
    }

    .footer-links ul {
        gap: 0.75rem;
        /* Better touch spacing */
    }
}

/* --- Reviews Swiper Overrides --- */
.reviews-swiper .swiper-slide {
    width: auto;
    /* Let Swiper control width */
    height: auto;
    opacity: 1;
    transform: none;
    filter: none;
}

.reviews-swiper .swiper-slide-active {
    box-shadow: none;
}

.reviews-swiper .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

/* --- Page & Team Styling --- */
.page-title {
    font-family: var(--font-display);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

/* About Hero Specifics */
.about-hero p {
    font-size: 1.25rem !important;
    /* Force larger font */
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-body);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    /* More space between cards */
    flex-wrap: wrap;
}

.team-card {
    background: rgba(25, 25, 25, 0.6);
    /* Darker, more premium glass */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    /* Softer corners */
    padding: 3rem 2rem;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.team-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 173, 228, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(16, 173, 228, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(16, 173, 228, 0.5);
    transform: scale(1.05);
}



/* --- New Admin Showcase Design --- */
.admins-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.admin-showcase-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Clean look: No border, No background */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 2rem 0;
    gap: 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.admin-showcase-card:hover {
    transform: translateY(-5px);
    /* No border/bg on hover */
    background: transparent;
}

/* Alternate layout removed - Uniform Vertical Design */
.admin-showcase-card.reverse {
    flex-direction: column;
    text-align: center;
}

.admin-showcase-card.reverse .admin-details {
    align-items: center;
}

.admin-image-container {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    /* Circle for premium feel */
    overflow: hidden;
    border: 4px solid rgba(16, 173, 228, 0.2);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    margin-bottom: 0.5rem;
}

.admin-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.admin-showcase-card:hover .admin-image-container img {
    transform: scale(1.1);
}

.admin-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.admin-role-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(16, 173, 228, 0.1);
    border: 1px solid rgba(16, 173, 228, 0.3);
    border-radius: 50px;
    color: var(--color-primary);
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Specific Badge Colors */
.badge-yt {
    background: rgba(255, 0, 0, 0.1);
    border-color: rgba(255, 0, 0, 0.3);
    color: #ff4d4d;
}

.badge-dealer {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.admin-name {
    font-size: 2.5rem;
    font-family: var(--font-display);
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-white) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-bio {
    color: var(--text-body);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 480px;
}

@media (max-width: 768px) {

    .admin-showcase-card,
    .admin-showcase-card.reverse {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }

    .admin-showcase-card.reverse .admin-details {
        align-items: center;
    }

    .admin-details {
        align-items: center;
    }

    .admin-image-container {
        width: 160px;
        height: 160px;
    }
}

.team-role {
    color: var(--color-primary);
    /* Highlight role color */
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
}

.team-badges {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

.badge {
    padding: 0.4em 1em;
    /* Pill styling */
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
}

.badge-admin {
    background: rgba(255, 215, 0, 0.1);
    color: #FFD700;
    border: 1px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.1);
}

.badge-verified {
    background: rgba(16, 173, 228, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(16, 173, 228, 0.4);
    box-shadow: 0 0 10px rgba(16, 173, 228, 0.1);
}

/* Feature Icons in About Page */
.about-hero+.features-grid .feature-icon svg {
    width: 32px;
    height: 32px;
}

/* Specific About Page Responsive */
@media (max-width: 900px) {
    .team-grid {
        gap: 2rem;
    }

    .team-card {
        width: 45%;
        /* 2 per row on tablet/small desktop */
        min-width: 250px;
    }
}

@media (max-width: 600px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Fix Footer Gap by ensuring solid background */
.site-footer {
    gap: 2rem;
}

.footer-links,
.footer-social {
    justify-content: center;
}


/* --- Reviews Swiper Overrides --- */
.reviews-swiper .swiper-slide {
    width: auto;
    /* Let Swiper control width */
    height: auto;
    opacity: 1;
    transform: none;
    filter: none;
}

.reviews-swiper .swiper-slide-active {
    box-shadow: none;
}

.reviews-swiper .swiper-pagination {
    position: static;
    margin-top: 2rem;
}

/* --- Page & Team Styling --- */
.page-title {
    font-family: var(--font-display);
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    background: linear-gradient(to right, #fff, #ccc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.05em;
}

/* About Hero Specifics */
.about-hero p {
    font-size: 1.25rem !important;
    /* Force larger font */
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-body);
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    /* More space between cards */
    flex-wrap: wrap;
}

.team-card {
    background: rgba(25, 25, 25, 0.6);
    /* Darker, more premium glass */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    /* Softer corners */
    padding: 3rem 2rem;
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.team-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    pointer-events: none;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 173, 228, 0.2);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 2rem;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 30px rgba(16, 173, 228, 0.15);
    transition: all 0.3s ease;
}

.team-card:hover .team-avatar {
    border-color: var(--color-primary);
    box-shadow: 0 0 25px rgba(16, 173, 228, 0.5);
    align-items: center;
}

/* Fix Footer Gap by ensuring solid background */
.site-footer {
    background-color: #050505 !important;
    /* Matches darkest page tone */
    position: relative;
    z-index: 10;
    margin-top: 0 !important;
}

/* --- About Page Mobile Optimization --- */

/* Hero Adjustments */
.about-hero-section {
    min-height: 60vh;
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.about-hero-container {
    min-height: auto;
}

.about-hero-description {
    margin: 0 auto;
    max-width: 700px;
}

/* Stats Section */
.section-stats {
    padding: 4rem 0;
    background: linear-gradient(180deg, transparent, rgba(16, 173, 228, 0.05));
    border-top: none;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Features Section Fix */
.section-features {
    padding-top: 0;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .about-hero-section {
        padding-top: 6rem;
        padding-bottom: 2rem;
        min-height: auto;
    }

    .section-header {
        margin-bottom: 2rem !important;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller title on mobile */
    }

    .stats-grid {
        flex-direction: column;
        gap: 3rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .hide-on-mobile {
        display: none !important;
    }
}

/* Utility Classes */
.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

/* Shared Components (Contact & About) */
/* Owner Grid PC Optimized */
.owners-grid-pc {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.owner-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: transparent;
    padding: 0;
}

.owner-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 20px rgba(16, 173, 228, 0.3);
    margin-bottom: 2rem;
    overflow: hidden;
}

.owner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.owner-details {
    text-align: center;
    align-items: center;
    width: 100%;
}

/* Contact Buttons & Social Buttons */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: center;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    padding: 1rem 2rem;
    border-radius: 8px;
    color: var(--text-heading);
    font-family: var(--font-heading);
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 350px;
}

.contact-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    transform: translateY(-3px);
}

/* Specific Social Button Colors */
.btn-youtube:hover {
    background: #FF0000;
    border-color: #FF0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.btn-whatsapp:hover {
    background: #25D366;
    border-color: #25D366;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .owners-grid-pc {
        flex-direction: column;
        gap: 3rem;
    }
}

/* FAQ Accordion Styles */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    cursor: pointer;
    text-align: left;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 500px;
    /* Arbitrary large height */
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* =========================================
   Footer Rebuild (Mobile & Tablet Optimized)
   ========================================= */

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 2rem;
    align-items: flex-start;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 4px 0;
    /* Touch target boost */
}

.footer-nav a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-col h5 {
    color: #fff;
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.1rem;
}

.footer-copyright {
    border-top: 1px solid var(--border-subtle);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
}

/* --- Tablet Layout (1024px) --- */
/* "Do More Option" - Grid Layout */
@media (max-width: 1024px) {
    .footer-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        /* 2 Columns */
        gap: 3rem;
        text-align: left;
    }

    .footer-brand {
        grid-column: 1 / -1;
        /* Span full width on top */
        text-align: center;
        align-items: center;
        display: flex;
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .footer-brand p {
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Mobile Layout (768px) --- */
/* "Mobile First UI" - Stacked & Spacious */
@media (max-width: 768px) {
    .footer-content {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .footer-col {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        /* Separator */
        padding-bottom: 2rem;
    }

    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .footer-nav a {
        padding: 12px 0;
        /* Large touch targets for mobile */
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .footer-nav a:hover {
        background: rgba(255, 255, 255, 0.05);
        /* Subtle highlight on tap */
        transform: none;
    }

    .footer-copyright {
        margin-top: 1rem;
        padding-top: 1rem;
    }
}

/* =========================================
   Contact Ticket Section (Rebuilt)
   ========================================= */

.ticket-cta-box {
    background: linear-gradient(135deg, rgba(16, 173, 228, 0.1) 0%, rgba(16, 173, 228, 0.05) 100%);
    border: 1px solid rgba(16, 173, 228, 0.3);
    border-radius: 20px;
    padding: 3rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.ticket-text {
    flex: 1;
    text-align: left;
}

.ticket-text h2 {
    font-family: var(--font-display);
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.ticket-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0;
}

/* Tablet & Mobile Optimization */
@media (max-width: 900px) {
    .ticket-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .ticket-text {
        text-align: center;
    }

    .ticket-text h2 {
        font-size: 2rem;
    }

    .ticket-text p {
        margin: 0 auto;
    }

    /* Full width button on clickable screens */
    .ticket-cta-box .btn {
        width: 100%;
        max-width: 350px;
        justify-content: center;
        padding: 1.2rem 2rem !important;
        /* Larger touch area */
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .ticket-cta-box {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }

    .ticket-text h2 {
        font-size: 1.75rem;
    }
}

/* --- MARKET REDESIGN (Premium Swiper & Sticky Filters) --- */

/* 1. Market Hero Swiper */
.market-hero {
    position: relative;
    z-index: 10;
    /* Above background but below nav */
}

.market-hero-swiper {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
}

.market-slide {
    width: 100%;
}

.market-slide-inner {
    width: 100%;
    height: 500px;
    /* Desktop Height */
    position: relative;
    border-radius: 24px;
    /* Ensure inner has radius */
}

/* Gradient Overlay for Text Readability */
.market-slide-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.9) 0%,
            rgba(0, 0, 0, 0.6) 40%,
            transparent 100%);
    z-index: 1;
}

.market-slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 800px;
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.market-slide-content h2 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.badge-featured {
    display: inline-block;
    background: linear-gradient(90deg, #FF0080, #7928CA);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.4);
}

.market-slide-content .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    font-family: var(--font-display);
}

/* Mobile Hero Adjustments */
@media (max-width: 768px) {
    .market-slide-inner {
        height: 350px;
        /* Reduced Mobile Height */
        background-position: center top !important;
        /* Focus on top part of image */
    }

    .market-slide-inner::before {
        background: linear-gradient(to top,
                rgba(0, 0, 0, 0.95) 10%,
                rgba(0, 0, 0, 0.4) 60%,
                transparent 100%);
    }

    .market-slide-content {
        left: 1.5rem;
        bottom: 2rem;
        top: auto;
        transform: none;
        width: calc(100% - 3rem);
        text-align: left;
        align-items: flex-start;
    }

    .market-slide-content h2 {
        font-size: 1.8rem;
    }

    .market-slide-content .price {
        font-size: 1.8rem;
    }
}


/* 2. Sticky Market Filters */
.sticky-filters {
    position: sticky;
    top: 70px;
    /* Adjust based on header height */
    z-index: 900;
    background: rgba(10, 10, 10, 0.85);
    /* Proper glass background */
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.filter-scroll-container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
    /* Hide Scrollbar Firefox */
    -ms-overflow-style: none;
    /* Hide Scrollbar IE */
    margin-bottom: 1rem;
}

.filter-scroll-container::-webkit-scrollbar {
    display: none;
    /* Hide Scrollbar Chrome */
}

/* Premium Filter Button */
.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle fill */
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
}

/* Ranges Area */
.filter-ranges-grid {
    border-top: 1px solid var(--border-subtle);
    padding-top: 1.5rem;
    /* Hidden by default on mobile maybe? No, requested to be there */
}

/* Custom Range Slider Styling */
.range-wrapper {
    width: 100%;
}

.price-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    outline: none;
    opacity: 0.9;
    transition: opacity .2s;
}

.price-slider:hover {
    opacity: 1;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    /* Pink Thumb */
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 173, 228, 0.6);
    margin-top: -7px;
    /* Align thumb with track */
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--color-primary);
    border: 2px solid #fff;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 173, 228, 0.6);
}

/* Swiper Pagination Customization */
.market-hero .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.market-hero .swiper-pagination-bullet-active {
    background: var(--color-primary);
    opacity: 1;
    width: 20px;
    border-radius: 5px;
    /* Pill shape */
}

/* Ensure header doesn't overlap weirdly */
@media (min-width: 1024px) {
    .filter-ranges-grid {
        justify-content: center;
        /* Center ranges on large screens */
    }
}

/* 3. Circular Pagination (User Request) */
.market-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3rem;
}

.page-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    /* Glassy default */
    border: 1px solid var(--border-subtle);
    color: var(--text-muted);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.page-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.page-link.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(16, 173, 228, 0.4);
}

.page-link svg {
    width: 20px;
    height: 20px;
}

/* 4. Filter Spacing Fix */
.sticky-filters {
    padding-top: 1rem;
}

.filter-scroll-container {
    padding-top: 0.5rem;
}

/* 5. Apply Filters Button Styling */
#applyFiltersBtn {
    min-width: 200px;
    /* Ensure good clickable area */
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* Prevent layout shift on hover */
}

#applyFiltersBtn:hover {
    background: transparent;
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 0 20px rgba(16, 173, 228, 0.4);
    transform: translateY(-2px);
}

/* Seller Card Styles */
.seller-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    backdrop-filter: blur(10px);
}

.seller-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.seller-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
    box-shadow: 0 0 15px rgba(16, 173, 228, 0.3);
}

.seller-avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), #7928CA);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.seller-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.seller-name {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
}

@media (max-width: 768px) {
    .seller-card {
        padding: 1rem;
    }

    .seller-avatar,
    .seller-avatar-placeholder {
        width: 45px;
        height: 45px;
    }
}