/* ============================================
   XOMINI LANDING PAGE - JUSTDIAL-INSPIRED DESIGN
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0066cc;
    --primary-light: #e8f4fd;
    --primary-dark: #004c99;
    --accent: #e65100;
    --accent-light: #fff3e0;
    --green: #2e7d32;
    --green-light: #e8f5e9;
    --dark: #1a1a2e;
    --darker: #111827;
    --light: #f8f9fa;
    --white: #ffffff;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e5e7eb;
    --border-light: #f0f0f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --transition: all 0.25s ease;
    --gradient-main: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Global Thin Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Plus Jakarta Sans', 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ============================================
   NAVBAR - JUSTDIAL STYLE
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
}

.navbar .container {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}

.logo-img {
    display: block;
    height: 36px !important;
    max-height: 36px !important;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.tagline {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Navbar search */
.nav-search-wrapper {
    flex: 1;
    max-width: 800px;
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: relative;
    z-index: 10;
}

.nav-location-select {
    border: none;
    border-right: 1px solid var(--border-light);
    padding: 10px 12px;
    padding-right: 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: #f8f9fa;
    min-width: 100px;
    max-width: 150px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.nav-location-select:hover {
    background-color: #f0f2f5;
    color: var(--primary);
}

.nav-location-select:focus {
    background-color: #fff;
    box-shadow: inset 0 0 0 1px var(--primary);
}

.nav-search-wrapper:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.12);
}

.nav-search-input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 14px;
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    min-width: 0;
}

.nav-search-input::placeholder {
    color: var(--text-muted);
}

.nav-search-btn {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    background: var(--primary);
    border: none;
    border-radius: 6px;
    padding: 0 15px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-search-btn:hover {
    background: var(--primary-dark);
}

.nav-menu {
    display: none;
    list-style: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
    margin-left: 20px;
}

.nav-login-btn {
    margin-left: 10px;
}

.nav-action-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    white-space: nowrap;
    padding: 6px 10px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-action-link:hover {
    color: var(--primary);
    background: var(--primary-light);
}

.nav-action-link i {
    font-size: 14px;
}

.nav-login-btn {
    padding: 8px 18px;
    background: var(--primary);
    color: white !important;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-login-btn:hover {
    background: var(--primary-dark);
    box-shadow: var(--shadow-sm);
}

.nav-user-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-user-greeting {
    font-weight: 600;
    color: var(--text);
    font-size: 13px;
    white-space: nowrap;
}

.nav-settings-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--text);
    border-radius: 8px;
    transition: var(--transition);
}

.nav-settings-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--primary);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    min-width: 160px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid var(--border);
}

.nav-user-dropdown:hover .nav-dropdown,
.nav-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 18px;
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
}

.nav-dropdown-item:hover {
    background: var(--light);
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

/* Side action buttons (Advertise / Free Listing) */
.jd-side-actions {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.jd-side-btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 14px 8px;
    font-size: 11px;
    font-weight: 700;
    text-decoration: none;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
}

.jd-side-btn.advertise {
    background: #e65100;
}

.jd-side-btn.free-listing {
    background: #2e7d32;
}

.jd-side-btn:hover {
    filter: brightness(1.1);
    padding-right: 12px;
}

/* ============================================
   HERO BANNER - CLEAN CAROUSEL
   ============================================ */

.jd-hero {
    padding-top: 60px;
    background: var(--light);
}

.jd-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.jd-hero-main {
    grid-column: 1 / 3;
    grid-row: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    min-height: 260px;
}

.jd-hero-main .swiper {
    height: 100%;
}

.jd-hero-main .swiper-slide {
    position: relative;
    height: 100%;
}

.jd-hero-main .swiper-slide img,
.jd-hero-main .hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-size: cover;
    background-position: center;
}

.jd-hero-main .hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.15) 100%);
}

.jd-hero-main .hero-slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    color: white;
    z-index: 2;
}

.jd-hero-main .hero-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
    -webkit-text-fill-color: white;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    line-height: 1.3;
}

.jd-hero-main .hero-subtitle {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 14px;
    color: rgba(255, 255, 255, 0.9);
}

.jd-hero-main .hero-cta-btn {
    position: absolute;
    bottom: 25px;
    right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #ff8c00 0%, #e65100 100%);
    color: white !important;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(230, 81, 0, 0.4), 
        0 0 0 2px rgba(255, 255, 255, 0.2),
        0 0 0 4px rgba(0, 102, 204, 0.3); /* Multi-colored shadow border */
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 10;
}

