:root {
    --primary: #276cb0;
    --primary-dark: #1d5489;
    --primary-soft: #eaf2fb;
    --primary-soft-strong: #d8e7f7;
    --accent: #ef1722;
    --accent-dark: #c6121c;
    --accent-soft: #ffe4e6;
    --ink: #000000;
    --muted: #4b5563;
    --surface: #f5f8fc;
    --border: #d8e2ee;
    --success: #0f8b6d;
    --footer: #000000;
    --shadow: 0 20px 45px rgba(39, 108, 176, 0.16);
    --radius: 0.5rem;
    --bs-border-radius: 0.5rem;
    --bs-border-radius-sm: 0.5rem;
    --bs-border-radius-lg: 0.5rem;
    --bs-border-radius-xl: 0.5rem;
    --bs-border-radius-xxl: 0.5rem;
    --bs-border-radius-2xl: 0.5rem;
    --bs-border-radius-pill: 0.5rem;
}

body {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: var(--ink);
    background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 30%, #f3f7fb 100%);
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

h1, h2, h3, h4, h5, h6, .brand-title, .section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

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

.top-bar {
    font-size: 1rem;
    background: linear-gradient(135deg, #000000 0%, #276cb0 100%);
    min-height: 35px;
    display: flex;
    align-items: center;
}

.main-header,
.nav-panel,
main {
    font-size: 0.95rem;
}

.top-bar-link {
    color: #ffffff;
    font-weight: 700;
    transition: opacity 0.2s ease;
}

.top-bar-link:hover {
    color: #ffffff;
    opacity: 0.82;
}

.top-account-name {
    color: #ffffff;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.top-account-dropdown {
    position: relative;
}

.top-account-toggle {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.08);
    font-weight: 700;
    padding: 0.38rem 0.9rem;
}

.top-account-toggle:hover,
.top-account-toggle:focus,
.top-account-toggle.show {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.34);
}

.top-account-menu {
    min-width: 240px;
    border: 1px solid rgba(39, 108, 176, 0.14);
    padding: 0.55rem;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
}

.top-account-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.top-account-menu .dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.65rem 0.8rem;
    font-weight: 700;
    color: var(--ink);
}

.top-account-menu .dropdown-item:hover,
.top-account-menu .dropdown-item:focus {
    background: var(--primary-soft);
    color: var(--primary);
}

.top-account-menu .dropdown-item.top-account-logout {
    color: var(--accent-dark);
}

.top-account-menu .dropdown-item.top-account-logout:hover,
.top-account-menu .dropdown-item.top-account-logout:focus {
    background: rgba(239, 23, 34, 0.08);
    color: var(--accent-dark);
}

.top-account-menu .dropdown-divider {
    margin: 0.45rem 0;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
}

.brand-wordmark {
    width: min(100%, 300px);
    height: auto;
    display: block;
}

.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: var(--radius);
    background: radial-gradient(circle at 25% 25%, #f4f8fd 0%, #e4eef9 42%, #cbdcf0 100%);
    box-shadow: inset 0 0 0 1px rgba(39, 108, 176, 0.14);
}

.brand-mark img,
.footer-logo {
    width: 100%;
    height: auto;
}

.brand-title {
    display: block;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--ink);
}

.brand-subtitle {
    display: block;
    color: var(--muted);
    font-size: 0.7rem;
}

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

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-accent {
    background: var(--accent);
    color: #ffffff;
    border: 1px solid var(--accent-dark);
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #ffffff;
}

.header-search .input-group {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: none;
    border: 2px solid var(--primary);
    overflow: hidden;
}

.header-search {
    position: relative;
}

.header-search .form-control,
.header-search .input-group-text {
    border: 0;
    font-size: 0.92rem;
}

.header-search .form-control {
    color: #334155;
    min-height: 35px;
}

.header-search .form-control:focus {
    box-shadow: none;
}

.header-search .form-control::placeholder {
    color: #8a94a6;
    opacity: 1;
}

.header-search .input-group > .form-control,
.header-search .input-group > .input-group-text,
.header-search .input-group > .btn {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    font-size: 0.92rem;
}

.header-search .input-group > .form-control {
    padding-left: 1rem;
    padding-right: 1rem;
}

.header-search .input-group > .btn {
    min-width: 132px;
    border: 0;
    border-left: 2px solid var(--primary);
    background: var(--primary);
    font-weight: 700;
    border-radius: 0 !important;
}

