.phone-hidden-btn {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    color: #111;
    text-decoration: none;
    margin-top: 5px;
    padding: 4px 6px 4px 12px;
    background: #f8f9fa;
    border: 1px solid #eaeaea;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.phone-hidden-btn:hover {
    background: #f0f0f0;
    border-color: #ddd;
}

.phone-hidden-btn.revealed {
    background: transparent;
    border: none;
    padding: 0;
}

.phone-hidden-btn.revealed:hover {
    background: transparent;
    color: var(--primary-color);
}

.phone-reveal-text {
    font-size: 12px;
    font-weight: 600;
    color: #111;
    background: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
    box-shadow: 0 2px 4px rgba(32, 211, 160, 0.2);
}

.business-hero {
    position: relative;
    background-color: #111;
    padding: 40px 0;
    color: #fff;
    border-bottom: 5px solid var(--primary-color);
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    margin-top: 10px;
}

.rating-badge .star {
    color: #ffffff;
    margin-right: 2px;
    font-size: 16px;
}

.verification-badge {
    display: inline-flex;
    align-items: center;
    background: #fff8e1;
    color: #856404;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #ffecb3;
    margin-bottom: 20px;
    width: 100%;
}

.contact-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.contact-text a {
    color: #222;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.gallery-grid a {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-grid a:hover img {
    transform: scale(1.08);
}

.gallery-grid a:first-child {
    grid-column: 1 / -1;
}

.gallery-grid a:first-child img {
    height: 250px;
}

.review-box {
    background: #f9f9f9;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f5f5f5;
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-closed {
    color: #dc3545;
}

.tags-wrapper a {
    display: inline-block;
    background: #f8f9fa;
    color: #333;
    padding: 6px 12px;
    border-radius: 4px;
    margin: 0 8px 8px 0;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #ddd;
}

.tags-wrapper a:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.navigate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: 0.3s ease;
}

.navigate-btn:hover {
    background: var(--primary-color);
    color: #111;
}

@media (max-width:768px) {
    .business-layout {
        flex-direction: column;
    }

    .business-sidebar {
        width: 100% !important;
    }
}

.random-listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width:1024px) {
    .random-listings-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width:768px) {
    .random-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:480px) {
    .random-listings-grid {
        grid-template-columns: 1fr;
    }
}

.biz-opt-1 {
    background: #fafafa;
}

.biz-opt-2 {
    background: #000;
}

.biz-opt-3 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.biz-opt-4 {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.biz-opt-5 {
    margin-right: 5px;
    stroke: white;
    stroke-width: 3;
}

.biz-opt-6 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    margin-top: 60px;
}

.biz-opt-7 {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 0px;
    margin-top: 25px;
}

.biz-opt-8 {
    color: #fff;
}

.biz-opt-9 {
    color: #666;
}

.biz-opt-10 {
    margin-right: 8px;
    margin-top: -2px;
    display: inline-flex;
    align-items: center;
}

.biz-opt-11 {
    color: #fff;
    margin-right: 5px;
}

.biz-opt-12 {
    color: #aaa;
    font-size: 14px;
}

.biz-opt-13 {
    padding: 40px 0;
}

.biz-opt-14 {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.biz-opt-15 {
    flex: 1;
    min-width: 0;
}

.biz-opt-16 {
    margin-right: 10px;
    color: #28a745;
}

.verified-badge-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background-color: #22c55e;
    color: white;
    border-radius: 50%;
    margin-right: 8px;
    box-shadow: 0 2px 4px rgba(34, 197, 94, 0.4);
}

.verified-badge-icon svg {
    margin: 0;
}

.biz-opt-17 {
    margin: 0 10px;
    color: #d4bc72;
}

.biz-opt-18 {
    color: #856404;
    font-weight: 400;
    font-size: 13px;
}

.biz-opt-19 {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaeaea;
    margin-bottom: 30px;
    background: #fff;
}

.biz-opt-20 {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.biz-opt-21 {
    padding: 15px 20px;
    background: #fff;
    border-top: 1px solid #eaeaea;
}

.biz-opt-22 {
    margin-right: 8px;
}

.biz-opt-23 {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
}

.biz-opt-24 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #111;
    display: block;
}

.biz-opt-24::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.biz-opt-25 {
    padding-left: 20px;
    color: #444;
    line-height: 1.6;
}