.jd-hero-main .hero-cta-btn:hover {
    transform: translateY(-3px) scale(1.05);
    background: linear-gradient(135deg, #e65100 0%, #ff8c00 100%);
    box-shadow: 
        0 8px 25px rgba(230, 81, 0, 0.6), 
        0 0 0 2px rgba(255, 255, 255, 0.4),
        0 0 0 5px rgba(0, 102, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.6);
}

.jd-hero-main .hero-cta-btn::after {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.jd-hero-main .hero-cta-btn:hover::after {
    transform: translateX(4px);
}

.jd-hero-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    min-height: 125px;
}

.jd-hero-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.jd-hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.jd-hero-card .jd-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 16px;
    color: white;
}

.jd-hero-card .jd-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 2px;
}

.jd-hero-card .jd-card-sub {
    font-size: 12px;
    opacity: 0.9;
}

.jd-hero-card .jd-card-arrow {
    position: absolute;
    bottom: 16px;
    right: 16px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.hero-pagination {
    bottom: 12px !important;
}

.hero-pagination .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    width: 8px;
    height: 8px;
}

.hero-pagination .swiper-pagination-bullet-active {
    background: white;
    width: 20px;
    border-radius: 4px;
}

/* No banner fallback */
.jd-hero-static {
    padding-top: 60px;
    background: linear-gradient(135deg, #0066cc 0%, #0088ff 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

.jd-hero-static h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.jd-hero-static p {
    font-size: 16px;
    opacity: 0.9;
}

/* ============================================
   SEARCH SECTION - BELOW HERO
   ============================================ */

.jd-search-section {
    background: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid var(--border-light);
}

.search-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 10px;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    height: 52px;
    z-index: 100; /* Ensure dropdowns are above other content */
}

.search-wrapper > .search-loc-selects {
    display: flex;
    border-right: 1px solid var(--border);
}

.body-location-select {
    border: none;
    border-right: 1px solid var(--border-light);
    padding: 0 14px;
    padding-right: 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: #f8f9fa;
    width: 130px;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.body-location-select:last-child {
    border-right: none;
}

.body-location-select:hover {
    background-color: #f0f2f5;
}

.search-loc-dropdown {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border-right: 1px solid var(--border-light);
    cursor: pointer;
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    background: #f8f9fa;
    width: 160px;
    position: relative;
    user-select: none;
    height: 100%;
}

.search-loc-dropdown.nav-custom-dropdown {
    width: auto;
    min-width: 80px;
    max-width: 130px;
    font-size: 11px;
    font-weight: 500;
    padding: 0 8px;
    background: transparent;
}

.search-loc-dropdown.nav-custom-dropdown span {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-loc-dropdown.nav-custom-dropdown i:first-child {
    font-size: 12px;
}

.search-loc-dropdown i {
    color: var(--primary);
}

/* Location Dropdown Menu */
.loc-dropdown-menu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    max-height: 380px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    overflow: hidden;
    flex-direction: column;
}

.search-loc-dropdown.open .loc-dropdown-menu {
    display: flex !important;
}

.loc-search-input {
    padding: 10px 14px;
    border: none;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
    font-family: inherit;
    outline: none;
    color: var(--text);
}

.loc-search-input::placeholder {
    color: var(--text-muted);
}

.loc-dropdown-list {
    overflow-y: auto;
    max-height: 300px;
    padding: 4px 0;
}

.loc-dropdown-item {
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.15s;
    color: var(--text);
    white-space: nowrap;
}

.loc-dropdown-item:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.loc-dropdown-item.active {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

.loc-dropdown-item.hidden {
    display: none;
}

.loc-dropdown-divider {
    padding: 8px 16px 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-top: 1px solid var(--border-light);
    margin-top: 4px;
}

.loc-dropdown-divider.hidden {
    display: none;
}

.search-section {
    margin-bottom: 0;
}

.search-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: stretch;
}

.search-icon {
    width: 20px;
    height: 100%;
    min-width: 20px;
    color: var(--text-muted);
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    padding: 0 15px;
    padding-right: 120px;
    color: var(--text);
}

.search-input::placeholder {
    color: #bbb;
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--primary);
    color: white;
    border: none;
    padding: 0 20px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.suggestion-tag {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    color: var(--text);
}

.suggestion-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* Dynamic Suggestions */
.dynamic-suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 0 0 8px 8px;
    margin-top: 2px;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
    padding: 8px 0;
    border: 1px solid var(--border);
}

.suggestion-item {
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 14px;
}

.suggestion-item:hover {
    background: var(--light);
    color: var(--primary);
}

.suggestion-item-icon {
    font-size: 16px;
    width: 24px;
    text-align: center;
}

.suggestion-item-text {
    font-weight: 400;
    font-size: 13px;
}

.suggestion-item-category {
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
    background: var(--light);
    padding: 2px 8px;
    border-radius: 10px;
}

/* ============================================
   CATEGORY ICONS GRID - JUSTDIAL STYLE
   ============================================ */

.jd-categories-section {
    padding: 30px 0 20px;
    background: var(--white);
}

.jd-cat-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 10px;
}