.header-search .input-group > .btn:hover,
.header-search .input-group > .btn:focus {
    background: var(--primary-dark);
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    z-index: 30;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 24px rgba(39, 108, 176, 0.14);
    overflow: hidden;
}

.search-suggestion-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0.7rem 0.9rem;
    background: #ffffff;
    border: 0;
    border-bottom: 1px solid #e7eef6;
    text-align: left;
    color: var(--ink);
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.search-suggestion-item:last-child {
    border-bottom: 0;
}

.search-suggestion-item:hover,
.search-suggestion-item:focus,
.search-suggestion-item.is-active {
    background: var(--primary-soft);
    color: var(--primary);
}

.search-suggestion-label {
    font-weight: 600;
    line-height: 1.25;
}

.search-suggestion-type {
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.search-suggestion-item:hover .search-suggestion-type,
.search-suggestion-item:focus .search-suggestion-type,
.search-suggestion-item.is-active .search-suggestion-type {
    color: var(--primary);
}

.nav-chip {
    padding: 0.65rem 1rem;
    border-radius: var(--radius);
    color: var(--ink);
    font-weight: 600;
    transition: all 0.2s ease;
}

.nav-chip:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.mega-menu {
    width: min(1080px, 95vw);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 1rem;
    display: block;
}

.category-mega {
    position: relative;
}

.category-mega .btn-dark,
.category-mega .btn-dark:hover,
.category-mega .btn-dark:focus,
.category-mega .btn-dark:active,
.category-mega .btn-dark.show {
    box-shadow: none !important;
    border-radius: 2px !important;
}

.category-mega .btn-dark {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
}

.category-mega .btn-dark:hover,
.category-mega .btn-dark:focus,
.category-mega .btn-dark:active,
.category-mega .btn-dark.show {
    background: #000000;
    border-color: #000000;
    color: #ffffff;
}

.category-mega .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.category-mega .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-layout {
    display: grid;
    grid-template-columns: minmax(250px, 350px) minmax(0, 1fr);
    background: #ffffff;
    min-height: 420px;
}

.mega-menu-main-list {
    padding: 1rem 0;
    background: linear-gradient(180deg, #f6f9fc 0%, #edf4fb 100%);
    border-right: 0;
    max-height: min(70vh, 560px);
    overflow-y: auto;
}

.mega-main-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.3rem 1.2rem;
    color: var(--ink);
    font-weight: 700;
    font-size: 0.93rem;
    border: 0;
    outline: 0;
    box-shadow: none;
    transition: background 0.18s ease, color 0.18s ease;
}

.mega-main-link:hover,
.mega-main-link:focus,
.mega-main-link.is-active {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.92);
    border: 0;
    outline: 0;
    box-shadow: none;
}

.mega-menu-detail-panels {
    position: relative;
    padding: 1.4rem 1.5rem;
    background: #ffffff;
    min-height: 100%;
    max-height: min(70vh, 560px);
    overflow-y: auto;
}

.mega-detail-panel {
    display: none;
}

.mega-detail-panel.is-active {
    display: block;
}

.mega-detail-header {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #edf3fb;
}

.mega-category-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-weight: 800;
    margin-bottom: 0.55rem;
    color: var(--ink);
    font-size: 1rem;
}

.mega-detail-copy {
    color: var(--muted);
    font-size: 0.88rem;
    line-height: 1.5;
}