.biz-opt-26 {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.biz-opt-27 {
    font-size: 16px;
    margin: 0 0 4px 0;
}

.biz-opt-28 {
    color: #20d3a0;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
}

.biz-opt-29 {
    color: #ccc;
}

.biz-opt-30 {
    font-size: 12px;
    color: #888;
}

.biz-opt-31 {
    color: #555;
    line-height: 1.5;
    font-size: 14px;
    margin: 0;
}

.biz-opt-32 {
    width: 320px;
    flex-shrink: 0;
}

.biz-opt-33 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #111;
    display: block;
    border-bottom: none;
}

.biz-opt-33::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.biz-opt-34 {
    display: block;
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
}

.biz-opt-35 {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.biz-opt-36 {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    margin-bottom: 25px;
}

.biz-opt-37 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    position: relative;
    color: #111;
    display: block;
}

.biz-opt-37::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.biz-opt-38 {
    font-weight: 500;
}

.biz-opt-39 {
    background: #fff;
    padding: 50px 0;
    border-top: 1px solid #eaeaea;
}

.biz-opt-40 {
    font-size: 24px;
    margin-bottom: 25px;
}

.blog-card-premium {
    display: block;
    text-decoration: none;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #edf2f7;
    position: relative;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
    animation: fadeInUp 0.6s ease both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card-premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.blog-img-box {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.blog-tags-box {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.badge-new {
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(239, 68, 68, 0.3);
}

.badge-type {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
}

.blog-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card-premium:hover .blog-img-box img {
    transform: scale(1.1);
}

.blog-body {
    padding: 24px;
    background: linear-gradient(to bottom, #fff, #f8fafc);
}

.blog-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.meta-item {
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.meta-divider {
    color: #cbd5e1;
    font-size: 10px;
}

.blog-headline {
    font-size: 19px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.blog-card-premium:hover .blog-headline {
    color: var(--primary-color);
}

.blog-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-action {
    display: flex;
    align-items: center;
}

.btn-read {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.blog-card-premium:hover .arrow-icon {
    transform: translateX(5px);
}

.biz-opt-41 {
    margin-right: 4px;
}

.biz-opt-42 {
    padding: 15px;
    background: #fff;
    border: 1px solid #eaeaea;
    border-top: none;
    border-radius: 0 0 12px 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.biz-opt-43 {
    font-size: 16px;
    margin: 0 0 5px 0;
    color: #111;
}

.biz-opt-44 {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.biz-opt-45 {
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: -1px;
}

.biz-opt-46 {
    color: var(--primary-color);
}

.biz-opt-47 {
    color: #111;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.biz-opt-48 {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 1px solid #eaeaea;
}

.biz-opt-49 {
    font-size: 14px;
    overflow-wrap: break-word;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90%;
    max-height: 85%;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.lightbox-overlay.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    line-height: 1;
    transition: 0.2s;
}

.lightbox-close:hover {
    color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
    transition: 0.2s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    color: var(--primary-color);
}

.lightbox-prev {
    left: 40px;
}

.lightbox-next {
    right: 40px;
}

@media (max-width:768px) {

    .lightbox-prev,
    .lightbox-next {
        font-size: 40px;
        padding: 10px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 40px;
    }
}

.claim-business-card {
    background: linear-gradient(135deg, #111 0%, #222 100%);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.claim-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.claim-icon-wrapper {
    background: rgba(32, 211, 160, 0.1);
    border-radius: 10px;
    padding: 10px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.claim-text h3 {
    margin: 0 0 8px 0 !important;
    font-size: 18px !important;
    color: #fff !important;
    border-bottom: none !important;
}

.claim-text p {
    margin: 0 0 15px 0 !important;
    font-size: 13px !important;
    color: #ccc !important;
    line-height: 1.4 !important;
}

.claim-btn {
    display: inline-block;
    background: #20d3a0;
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}

.claim-btn:hover {
    background: #15b286 !important;
    transform: translateY(-2px);
}

.mobile-only {
    display: none;
}

@media (max-width:768px) {
    .mobile-only {
        display: block;
    }

    .desktop-only {
        display: none;
    }

    .biz-opt-14 {
        gap: 0px;
    }
}

.claim-features-list {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
    display: grid;
    gap: 12px;
}

.claim-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #eee;
}

.claim-feature-item svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.claim-feature-item strong {
    color: #fff;
    display: block;
    font-size: 14px;
}

.claim-badge-premium {
    background: var(--primary-color);
    color: #fff;
    font-size: 10px;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 8px;
    display: inline-block;
}

.horizontal-contact-bar {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.h-contact-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.h-contact-icon {
    background: #fdf2f0;
    color: var(--primary-color);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.h-contact-text {
    display: flex;
    flex-direction: column;
}

.h-label {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    color: #888;
    line-height: 1;
    margin-bottom: 4px;
}

.h-value,
.h-link {
    font-size: 14px;
    font-weight: 600;
    color: #111;
}

.h-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width:768px) {
    .horizontal-contact-bar {
        flex-direction: column;
        gap: 15px;
    }
}

.horizontal-hours-bar {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.h-hour-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 5px;
    border-right: 1px solid #f0f0f0;
}

.h-hour-item:last-child {
    border-right: none;
}

.h-day {
    font-size: 11px;
    font-weight: 700;
    color: #888;
    text-transform: uppercase;
}

.h-time {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}

.h-hours-closed {
    color: #d32f2f;
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    margin-left: 8px;
    display: inline-block;
    white-space: nowrap;
}

@font-face {
    font-family: 'Lexend';
    src: url('fonts/Lexend-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4 / 3;
    --wp--preset--aspect-ratio--3-4: 3 / 4;
    --wp--preset--aspect-ratio--3-2: 3 / 2;
    --wp--preset--aspect-ratio--2-3: 2 / 3;
    --wp--preset--aspect-ratio--16-9: 16 / 9;
    --wp--preset--aspect-ratio--9-16: 9 / 16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #20d3a0;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --primary-color: var(--wp--preset--color--luminous-vivid-orange);
    --secondary-color: var(--wp--preset--color--black);
    --text-color: #222222;
    --light-text: #666666;
    --bg-main: var(--wp--preset--color--white);
    --bg-light: #f7f9fb;
    --bg-card: var(--wp--preset--color--white);
    --border-color: #eeeeee;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --header-height: 90px;
    --container-width: 1240px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
    --text-color: #e0e0e0;
    --light-text: #abb8c3;
    --bg-main: #000000;
    --bg-light: #0a0a0a;
    --bg-card: #111111;
    --border-color: #222222;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --nav-bg: rgba(0, 0, 0, 0.95);
    --secondary-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

body {
    font-family: "Lexend", "Lexend Placeholder", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--wp--preset--color--white) !important;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--transition);
}

.navbar.scrolled .theme-toggle-btn {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-color);
}

.theme-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

.navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: black;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-menu a {
    color: white !important;
}

.navbar.scrolled .btn-outline-white {
    border-color: #20d3a0 !important;
    color: white !important;
}

.navbar.scrolled .btn-outline-white:hover {
    background: #20d3a0 !important;
}

.navbar.scrolled .mobile-menu-toggle span {
    background: white !important;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.logo {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
    color: white;
    flex-shrink: 0;
    transition: var(--transition);
}

.navbar.scrolled .logo {
    color: var(--secondary-color);
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    flex-grow: 1;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-menu a {
    font-weight: 600;
    color: white;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: var(--text-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active,
.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.login-link,
.register-link {
    font-weight: 700;
    color: white;
    font-size: 15px;
    transition: var(--transition);
}

.nav-separator {
    color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .login-link,
.navbar.scrolled .register-link {
    color: #fff;
}

.navbar.scrolled .nav-separator {
    color: var(--border-color);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 15px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(32, 211, 160, 0.25);
}

.btn-primary:hover {
    background: #20d3a0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 211, 160, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 3px solid #20d3a0;
    border-radius: var(--border-radius);
    padding: 9px 24px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--secondary-color);
}

.navbar.scrolled .btn-outline-white {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .btn-outline-white:hover {
    background: var(--primary-color);
    color: white;
}

.search-box {
    background: #000000c7;
    padding: 15px;
    border-radius: 24px;
    border: 1px solid #20d3a066;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.search-fields-location {
    display: flex;
    gap: 15px;
    align-items: center;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 12px 20px;
    background: #000000bf;
    transition: var(--transition);
}

.input-group:focus-within {
    box-shadow: 0 0 10px rgba(32, 211, 160, 0.2);
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    outline: none;
    width: 100%;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.clear-btn {
    color: #ef4444;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    margin-left: 5px;
    padding: 10px;
    line-height: 1;
    user-select: none;
}

.distance-group {
    flex: 0.4;
    min-width: 200px;
    position: relative;
    cursor: pointer;
}

.location-group,
.city-group {
    position: relative;
}

.distance-dropdown,
.location-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.distance-group.show-dropdown .distance-dropdown,
.location-group.show-dropdown .location-dropdown,
.city-group.show-dropdown .location-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item,
.location-dropdown-item {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    transition: 0.2s;
    cursor: pointer;
}

.location-dropdown-item:hover {
    background: rgba(32, 211, 160, 0.1);
    color: var(--primary-color);
}

.dropdown-item:hover {
    background: #fff5f0;
    color: var(--primary-color);
}

.dropdown-item.active {
    background: #fff5f0;
    color: var(--primary-color);
}

.btn-search {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-search:hover {
    background: #20d3a0;
    transform: scale(1.05);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
}

.section-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-filter {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.btn-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-view-all {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.random-listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.random-card {
    background: #242731;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid rgb(0 0 0);
}

.random-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.random-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.random-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.random-card:hover .random-card-img img {
    transform: scale(1.05);
}

.random-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.random-rating .stars {
    display: flex;
    gap: 2px;
}

.star.full,
.star.half {
    color: var(--primary-color);
}

.star.empty {
    color: rgba(255, 255, 255, 0.3);
}

.random-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.random-card-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.random-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: auto;
}

.random-card-meta .reviews strong {
    color: var(--primary-color);
}

footer {
    background: #000000;
    color: white;
    padding: 100px 0 40px;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 500px;
}

.newsletter input {
    flex: 1;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-col ul li {
    margin-bottom: 15px;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-col ul li:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    opacity: 0.8;
    font-size: 14px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 3px;
    background: white;
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--text-color);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1020;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #111319;
    z-index: 1030;
    overflow-y: auto;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    background: #1a1c22;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mobile-sidebar-nav a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-nav a:last-child {
    border-bottom: none;
}

.mobile-sidebar-contact {
    margin-top: auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sidebar-contact a {
    color: #d1d1d1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.mobile-sidebar-contact a svg {
    color: var(--primary-color);
}

.category-item span {
    font-size: 13px;
}

@media (max-width:1024px) {
    .inventory-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .random-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-layout,
    .info-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 52px;
    }

    .app-image {
        display: none;
    }
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 40px;
    }

    .search-box {
        padding: 15px;
        border-radius: 20px;
    }

    .search-fields-location {
        flex-direction: column;
        gap: 12px;
    }

    .input-group,
    .distance-group {
        width: 100%;
        min-width: 100%;
        border-radius: 12px;
    }

    .btn-search {
        width: 100%;
        height: 42px;
        border-radius: 12px;
        margin-top: 5px;
    }

    .hero-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .category-item {
        padding: 8px 10px;
        justify-content: center;
        text-align: center;
    }

    .category-item:nth-child(n+7) {
        display: none;
    }

    .inventory-grid,
    .random-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .search-results-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-results-top .section-nav {
        width: 100%;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
        -webkit-overflow-scrolling: touch;
    }

    .btn-filter {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 14px;
    }
}

.lazy-img {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.lazy-loaded {
    opacity: 1;
}

.random-listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.random-card {
    background: #242731;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.random-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.random-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.random-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.random-card:hover .random-card-img img {
    transform: scale(1.05);
}

.random-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.random-rating .stars {
    display: flex;
    gap: 2px;
}

.star.full,
.star.half {
    color: var(--primary-color);
}

.star.empty {
    color: rgba(255, 255, 255, 0.3);
}

.random-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.random-card-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.random-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: auto;
}

.random-card-meta .reviews strong {
    color: var(--primary-color);
}

.search-page-bg {
    background-color: #f8f8f8;
    min-height: 100vh;
    padding: 40px 0;
    padding-top: 120px;
}

.search-filter-box {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #eaeaea;
}

.search-filter-box .search-fields-location {
    flex-wrap: wrap;
    background: #ffffff;
    border-radius: 8px;
    padding: 5px;
}

.search-filter-box .input-group {
    background: #f8f8f8;
    border: 1px solid #eaeaea;
}

.search-filter-box .input-group input {
    color: #333;
}

.search-filter-box .input-group input::placeholder {
    color: #757575;
}

.search-filter-box .or-text {
    color: #757575 !important;
}

.search-filter-box .btn-search {
    border-radius: 12px;
}

.search-results-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}

.search-results-top h1 {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.light-theme-card {
    background: white !important;
    border: 1px solid #eaeaea;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.light-theme-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.light-theme-card .random-card-title {
    color: #111;
}

.light-theme-card .random-card-meta {
    border-top: 1px solid #eaeaea;
    color: #595959;
}

.light-theme-card .random-rating {
    background: black;
    color: white;
}

.light-theme-card .star.empty {
    color: rgba(255, 255, 255, 0.4);
}

.light-theme-card .star.half,
.light-theme-card .star.full {
    color: white;
}

.light-theme-card .random-card-meta .reviews strong {
    color: var(--primary-color);
}

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 10px;
    grid-column: 1 / -1;
}

.pagination a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: #111;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #eaeaea;
    transition: var(--transition);
}

.pagination a:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.pagination a.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    pointer-events: none;
}

.pagination span {
    color: #757575;
    font-weight: 600;
}

@font-face {
    font-family: 'Lexend';
    src: url('fonts/Lexend-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}

:root {
    --wp--preset--aspect-ratio--square: 1;
    --wp--preset--aspect-ratio--4-3: 4 / 3;
    --wp--preset--aspect-ratio--3-4: 3 / 4;
    --wp--preset--aspect-ratio--3-2: 3 / 2;
    --wp--preset--aspect-ratio--2-3: 2 / 3;
    --wp--preset--aspect-ratio--16-9: 16 / 9;
    --wp--preset--aspect-ratio--9-16: 9 / 16;
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #20d3a0;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --primary-color: var(--wp--preset--color--luminous-vivid-orange);
    --secondary-color: var(--wp--preset--color--black);
    --text-color: #222222;
    --light-text: #666666;
    --bg-main: var(--wp--preset--color--white);
    --bg-light: #f7f9fb;
    --bg-card: var(--wp--preset--color--white);
    --border-color: #eeeeee;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --nav-bg: rgba(255, 255, 255, 0.95);
    --header-height: 90px;
    --container-width: 1240px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-theme="dark"] {
    --text-color: #e0e0e0;
    --light-text: #abb8c3;
    --bg-main: #000000;
    --bg-light: #0a0a0a;
    --bg-card: #111111;
    --border-color: #222222;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --nav-bg: rgba(0, 0, 0, 0.95);
    --secondary-color: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
}

body {
    font-family: "Lexend", "Lexend Placeholder", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-main);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--wp--preset--color--white) !important;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.theme-toggle-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: var(--transition);
}

.navbar.scrolled .theme-toggle-btn {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-color);
}

.theme-toggle-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.sun-icon {
    display: block;
}

.moon-icon {
    display: none;
}

[data-theme="dark"] .sun-icon {
    display: none;
}

[data-theme="dark"] .moon-icon {
    display: block;
}

.navbar {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
    z-index: 1010;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: black;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.logo img {
    height: 45px;
    width: auto;
    display: block;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-text {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
    margin-left: 8px;
    display: inline-block;
    white-space: nowrap;
}

.navbar.scrolled .logo {
    color: white;
}

.logo span {
    color: var(--primary-color);
}

.nav-menu {
    flex-grow: 1;
}

.nav-menu ul {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.nav-menu a {
    font-weight: 600;
    color: white;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
}

.navbar.scrolled .nav-menu a {
    color: white;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active,
.navbar.scrolled .nav-menu a:hover,
.navbar.scrolled .nav-menu a.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.login-link,
.register-link {
    font-weight: 700;
    color: white;
    font-size: 15px;
    transition: var(--transition);
}

.nav-separator {
    color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .login-link,
.navbar.scrolled .register-link {
    color: white;
}

.navbar.scrolled .nav-separator {
    color: var(--border-color);
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius);
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-size: 15px;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(32, 211, 160, 0.25);
}

.btn-primary:hover {
    background: #20d3a0;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 211, 160, 0.35);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 3px solid #20d3a0;
    border-radius: var(--border-radius);
    padding: 9px 24px;
    font-weight: 700;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: white;
    color: var(--secondary-color);
}

.navbar.scrolled .btn-outline-white {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .btn-outline-white:hover {
    background: var(--primary-color);
    color: white;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 150px 0 100px;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.5));
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.hero h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 22px;
    max-width: 750px;
    margin: 0 auto 50px;
    opacity: 0.95;
}

.search-box {
    background: #000000c7;
    padding: 15px;
    border-radius: 24px;
    border: 1px solid #20d3a066;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
}

.search-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-tab {
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(32, 211, 160, 0.2);
    border-radius: 12px;
    color: white;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-tab:hover {
    background: rgba(32, 211, 160, 0.1);
    border-color: var(--primary-color);
}

.search-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(32, 211, 160, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.search-fields-location {
    display: flex;
    gap: 15px;
    align-items: center;
}

.input-group {
    flex: 1;
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 12px 20px;
    background: #000000bf;
    transition: var(--transition);
    position: relative;
}

.input-group:focus-within {
    box-shadow: 0 0 10px rgba(32, 211, 160, 0.2);
}

.input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    outline: none;
    width: 100%;
}

.input-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.input-icon {
    color: var(--primary-color);
    margin-right: 15px;
    flex-shrink: 0;
}

.clear-btn {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    cursor: pointer;
    margin-left: 5px;
    padding: 10px;
    line-height: 1;
    user-select: none;
}

.distance-group {
    flex: 0.4;
    min-width: 200px;
    position: relative;
    cursor: pointer;
}

.location-group,
.city-group {
    position: relative;
}

.distance-dropdown,
.location-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 100;
    max-height: 250px;
    overflow-y: auto;
}

.distance-group.show-dropdown .distance-dropdown,
.location-group.show-dropdown .location-dropdown,
.name-search-group.show-dropdown .location-dropdown,
.city-group.show-dropdown .location-dropdown {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: block !important;
}

.dropdown-item,
.location-dropdown-item {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    transition: 0.2s;
    cursor: pointer;
}

.location-dropdown-item:hover {
    background: rgba(32, 211, 160, 0.1);
    color: var(--primary-color);
}

.dropdown-item:hover {
    background: #fff5f0;
    color: var(--primary-color);
}

.dropdown-item.active {
    background: #fff5f0;
    color: var(--primary-color);
}

.btn-search {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-search:hover {
    background: #20d3a0;
    transform: scale(1.05);
}

.hero-categories {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.category-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    color: white;
}

.category-item:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.15);
}

.category-item img {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);
}

.category-item:hover img {
    filter: none;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.subtitle {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1.1;
}

.section-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-filter {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.btn-filter.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-view-all {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.inventory-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.listing-card {
    background: #242731;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
}

.listing-card-img {
    flex-grow: 1;
    min-height: 120px;
    position: relative;
    overflow: hidden;
}

.listing-card-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.listing-card:hover .listing-card-img img {
    transform: scale(1.05);
}

.image-gallery-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    opacity: 0.8;
}

.listing-content {
    background: #242731;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.listing-card h3 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.listing-price {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 10px;
}

.listing-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #999;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 10px;
    flex-wrap: wrap;
}

.year-badge {
    background: var(--primary-color);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 700;
    color: #fff !important;
}

.random-listings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.random-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: white;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.random-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
}

.random-card-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.random-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.random-card:hover .random-card-img img {
    transform: scale(1.05);
}

.random-rating {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    padding: 5px 10px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
}

.random-rating .stars {
    display: flex;
    gap: 2px;
}

.star.full,
.star.half {
    color: white;
}

.star.empty {
    color: rgba(255, 255, 255, 0.3);
}

.google-icon {
    width: 14px !important;
    height: 14px !important;
    margin-right: 5px;
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
}

.random-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.random-card-title {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.random-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #ccc;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 12px;
    margin-top: auto;
}

.random-card-meta .reviews strong {
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 80px;
}

.feature-item {
    padding: 40px;
    border-radius: 24px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-light);
    transform: translateY(-10px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: rgba(32, 211, 160, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--primary-color);
}

.dark-section {
    background: #000000;
    color: white;
}

.featured-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.featured-main-title {
    font-size: 38px;
    font-weight: 850;
    color: white;
    margin-bottom: 15px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.featured-cities-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(32, 211, 160, 0.08);
    border: 1px solid rgba(32, 211, 160, 0.25);
    padding: 10px 24px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.featured-cities-badge:hover {
    background: rgba(32, 211, 160, 0.15);
    border-color: rgba(32, 211, 160, 0.4);
    transform: translateY(-2px);
}

.badge-icon {
    font-size: 16px;
    filter: drop-shadow(0 0 5px var(--primary-color));
}

.badge-content {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 0.3px;
    text-transform: capitalize;
}

@media (max-width:768px) {
    .featured-main-title {
        font-size: 40px;
    }

    .featured-cities-badge {
        padding: 8px 16px;
    }

    .badge-content {
        font-size: 14px;
    }
}

.team-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: center;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
    opacity: 0.9;
}

.check-list li::before {
    content: 'ÃƒÂ¢Ã…â€œÃ¢â‚¬Å“';
    color: var(--primary-color);
    font-weight: 900;
}

.team-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    color: var(--text-color);
}

.team-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.team-card-info {
    padding: 35px;
}

.info-grid {
    display: grid;
    gap: 30px;
}

.app-promo {
    background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    color: #000000;
    overflow: hidden;
    border: 3px solid black;
}

.app-promo h2 {
    font-size: 46px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.app-image img {
    width: 220px;
    transform: rotate(5deg) translateY(30px);
}

.guide-box {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.85)), url('img/car_mechanic.jpg') center/cover no-repeat;
    border-radius: 24px;
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: var(--transition);
}

.guide-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.guide-box h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.2;
}

.guide-box h3 {
    font-size: 22px;
    font-weight: 400;
    opacity: 0.9;
}

.guide-box a {
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
}

.guide-box a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.guide-box a:hover {
    color: white;
}

.guide-box a:hover::after {
    background: white;
}

footer {
    background: #000000;
    color: white;
    padding: 100px 0 40px;
}

.footer-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    max-width: 500px;
}

.newsletter input {
    flex: 1;
    padding: 18px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-col h2 {
    font-size: 20px;
    margin-bottom: 30px;
}

.footer-col ul li {
    margin-bottom: 15px;
    opacity: 0.7;
    transition: 0.3s;
}

.footer-col ul li:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.8;
    font-size: 14px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
    color: var(--primary-color);
}

@media (max-width:768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: white;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 32px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 4px;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--primary-color);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1020;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100%;
    background: #111319;
    z-index: 1030;
    overflow-y: auto;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

.mobile-sidebar-header {
    background: #1a1c22;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mobile-sidebar-nav a {
    color: white;
    font-weight: 600;
    font-size: 16px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-sidebar-nav a:last-child {
    border-bottom: none;
}

.mobile-sidebar-contact {
    margin-top: auto;
    padding: 30px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sidebar-contact a {
    color: #d1d1d1;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
}

.mobile-sidebar-contact a svg {
    color: var(--primary-color);
}

.category-item span {
    font-size: 13px;
}

@media (max-width:1024px) {
    .inventory-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .random-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-layout,
    .info-grid,
    .footer-main {
        grid-template-columns: 1fr;
    }

    .nav-menu,
    .nav-actions,
    .hide-mobile {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .hero h1 {
        font-size: 52px;
    }

    .app-image {
        display: none;
    }
}

@media (max-width:768px) {
    .hero h1 {
        font-size: 40px;
    }

    .search-box {
        padding: 15px;
        border-radius: 20px;
    }

    .search-fields-location {
        flex-direction: column;
        gap: 12px;
    }

    .input-group,
    .distance-group {
        width: 100%;
        min-width: 100%;
        border-radius: 12px;
    }

    .btn-search {
        width: 100%;
        height: 42px;
        border-radius: 12px;
        margin-top: 5px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        margin-top: 20px;
    }

    .category-item {
        padding: 8px 10px;
        justify-content: center;
        text-align: center;
    }

    .category-item:nth-child(n+7) {
        display: none;
    }

    .inventory-grid,
    .random-listings-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
}

.lazy-img {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.lazy-loaded {
    opacity: 1;
}