.jd-cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 8px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
    border: 1px solid transparent;
}

.jd-cat-item:hover {
    border-color: var(--border);
    background: var(--light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.jd-cat-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 12px;
    background: var(--light);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.jd-cat-item:hover .jd-cat-icon {
    transform: scale(1.1) rotate(5deg);
}

.jd-cat-icon i {
    font-size: 30px;
    transition: all 0.3s ease;
}

/* Colorful Icon Classes based on nth-child */
.jd-cat-item:nth-child(6n+1) .jd-cat-icon { background: rgba(255, 107, 107, 0.1); border-color: rgba(255, 107, 107, 0.2); }
.jd-cat-item:nth-child(6n+1) .jd-cat-icon i { color: #FF6B6B; }

.jd-cat-item:nth-child(6n+2) .jd-cat-icon { background: rgba(78, 205, 196, 0.1); border-color: rgba(78, 205, 196, 0.2); }
.jd-cat-item:nth-child(6n+2) .jd-cat-icon i { color: #4ECDC4; }

.jd-cat-item:nth-child(6n+3) .jd-cat-icon { background: rgba(162, 89, 255, 0.1); border-color: rgba(162, 89, 255, 0.2); }
.jd-cat-item:nth-child(6n+3) .jd-cat-icon i { color: #A259FF; }

.jd-cat-item:nth-child(6n+4) .jd-cat-icon { background: rgba(245, 166, 35, 0.1); border-color: rgba(245, 166, 35, 0.2); }
.jd-cat-item:nth-child(6n+4) .jd-cat-icon i { color: #F5A623; }

.jd-cat-item:nth-child(6n+5) .jd-cat-icon { background: rgba(80, 227, 194, 0.1); border-color: rgba(80, 227, 194, 0.2); }
.jd-cat-item:nth-child(6n+5) .jd-cat-icon i { color: #50E3C2; }

.jd-cat-item:nth-child(6n+6) .jd-cat-icon { background: rgba(74, 144, 226, 0.1); border-color: rgba(74, 144, 226, 0.2); }
.jd-cat-item:nth-child(6n+6) .jd-cat-icon i { color: #4A90E2; }

.jd-cat-icon .emoji-icon {
    font-size: 30px;
}

.jd-cat-name {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text);
}

/* ============================================
   CATEGORY GROUPS - JUSTDIAL STYLE
   ============================================ */

.jd-groups-section {
    padding: 20px 0 30px;
    background: var(--white);
}

.jd-groups-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.jd-group-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.jd-group-card:hover {
    box-shadow: var(--shadow-md);
}

.jd-group-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    padding: 16px 20px 12px;
}

.jd-group-items {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 0 20px 20px;
    overflow-x: auto;
}

.jd-group-item {
    flex: 0 0 140px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    color: var(--text);
    transition: var(--transition);
}

.jd-group-item:hover {
    transform: translateY(-2px);
}

.jd-group-item-img {
    width: 140px;
    height: 100px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 6px;
    background: var(--light);
}

.jd-group-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.jd-group-item:hover .jd-group-item-img img {
    transform: scale(1.05);
}

.jd-group-item-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.3;
}

/* ============================================
   POPULAR SEARCHES - JUSTDIAL STYLE
   ============================================ */

.jd-popular-section {
    padding: 30px 0;
    background: var(--white);
}

.jd-section-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.jd-section-title .jd-view-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.jd-popular-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.jd-popular-scroll::-webkit-scrollbar {
    display: none;
}

.jd-popular-card {
    flex: 0 0 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.jd-popular-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.jd-popular-img {
    width: 200px;
    height: 200px;
    position: relative;
    overflow: hidden;
}

.jd-popular-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.jd-popular-card:hover .jd-popular-img img {
    transform: scale(1.08);
}

.jd-popular-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 102, 204, 0.85) 100%);
    padding: 40px 14px 14px;
    color: white;
}

.jd-popular-name {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}

.jd-popular-btn {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    color: white;
    font-size: 11px;
    font-weight: 600;
    transition: var(--transition);
}

.jd-popular-card:hover .jd-popular-btn {
    background: white;
    color: var(--primary);
}

/* ============================================
   FEATURES / WHY CHOOSE SECTION
   ============================================ */

.jd-features-section {
    padding: 50px 0;
    background: var(--light);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--text);
    -webkit-text-fill-color: var(--text);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text);
}

.feature-card p {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============================================
   STATS SECTION
   ============================================ */

.jd-stats-section {
    padding: 50px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-card {
    text-align: center;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    -webkit-text-fill-color: var(--primary);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   CTA SECTION
   ============================================ */

.jd-cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #0066cc 0%, #0044aa 100%);
    color: white;
}

.jd-cta-content {
    text-align: center;
}

.jd-cta-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.jd-cta-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 30px;
}

.jd-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.jd-cta-btn {
    padding: 12px 32px;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.jd-cta-btn.primary {
    background: white;
    color: var(--primary);
}

.jd-cta-btn.primary:hover {
    background: #f0f8ff;
    transform: translateY(-2px);
}

.jd-cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.jd-cta-btn.secondary:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--darker);
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.footer-quick-links {
    margin-bottom: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-quick-links h4 {
    margin-bottom: 16px;
    color: var(--primary);
    font-size: 15px;
}

.quick-links-inline {
    line-height: 2;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.quick-links-inline a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.quick-links-inline a:hover {
    color: white;
}

.quick-links-inline .separator {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
}

/* ============================================
   SCROLL TO TOP BUTTON
   ============================================ */

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    z-index: 899;
    transition: var(--transition);
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.scroll-to-top.show {
    display: flex;
}

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */

.service-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    background: var(--gradient-main);
    color: white;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    margin-bottom: 30px;
    transition: var(--transition);
    margin-top: 25px;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-header {
    margin-bottom: 40px;
}

.service-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.service-hero p {
    font-size: 18px;
    opacity: 0.95;
}

.service-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.service-search input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
}

.service-listings {
    padding: 80px 0;
}

.listings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-btn {
    background: white;
    border: 2px solid var(--border);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.business-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.business-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.business-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.business-card:hover .business-image img {
    transform: scale(1.05);
}

.rating-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
}

.business-info {
    padding: 20px;
}

.business-info h3 {
    margin-bottom: 8px;
}

.category {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.5;
}

.business-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.delivery-time,
.price-range {
    font-size: 13px;
    font-weight: 600;
}

.business-btn {
    width: 100%;
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.business-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   SEARCH RESULTS PAGE
   ============================================ */

.search-header {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 80px 0 40px;
}

.search-title h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.result-count {
    font-size: 18px;
    opacity: 0.95;
}

.search-refine {
    margin-top: 30px;
}

.search-refine input {
    width: 100%;
    padding: 12px 20px;
    border: none;
    border-radius: 8px;
    margin-bottom: 20px;
}

.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

.chip.active {
    background: white;
    color: var(--primary);
}

.search-results {
    padding: 60px 0;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.no-results-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.no-results h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.no-results p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.back-home-btn {
    display: inline-block;
    background: var(--gradient-main);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    transition: var(--transition);
}

.back-home-btn:hover {
    transform: translateY(-3px);
}

/* ============================================
   FLASH TOAST
   ============================================ */

.flash-toast {
    position: fixed;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 90%;
    padding: 12px 44px 12px 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: flashSlideIn 0.3s ease;
}

.flash-error {
    background: #fee;
    color: #c33;
    border: 1px solid #fcc;
}

.flash-toast .flash-close {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: inherit;
    opacity: 0.8;
    padding: 4px;
    line-height: 1;
}

.flash-toast .flash-close:hover {
    opacity: 1;
}

@keyframes flashSlideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ============================================
   LOGIN MODAL
   ============================================ */

.login-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(26, 26, 46, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

.login-modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.login-modal {
    font-family: 'Poppins', 'Plus Jakarta Sans', sans-serif;
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 40px 40px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.3s ease;
}

.login-modal-overlay.show .login-modal {
    transform: translateY(0) scale(1);
}

.login-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border: none;
    border-radius: 10px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #666;
    transition: background 0.2s, color 0.2s;
}

.login-modal-close:hover {
    background: #eee;
    color: #333;
}

.login-modal-header {
    margin-bottom: 28px;
}

.login-title,
.login-step h2 {
    margin: 0 0 6px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
}

.login-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
}

.login-form {
    display: block;
}

.login-field {
    margin-bottom: 20px;
}

.login-field label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
    color: #334155;
}

.login-field input,
.login-field select {
    display: block;
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #1e293b;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.login-field input:hover,
.login-field select:hover {
    border-color: #cbd5e1;
}

.login-field input::placeholder {
    color: #94a3b8;
}

.login-field input:focus,
.login-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.15);
}

.login-field select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
}

.login-error {
    display: block;
    color: #dc2626;
    font-size: 12px;
    margin-top: 6px;
    font-weight: 500;
}

.login-submit-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    margin-top: 24px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 102, 204, 0.35);
}