.mega-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.mega-subcategory-link {
    display: block;
    color: var(--muted);
    padding: 0.8rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
    border: 1px solid #dde8f3;
    background: #f9fbfe;
    transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.mega-subcategory-link:hover,
.mega-subcategory-link:focus {
    color: var(--primary);
    background: var(--primary-soft);
    border-color: var(--primary-soft-strong);
    transform: translateY(-1px);
}

.mega-subcategory-empty {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 0.9rem;
    color: var(--muted);
    font-size: 0.88rem;
    border: 1px dashed #cadbec;
    background: #f9fbfe;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background:
        radial-gradient(circle at top right, rgba(239, 23, 34, 0.24), transparent 30%),
        radial-gradient(circle at left center, rgba(39, 108, 176, 0.35), transparent 32%),
        linear-gradient(135deg, #000000 0%, #276cb0 58%, #1d5489 100%);
    box-shadow: var(--shadow);
}

.hero-banner::after {
    content: '';
    position: absolute;
    inset: auto -12% -32% auto;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.hero-banner-image {
    display: block;
    width: 100%;
    height: 370px;
    object-fit: cover;
}

.hero-indicators {
    margin-bottom: 1rem;
}

.hero-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: 0;
    border-radius: 999px;
    margin: 0 0.28rem;
    background-color: rgba(255, 255, 255, 0.55);
}

.hero-indicators .active {
    background-color: #ffffff;
}

.hero-control {
    width: 8%;
}

.hero-control .carousel-control-prev-icon,
.hero-control .carousel-control-next-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(6, 24, 38, 0.45);
    background-size: 58%;
}

.panel-card,
.card-elevated {
    border: 1px solid rgba(217, 226, 239, 0.8);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.section-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(1.4rem, 2.8vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.35rem;
}

.section-subtitle {
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 0;
}

.category-card,
.product-card,
.company-card,
.brand-card,
.country-card,
.city-card,
.buyer-card {
    height: 100%;
    border: 1px solid rgba(217, 226, 239, 0.85);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 14px 30px rgba(39, 108, 176, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover,
.product-card:hover,
.company-card:hover,
.brand-card:hover,
.country-card:hover,
.city-card:hover,
.buyer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(39, 108, 176, 0.14);
}

.category-card {
    position: relative;
    padding: 1.5rem;
    overflow: hidden;
}

.category-card-media,
.city-card-media {
    overflow: hidden;
    background: linear-gradient(135deg, #f2f7fc 0%, #dbe9f7 100%);
}

.category-card-media {
    margin: -1.5rem -1.5rem 1.25rem;
}

.city-card-media {
    margin: 0;
}

.category-card-media img,
.city-card-media img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.category-card-media img {
    height: 180px;
}

.category-card::after {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(39, 108, 176, 0.16) 0%, rgba(39, 108, 176, 0) 70%);
}

.category-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.city-card {
    position: relative;
    overflow: hidden;
    padding: 1.2rem;
    background: #ffffff;
    border: 1px solid #d9dee7;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.top-cities-head .section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.01em;
}

.top-cities-head .section-subtitle {
    max-width: 640px;
    font-size: 0.95rem;
}

.city-card-media img {
    height: 145px;
    border-radius: 0.95rem;
}

.city-card-body {
    padding-top: 1rem;
    text-align: center;
}

.city-card-title {
    color: #000000;
    font-size: 0.95rem;
    font-weight: 800;
}

.subcat-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 0.9rem;
}

.subcat-badge {
    background: #f2f6fb;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    border-radius: var(--radius);
    padding: 0.4rem 0.7rem;
}

.card-media {
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #f2f7fc 0%, #dbe9f7 100%);
}

.card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-card .card-body,
.company-card .card-body,
.brand-card .card-body,
.buyer-card .card-body,
.country-card .card-body {
    padding: 1.35rem;
}

.verified-badge,
.location-badge,
.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: var(--radius);
    padding: 0.38rem 0.7rem;
    font-size: 0.74rem;
    font-weight: 700;
}

.verified-badge {
    color: var(--success);
    background: rgba(15, 139, 109, 0.12);
}

.location-badge,
.meta-badge {
    color: var(--muted);
    background: #f3f7fc;
}

.price-tag {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-dark);
}

.company-logo {
    width: 76px;
    height: 76px;
    border-radius: var(--radius);
    object-fit: cover;
    border: 1px solid #e3eef8;
    background: #fff;
}

.brand-logo {
    width: 100%;
    max-width: 130px;
    aspect-ratio: 1;
    object-fit: contain;
    margin: 0 auto 1rem;
}

.cta-panel {
    border-radius: var(--radius);
    padding: 2rem;
    background:
        linear-gradient(135deg, rgba(239, 23, 34, 0.12), rgba(39, 108, 176, 0.12)),
        #ffffff;
    border: 1px solid #dde8f3;
}

.page-banner,
.company-banner {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #276cb0 58%, #1d5489 100%);
    color: #fff;
    min-height: 50px;
}

.page-banner-content {
    position: relative;
    z-index: 2;
    padding: 0.55rem 1rem;
}

.page-banner-content h1,
.page-banner-content .h1,
.page-banner-content .h2,
.page-banner-content .h3,
.page-banner-content .h4,
.page-banner-content .h5 {
    margin-bottom: 0.2rem !important;
    font-size: clamp(1rem, 2vw, 1.35rem);
    line-height: 1.15;
}

.page-banner-content p {
    margin-bottom: 0.3rem !important;
    font-size: 0.82rem;
    line-height: 1.3;
}