.login-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.login-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.login-back-btn {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 14px;
    background: transparent;
    color: #64748b;
    border: none;
    font-size: 14px;
    font-family: inherit;
    cursor: pointer;
    transition: color 0.2s;
}

.login-back-btn:hover {
    color: var(--primary);
}

.social-login-btns {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    background: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.social-btn:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.google-btn {
    color: #1f2937;
}

.instagram-btn {
    color: #fff;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border: none;
}

.instagram-btn:hover {
    opacity: 0.9;
}

.login-divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

.login-divider::before,
.login-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.login-divider::before {
    left: 0;
}

.login-divider::after {
    right: 0;
}

.login-divider span {
    background: #fff;
    padding: 0 12px;
    color: #94a3b8;
    font-size: 13px;
}

.login-switch-text {
    margin: 20px 0 0;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

.login-switch-text a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.login-switch-text a:hover {
    text-decoration: underline;
}

.login-step-hidden {
    display: none !important;
}

.login-step-hidden.show {
    display: block !important;
}

/* ============================================
   PROFILE PAGE
   ============================================ */

.profile-section {
    padding: 80px 0 60px;
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
}

.profile-card h1 {
    margin-bottom: 30px;
    font-size: 28px;
}

.profile-card .form-group {
    margin-bottom: 20px;
}

.profile-card .form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
}

.profile-card .form-group input,
.profile-card .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 12px;
}