.page-banner-content .d-flex.flex-wrap.gap-2 {
    gap: 0.35rem !important;
}

.page-banner-content .subcat-badge {
    padding: 0.24rem 0.5rem;
    font-size: 0.68rem;
}

.page-banner::after,
.company-banner::after {
    content: '';
    position: absolute;
    inset: auto -5% -20% auto;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.breadcrumb-wrap .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255,255,255,0.65);
    --bs-breadcrumb-item-active-color: rgba(255,255,255,0.72);
    margin-bottom: 0;
    font-size: 0.72rem;
    line-height: 1.2;
}

.breadcrumb-wrap a {
    color: #fff;
}

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

.info-card {
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    background: #f8fbff;
    border: 1px solid #e3edf8;
}

.detail-list {
    display: grid;
    gap: 0.85rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eef4fa;
}

.detail-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.supplier-summary {
    padding: 1.5rem;
}

.dashboard-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
}

.admin-shell {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1.5rem;
}

.dashboard-nav {
    position: sticky;
    top: 110px;
    padding: 1.5rem;
}

.admin-sidebar {
    position: sticky;
    top: 110px;
    padding: 1.5rem;
}

.dashboard-nav .nav-link {
    color: var(--ink);
    border-radius: var(--radius);
    padding: 0.75rem 0.95rem;
    font-weight: 700;
}

.admin-sidebar .nav-link {
    color: var(--ink);
    border-radius: var(--radius);
    padding: 0.7rem 0.9rem;
    font-weight: 700;
}

.dashboard-nav .nav-link.active,
.dashboard-nav .nav-link:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.admin-sidebar .nav-link.active,
.admin-sidebar .nav-link:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

.metric-card {
    padding: 1.4rem;
}

.metric-card strong {
    display: block;
    font-size: 1.85rem;
}

.site-footer {
    background: var(--footer);
    padding: 4rem 0 1rem;
    color: #fff;
}

.footer-logo {
    width: min(100%, 200px);
    height: auto;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.78);
}

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

.footer-contact li {
    color: rgba(255, 255, 255, 0.78);
    display: flex;
    gap: 0.65rem;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.form-card {
    padding: 1.5rem;
}

.empty-state {
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    background: #fff;
    border: 1px dashed #cadbec;
}

.table thead th {
    color: var(--muted);
    font-weight: 800;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.38rem 0.7rem;
    border-radius: var(--radius);
    font-size: 0.74rem;
    font-weight: 700;
}

.status-approved,
.status-active,
.status-open,
.status-new {
    background: rgba(15, 139, 109, 0.12);
    color: var(--success);
}

.status-pending,
.status-in_review,
.status-inactive {
    background: rgba(39, 108, 176, 0.12);
    color: var(--primary-dark);
}

.status-rejected,
.status-closed {
    background: rgba(220, 38, 38, 0.12);
    color: #b91c1c;
}

.btn,
.form-control,
.form-select,
.input-group-text,
.dropdown-menu,
.dropdown-toggle,
.form-check-input,
.rounded,
.rounded-1,
.rounded-2,
.rounded-3,
.rounded-4,
.rounded-5,
.status-pill {
    border-radius: var(--radius) !important;
}

@media (max-width: 991.98px) {
    .mega-menu {
        width: min(100vw - 1rem, 720px);
    }

    .mega-menu-layout {
        grid-template-columns: 1fr;
    }

    .mega-menu-main-list {
        max-height: none;
        border-right: 0;
        border-bottom: 1px solid #e3edf8;
    }

    .mega-menu-detail-panels {
        padding: 1rem;
    }

    .dashboard-shell {
        grid-template-columns: 1fr;
    }

    .admin-shell {
        grid-template-columns: 1fr;
    }

    .dashboard-nav {
        position: static;
    }

    .admin-sidebar {
        position: static;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .top-account-name {
        width: 100%;
    }

    .page-banner-content {
        padding: 0.5rem 0.8rem;
    }

    .hero-banner-image {
        height: 220px;
    }

    .detail-item {
        flex-direction: column;
        gap: 0.2rem;
    }

    .card-media img {
        height: 180px;
    }

    .category-card-media img,
    .city-card-media img {
        height: 165px;
    }

    .city-card {
        padding: 1rem;
    }

    .city-card-media,
    .city-card-media img {
        margin-bottom: 0;
    }

    .mega-subcategory-grid {
        grid-template-columns: 1fr;
    }
}