.profile-card .form-group input[readonly] {
    background: var(--light);
}

.profile-save-btn {
    padding: 14px 40px;
    background: var(--gradient-main);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: var(--transition);
}

.profile-save-btn:hover {
    transform: translateY(-2px);
}

/* ============================================
   HIDDEN LEGACY CLASSES (backward compat)
   ============================================ */

.bg-container {
    display: none;
}

.categories-section,
.services-section,
.promo-section,
.features-section,
.stats-section,
.cta-section {
    /* kept for other pages */
}

/* Services grid for other pages */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 10px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-features {
    display: none;
}

.service-btn {
    width: 100%;
    background: var(--gradient-main);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 13px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-btn:hover {
    box-shadow: var(--shadow-md);
}

.arrow {
    display: inline-block;
    transition: var(--transition);
}

/* Categories on other pages */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.category-card {
    background: white;
    border-radius: var(--radius-md);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid var(--border);
}

.category-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.category-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.category-card h4 {
    font-size: 13px;
    margin-bottom: 4px;
}

.category-count {
    font-size: 11px;
    color: var(--text-muted);
}

.hover-arrow {
    display: none;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .jd-hero-inner {
        grid-template-columns: 1fr 1fr;
    }

    .jd-hero-main {
        grid-column: 1 / -1;
        min-height: 220px;
    }

    .jd-cat-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar .container {
        flex-wrap: wrap;
        padding: 8px 15px;
        justify-content: space-between;
    }

    .nav-actions {
        gap: 8px;
        margin-left: auto;
    }

    .nav-search-wrapper {
        order: 3;
        width: 100%;
        margin-top: 10px;
        flex-direction: row;
        align-items: center;
        border-radius: 12px;
        border: 1px solid var(--border);
        overflow: visible;
        background: white;
        height: 40px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    }

    .nav-search-wrapper .search-loc-dropdown.nav-custom-dropdown {
        flex: 0 0 auto;
        max-width: 65px;
        border-right: 1px solid #f0f0f0;
        border-bottom: none;
        padding: 0 4px;
        font-size: 10px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-search-wrapper .search-loc-dropdown.nav-custom-dropdown span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .nav-search-wrapper .search-loc-dropdown.nav-custom-dropdown:last-child {
        border-right: 1px solid #f0f0f0;
    }

    .nav-search-input-container {
        flex: 1;
        height: 100%;
        display: flex;
        position: static;
        min-width: 0;
    }
    
    .nav-search-input {
        padding: 0 6px;
        font-size: 12px;
        width: 100%;
        height: 100%;
        padding-right: 32px;
    }

    .nav-search-btn {
        right: 2px;
        top: 2px;
        bottom: 2px;
        width: 28px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .search-wrapper {
        flex-direction: row;
        border-radius: 12px;
        height: 44px;
        overflow: visible;
        border: 2px solid var(--primary);
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        align-items: center;
    }

    .search-wrapper > .search-loc-selects {
        display: flex;
        flex-direction: row;
        height: 100%;
        width: auto;
        border-right: 1px solid #f0f0f0;
        border-bottom: none;
    }

    .search-wrapper .search-loc-dropdown {
        flex: 0 0 auto;
        max-width: 65px;
        border-right: 1px solid #f0f0f0;
        border-bottom: none;
        padding: 0 4px;
        font-size: 10px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-wrapper .search-loc-selects .search-loc-dropdown:last-child {
        border-right: none;
    }
    
    .search-wrapper > .search-loc-dropdown {
        border-right: 1px solid #f0f0f0;
        border-bottom: none;
        width: auto;
    }

    .search-wrapper .search-loc-dropdown span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .search-container {
        flex: 1;
        height: 100%;
        display: flex;
        position: static;
        min-width: 0;
    }

    .search-icon {
        display: none;
    }
    
    .search-input {
        font-size: 12px;
        padding-left: 6px;
        padding-right: 36px;
        height: 100%;
        width: 100%;
    }

    .dynamic-suggestions-container {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
    }

    .search-btn {
        width: 32px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        right: 2px;
        top: 2px;
        bottom: 2px;
        font-size: 0; 
    }

    .search-btn i {
        font-size: 14px;
        margin-right: 0 !important;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        padding: 10px 0;
        border-top: 1px solid var(--border-light);
        margin-top: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu-link {
        padding: 12px 20px;
        color: var(--text);
        text-decoration: none;
        font-size: 15px;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px;
        border-bottom: 1px solid #f8f9fa;
    }

    .nav-menu-link i {
        color: var(--primary);
        width: 20px;
        text-align: center;
    }


    .jd-side-actions {
        display: none;
    }

    .jd-cta-content h2 {
        font-size: 24px;
    }

    .jd-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .jd-cta-btn {
        width: 100%;
        max-width: 300px;
    }

    /* --- Hero Section (768px) --- */
    .jd-hero {
        padding-top: 55px;
    }

    .jd-hero-inner {
        padding: 16px 16px 0;
    }

    .jd-hero-main {
        min-height: 200px;
    }

    .jd-hero-card {
        min-height: 100px;
    }

    .jd-hero-card .jd-card-overlay {
        background: linear-gradient(180deg, transparent 15%, rgba(0,0,0,0.7) 100%) !important;
    }

    .jd-hero-card .jd-card-title {
        font-size: 15px;
        text-shadow: 0 1px 3px rgba(0,0,0,0.5);
    }

    .jd-hero-card .jd-card-sub {
        font-size: 11px;
    }

    .jd-hero-main .hero-title {
        font-size: 18px;
    }

    .jd-hero-main .hero-subtitle {
        font-size: 12px;
    }

    .jd-hero-main .hero-cta-btn {
        padding: 10px 22px;
        font-size: 12px;
    }

    /* --- Category Grid (768px) --- */
    .jd-cat-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    /* --- Group Cards (768px) --- */
    .jd-groups-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Features Grid (768px) --- */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- Footer (768px) --- */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    /* --- Navbar / Header (768px) --- */
    .tagline {
        display: none;
    }

    /* --- Market Tags (768px) --- */
    .market-list-box {
        gap: 8px;
        margin-top: 16px;
    }

    .market-tag {
        padding: 4px 10px;
        font-size: 11px;
        border-radius: 16px;
        gap: 6px;
    }

    .market-tag i {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    /* --- Hero Banner Section --- */
    .jd-hero {
        padding-top: 55px;
    }

    .jd-hero-inner {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 12px 12px 0;
    }

    .jd-hero-main {
        grid-column: 1 / -1;
        min-height: 220px;
        border-radius: 12px;
    }

    .jd-hero-main .hero-slide-content {
        padding: 16px;
    }

    .jd-hero-main .hero-title {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 4px;
    }

    .jd-hero-main .hero-subtitle {
        font-size: 11px;
        margin-bottom: 8px;
    }

    .jd-hero-main .hero-cta-btn {
        padding: 6px 14px;
        font-size: 10px;
        bottom: 10px;
        right: 6px;
    }

    .hero-prev, .hero-next {
        --swiper-navigation-size: 18px;
        width: 28px !important;
        height: 28px !important;
    }

    /* --- Hero Quick-Access Cards (2-column grid on mobile) --- */
    .jd-hero-card {
        min-height: 110px;
        border-radius: 12px;
    }

    .jd-hero-card .jd-card-overlay {
        padding: 12px;
        background: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.75) 100%) !important;
    }

    .jd-hero-card .jd-card-title {
        font-size: 14px;
        font-weight: 700;
        text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }

    .jd-hero-card .jd-card-sub {
        font-size: 11px;
        opacity: 0.95;
    }

    .jd-hero-card .jd-card-arrow {
        width: 26px;
        height: 26px;
        bottom: 10px;
        right: 10px;
        font-size: 12px;
        background: rgba(255,255,255,0.25);
    }

    /* --- Search Bar Section --- */
    .jd-search-section {
        padding: 14px 0;
    }

    .search-wrapper {
        height: 40px;
        border-radius: 10px;
        border-width: 1.5px;
    }

    .search-wrapper .search-loc-dropdown {
        max-width: 55px;
        padding: 0 3px;
        font-size: 9px;
    }

    .search-wrapper .search-loc-dropdown span {
        max-width: 38px;
    }

    .search-wrapper .search-loc-dropdown i:first-child {
        font-size: 10px;
    }

    .search-wrapper .search-loc-dropdown i:last-child {
        display: none;
    }

    .search-input {
        font-size: 12px;
        padding-left: 6px;
        padding-right: 34px;
    }

    .search-btn {
        width: 30px;
        right: 2px;
        top: 2px;
        bottom: 2px;
        border-radius: 6px;
    }

    .search-btn i {
        font-size: 13px;
    }

    /* --- Market Tags --- */
    .market-list-box {
        gap: 4px;
        margin-top: 12px;
    }

    .market-tag {
        padding: 3px 8px;
        font-size: 9px;
        border-radius: 12px;
        gap: 4px;
    }

    .market-tag i {
        font-size: 9px;
    }

    /* --- Category Icons Grid --- */
    .jd-cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .jd-cat-icon {
        width: 44px;
        height: 44px;
    }

    .jd-cat-icon i {
        font-size: 18px;
    }

    .jd-cat-name {
        font-size: 10px;
    }

    /* --- Category Group Cards --- */
    .jd-groups-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .jd-group-card {
        padding: 16px;
    }

    .jd-group-title {
        font-size: 16px;
    }

    .jd-group-items {
        gap: 8px;
        justify-content: flex-start;
        padding: 0 10px 10px;
    }

    .jd-group-item {
        flex: 1 1 0;
        min-width: 0;
    }

    .jd-group-item-img {
        width: 100%;
        height: 75px;
    }

    .jd-group-item-name {
        font-size: 11px;
    }

    /* --- Popular Cards --- */
    .jd-popular-card {
        flex: 0 0 150px;
    }

    .jd-popular-img {
        width: 150px;
        height: 150px;
    }

    .jd-popular-name {
        font-size: 12px;
    }

    /* --- Header / Navbar --- */
    .navbar .container {
        padding: 6px 10px;
        gap: 4px;
        justify-content: space-between;
    }

    .nav-actions {
        gap: 4px;
        margin-left: auto;
    }

    .logo-img {
        height: 24px !important;
        max-height: 24px !important;
    }

    .tagline {
        display: none;
    }

    .nav-user-greeting {
        display: none;
    }

    .nav-action-link {
        font-size: 10px;
        padding: 4px 6px;
    }

    .nav-action-link i {
        font-size: 12px;
    }

    .nav-login-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    /* Nav search bar on mobile */
    .nav-search-wrapper {
        height: 36px;
        margin-top: 6px;
        border-radius: 10px;
    }

    .nav-search-wrapper .search-loc-dropdown.nav-custom-dropdown {
        max-width: 58px;
        padding: 0 3px;
        font-size: 9px;
    }

    .nav-search-wrapper .search-loc-dropdown.nav-custom-dropdown span {
        max-width: 40px;
    }

    .nav-search-wrapper .search-loc-dropdown.nav-custom-dropdown i:last-child {
        display: none;
    }

    .nav-search-input {
        font-size: 11px;
        padding-right: 28px;
    }

    .nav-search-btn {
        width: 26px;
        border-radius: 6px;
    }

    /* --- Stats --- */
    .stat-card {
        padding: 16px 10px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-label {
        font-size: 11px;
    }

    /* --- Features --- */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-card {
        padding: 20px 16px;
    }

    .feature-icon {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .section-subtitle {
        font-size: 13px;
    }

    /* --- CTA Section --- */
    .jd-cta-content h2 {
        font-size: 20px;
    }

    .jd-cta-content p {
        font-size: 13px;
    }

    /* --- Floating Banner Images --- */
    .banner-float-img {
        width: 45px !important;
        height: 45px !important;
        opacity: 0.5;
    }

    /* --- Side Actions --- */
    .jd-side-actions {
        display: none;
    }

    /* --- Footer --- */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-section h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .footer-section a {
        font-size: 12px;
        margin-bottom: 6px;
    }

    .footer-quick-links h4 {
        font-size: 13px;
    }

    .quick-links-inline {
        font-size: 11px;
    }

    .quick-links-inline .separator {
        margin: 0 4px;
    }

    .footer-bottom {
        font-size: 11px;
    }
}

/* Animated logo preserve */
.animated-logo {
    transition: transform 0.3s ease;
}

.animated-logo:hover {
    transform: scale(1.05);
}

/* Smoky text backgrounds - only used in banners */
.smoky-text-bg {
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.cooling-animated-text {
    color: #fff;
}

/* Banner float images */
.banner-float-img {
    position: absolute;
    z-index: 1;
    border-radius: 10px;
    object-fit: cover;
    opacity: 0.8;
    pointer-events: none;
}

.float-pos-tl {
    top: 15%;
    left: 8%;
    width: 120px;
    height: 120px;
}

.float-pos-tr {
    top: 12%;
    right: 10%;
    width: 110px;
    height: 110px;
}

.float-pos-bl {
    bottom: 20%;
    left: 5%;
    width: 100px;
    height: 100px;
}

.float-pos-br {
    bottom: 18%;
    right: 8%;
    width: 120px;
    height: 120px;
}

.float-anim-1 {
    animation: floatDrift 6s ease-in-out infinite;
}

.float-anim-2 {
    animation: floatDrift 8s ease-in-out infinite 1s;
}

.float-anim-3 {
    animation: floatDrift 7s ease-in-out infinite 2s;
}

@keyframes floatDrift {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(6px, -6px);
    }
}

@media (max-width: 768px) {
    .banner-float-img {
        width: 60px !important;
        height: 60px !important;
    }
}

/* Swiper navigation styling */
.hero-prev,
.hero-next {
    color: white !important;
    --swiper-navigation-size: 24px;
    width: 36px !important;
    height: 36px !important;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
}

.hero-prev:hover,
.hero-next:hover {
    background: rgba(0, 0, 0, 0.5);
}

/* ==========================================
   MARKET LIST & BUSINESSES
   ========================================== */

.market-list-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    justify-content: center;
}

.market-tag {
    background: var(--white);
    color: var(--text);
    border: 1px solid var(--border);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: capitalize;
    box-shadow: none;
}

.market-tag i {
    color: var(--primary);
    font-size: 14px;
    transition: all 0.3s ease;
}

.market-tag:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.market-tag.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.2);
    transform: translateY(-2px);
}

.market-tag.active i {
    color: var(--white);
}

.market-biz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 25px;
}

.market-biz-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.market-biz-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.market-biz-image-wrapper {
    position: relative;
    width: 100%;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

.market-biz-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.explore-biz-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
}

.market-biz-card:hover .explore-biz-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.market-biz-info {
    padding: 0 5px;
}

.market-biz-info h4 {
    margin: 0 0 6px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1e293b;
}

.market-biz-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.market-biz-meta span {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.market-biz-meta span i {
    font-size: 11px;
    width: 14px;
    color: var(--primary);
}

/* ==========================================
   VIEW ALL SHOPS - BUTTON & MODAL
   ========================================== */

.jd-view-all-btn {
    background: linear-gradient(135deg, #0066cc, #0ea5e9);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.jd-view-all-btn:hover {
    background: linear-gradient(135deg, #0055aa, #0284c7);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.35);
}

.jd-view-all-btn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.jd-view-all-btn:hover i {
    transform: translateX(4px);
}

/* --- Modal Overlay --- */
.xomini-modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
}

/* --- Modal Content Box --- */
.xomini-modal .modal-content {
    background-color: #fff;
    margin: 2vh auto;
    width: 95%;
    max-width: 1100px;
    height: 92vh;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    position: relative;
    animation: xominiModalSlideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes xominiModalSlideUp {
    from { transform: translateY(40px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* --- Modal Header --- */
.xomini-modal .modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.xomini-modal .modal-header h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 12px;
}

.xomini-modal .modal-header h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

.xomini-modal .close-modal {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.25s ease;
    line-height: 1;
}

.xomini-modal .close-modal:hover {
    background: #fee2e2;
    color: #ef4444;
    transform: rotate(90deg);
}

/* --- Modal Search --- */
.xomini-modal .modal-search-wrapper {
    padding: 20px 32px;
    background: #f8fafc;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.xomini-modal .modal-search-container {
    position: relative;
    max-width: 100%;
}

.xomini-modal .modal-search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: all 0.3s;
    background: white;
    box-sizing: border-box;
}

.xomini-modal .modal-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

.xomini-modal .modal-search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 18px;
    pointer-events: none;
}

/* --- Modal Body (scrollable grid) --- */
.xomini-modal .modal-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 32px;
    scroll-behavior: smooth;
}

.xomini-modal .modal-body::-webkit-scrollbar {
    width: 8px;
}

.xomini-modal .modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.xomini-modal .modal-body::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 10px;
}

.xomini-modal .modal-body::-webkit-scrollbar-thumb:hover {
    background: #cbd5e1;
}

/* --- Modal Suggestions positioning --- */
.xomini-modal .dynamic-suggestions-container {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    margin-top: 8px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    z-index: 100;
    background: white;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .xomini-modal .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

    .xomini-modal .modal-header,
    .xomini-modal .modal-search-wrapper {
        padding: 16px 20px;
    }

    .xomini-modal .modal-body {
        padding: 20px;
    }

    .jd-view-all-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}