/* Seller store micropage */
.store-page {
    min-height: 100vh;
    background: linear-gradient(180deg, #eef3f9 0%, #ffffff 38%, #f8fafc 100%);
}

.store-wrap {
    max-width: 80rem;
    margin: 0 auto;
    padding: 24px 16px 56px;
}

.store-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.84rem;
    color: #64748b;
}

.store-breadcrumb a {
    color: #2b7ac4;
    font-weight: 700;
    text-decoration: none;
}

.store-breadcrumb strong { color: #0f172a; }

.store-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 28px;
    min-height: 200px;
    border-radius: 18px;
    background: #0f2744;
    color: #fff;
    box-shadow: 0 16px 48px rgba(15, 39, 68, 0.18);
    margin-bottom: 20px;
}

.store-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.store-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    display: block;
}

.store-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(15, 39, 68, 0.92) 0%, rgba(26, 61, 102, 0.78) 55%, rgba(15, 39, 68, 0.45) 100%);
}

.store-hero__profile {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
}

.store-hero__avatar {
    width: 92px;
    height: 92px;
    border-radius: 18px;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.35);
    background: #fff;
    flex-shrink: 0;
}

.store-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0.9;
    color: #fff !important;
}

.store-hero__title {
    margin: 0 0 8px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 900;
    color: #fff !important;
    line-height: 1.15;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.store-hero__meta {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.store-hero__dot { opacity: 0.6; }

.store-hero__actions {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 11px;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none;
    border: 0;
    transition: transform .15s, box-shadow .15s;
}

.store-btn:hover { text-decoration: none; transform: translateY(-1px); }

.store-btn--primary {
    background: #fff;
    color: #1a3d66 !important;
}

.store-btn--whatsapp {
    background: #22c55e;
    color: #fff !important;
}

.store-btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.store-btn--solid {
    background: linear-gradient(135deg, #2b7ac4, #1a3d66);
    color: #fff !important;
    box-shadow: 0 8px 20px rgba(43, 122, 196, 0.25);
}

/* Category navigation cards */
.store-nav-cards {
    margin-bottom: 22px;
}

.store-nav-cards__head {
    margin-bottom: 12px;
}

.store-nav-cards__head h2 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f172a;
}

.store-nav-cards__head p {
    margin: 0;
    color: #64748b;
    font-size: 0.9rem;
}

.store-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.store-nav-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition: transform .15s, box-shadow .15s, border-color .15s;
    min-height: 84px;
}

.store-nav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    text-decoration: none;
    color: inherit;
}

.store-nav-card__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #334155;
}

.store-nav-card__body {
    min-width: 0;
    flex: 1;
}

.store-nav-card__body strong {
    display: block;
    font-size: 0.92rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.2;
}

.store-nav-card__body small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 0.75rem;
    line-height: 1.3;
}

.store-nav-card__count {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #334155;
    font-size: 0.78rem;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.store-nav-card.is-active {
    border-width: 2px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}

.store-nav-card--all.is-active { border-color: #64748b; }
.store-cat--cars .store-nav-card__icon,
.store-section.store-cat--cars .store-section__icon,
.store-side__link.store-cat--cars i { background: #dbeafe; color: #1d4ed8; }
.store-nav-card.store-cat--cars.is-active { border-color: #2563eb; }

.store-cat--ncp .store-nav-card__icon,
.store-section.store-cat--ncp .store-section__icon,
.store-side__link.store-cat--ncp i { background: #ffedd5; color: #c2410c; }
.store-nav-card.store-cat--ncp.is-active { border-color: #ea580c; }

.store-cat--rentals .store-nav-card__icon,
.store-section.store-cat--rentals .store-section__icon,
.store-side__link.store-cat--rentals i { background: #dcfce7; color: #15803d; }
.store-nav-card.store-cat--rentals.is-active { border-color: #16a34a; }

.store-cat--accessories .store-nav-card__icon,
.store-section.store-cat--accessories .store-section__icon,
.store-side__link.store-cat--accessories i { background: #fef3c7; color: #b45309; }
.store-nav-card.store-cat--accessories.is-active { border-color: #d97706; }

.store-cat--routes .store-nav-card__icon,
.store-section.store-cat--routes .store-section__icon,
.store-side__link.store-cat--routes i { background: #ede9fe; color: #6d28d9; }
.store-nav-card.store-cat--routes.is-active { border-color: #7c3aed; }

.store-nav-card.store-cat--cars .store-nav-card__icon { background: #dbeafe; color: #1d4ed8; }
.store-nav-card.store-cat--ncp .store-nav-card__icon { background: #ffedd5; color: #c2410c; }
.store-nav-card.store-cat--rentals .store-nav-card__icon { background: #dcfce7; color: #15803d; }
.store-nav-card.store-cat--accessories .store-nav-card__icon { background: #fef3c7; color: #b45309; }
.store-nav-card.store-cat--routes .store-nav-card__icon { background: #ede9fe; color: #6d28d9; }

/* Two-column layout */
.store-layout {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.store-side {
    position: sticky;
    top: 88px;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

.store-side__title {
    margin: 0 0 10px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.store-side__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 11px;
    color: #334155 !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.86rem;
    margin-bottom: 4px;
}

.store-side__link i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #475569;
    font-size: 0.78rem;
}

.store-side__link span {
    margin-left: auto;
    font-size: 0.75rem;
    color: #64748b;
    background: #f8fafc;
    border-radius: 999px;
    padding: 2px 8px;
}

.store-side__link:hover {
    background: #f8fafc;
    text-decoration: none;
}

.store-side__link.is-active {
    background: #eff6ff;
    color: #1e3a8a !important;
}

.store-main { min-width: 0; }

/* Ensure listing grids stay multi-column inside store pages */
.store-main .cs-cars-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.store-main .cs-cars-grid > .cs-car-card {
    min-width: 0;
    width: 100%;
}

.store-main .rac-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.store-main .acc-index-grid,
.store-main .rs-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

@media (max-width: 1100px) {
    .store-main .cs-cars-grid,
    .store-main .rac-grid,
    .store-main .acc-index-grid,
    .store-main .rs-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .store-main .cs-cars-grid,
    .store-main .rac-grid,
    .store-main .acc-index-grid,
    .store-main .rs-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.store-section {
    margin-bottom: 22px;
    padding: 18px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
    border-left-width: 5px;
}

.store-section.store-cat--cars { border-left-color: #2563eb; }
.store-section.store-cat--ncp { border-left-color: #ea580c; }
.store-section.store-cat--rentals { border-left-color: #16a34a; }
.store-section.store-cat--accessories { border-left-color: #d97706; }
.store-section.store-cat--routes { border-left-color: #7c3aed; }

.store-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.store-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.store-section__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #334155;
}

.store-section__title h2 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 900;
    color: #0f172a;
}

.store-section__title p {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 0.82rem;
}

.store-section__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.store-section__count {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 999px;
}

.store-section__more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 800;
    color: #1d4ed8 !important;
    text-decoration: none;
}

.store-section__more--muted { color: #64748b !important; }

.store-section__footer {
    margin-top: 16px;
    display: flex;
    justify-content: center;
}

.store-empty {
    margin: 0;
    color: #64748b;
    font-size: 0.92rem;
}

.store-empty--large {
    text-align: center;
    padding: 48px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1px dashed #cbd5e1;
}

.store-empty--large i {
    font-size: 2.2rem;
    color: #94a3b8;
    margin-bottom: 12px;
    display: block;
}

.store-empty--large .store-btn { margin-top: 12px; }

.store-link {
    color: inherit;
    text-decoration: none;
    font-weight: 800;
}

.store-link:hover {
    color: #2b7ac4;
    text-decoration: underline;
}

/* Prominent Visit Store CTA used on listing pages */
.store-visit-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding: 10px 12px;
    border-radius: 12px;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid #bfdbfe;
    text-decoration: none !important;
    color: #1e3a8a !important;
    font-weight: 800;
    font-size: 0.88rem;
}

.store-visit-cta:hover {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
    color: #1e40af !important;
}

.store-visit-cta i {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
}

/* Aligned seller / showroom card on car details */
.seller-store-card.auto-sales-item {
    padding: 20px !important;
}

.seller-store-card__head {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 16px;
    border-bottom: 1px solid #dbe7f5;
}

.seller-store-card__avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid #bfdbfe;
    background: #fff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12);
}

.seller-store-card__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seller-store-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.seller-store-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
}

.seller-store-card__name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    line-height: 1.25;
    color: #0f172a;
    min-width: 0;
}

.seller-store-card__name a {
    color: inherit !important;
    text-decoration: none !important;
}

.seller-store-card__name a:hover {
    color: #1d4ed8 !important;
}

.seller-store-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    white-space: nowrap;
    margin-top: 2px;
}

.seller-store-card__rating .stars {
    color: #f59e0b;
    font-size: 0.72rem;
    letter-spacing: -1px;
}

.seller-store-card__rating small {
    color: #64748b;
    font-weight: 700;
    font-size: 0.75rem;
}

.seller-store-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
}

.seller-store-card__badge--showroom {
    background: #2563eb;
    color: #fff;
}

.seller-store-card__badge--seller {
    background: #16a34a;
    color: #fff;
}

.seller-store-card__meta {
    margin: 0;
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.35;
}

.seller-store-card__meta--loc {
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.seller-store-card__meta--loc i {
    color: #2563eb;
    margin-top: 2px;
}

.seller-store-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 9px 12px;
    border-radius: 10px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e3a8a !important;
    font-weight: 800;
    font-size: 0.88rem;
    text-decoration: none !important;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.seller-store-card__cta:hover {
    background: #dbeafe;
    color: #1e40af !important;
}

.seller-store-card__cta-inner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
}

.seller-store-card__cta-inner i {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #2563eb;
    color: #fff;
    font-size: 0.75rem;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

.seller-store-card__cta-inner span {
    line-height: 1;
    margin: 0;
    padding: 0;
}

.showroom-info-card {
    background: #fff;
    border: 1px solid #dbeafe;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.06);
}

.showroom-info-card__inner {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.showroom-info-card__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 0.75rem;
    font-weight: 800;
}

.showroom-info-card__name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 900;
    color: #0f172a;
}

.showroom-info-card__location {
    margin: 0;
    color: #475569;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.showroom-info-card .seller-store-card__cta {
    margin-top: 4px;
}

@media (max-width: 575px) {
    .seller-store-card__head {
        gap: 12px;
    }

    .seller-store-card__avatar {
        width: 64px;
        height: 64px;
    }

    .seller-store-card__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

@media (max-width: 1100px) {
    .store-nav-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
    .store-layout { grid-template-columns: 1fr; }
    .store-side {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 10px;
    }
    .store-side__title { width: 100%; margin-bottom: 4px; }
    .store-side__link {
        margin: 0;
        padding: 8px 10px;
        background: #f8fafc;
    }
}

@media (max-width: 720px) {
    .store-hero__profile { flex-direction: column; }
    .store-hero__actions { width: 100%; }
    .store-btn { flex: 1; }
    .store-nav-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .store-nav-grid { grid-template-columns: 1fr; }
}

/* Stores directory */
.store-dir-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
    margin-bottom: 18px;
    padding: 36px 28px;
    min-height: 240px;
    border-radius: 20px;
    background: #0f2744;
    box-shadow: 0 16px 40px rgba(15, 39, 68, 0.18);
}

.store-dir-hero__media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.store-dir-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%;
    display: block;
    transform: scale(1.02);
}

.store-dir-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(15, 39, 68, 0.9) 0%, rgba(26, 61, 102, 0.72) 48%, rgba(15, 39, 68, 0.35) 100%);
}

.store-dir-hero__copy {
    position: relative;
    z-index: 1;
    min-width: 0;
    flex: 1;
}

.store-dir-search {
    position: relative;
    z-index: 1;
}

.store-dir-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 8px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88) !important;
}

.store-dir-hero__title {
    margin: 0 0 8px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #fff !important;
    text-transform: uppercase;
    line-height: 1.1;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.store-dir-hero__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.88) !important;
    max-width: 38rem;
    line-height: 1.55;
    font-size: 0.95rem;
}

.store-dir-search {
    display: flex;
    align-items: center;
    gap: 8px;
    width: min(100%, 380px);
    padding: 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.store-dir-search i { color: #94a3b8; margin-left: 6px; }

.store-dir-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    min-width: 0;
    font-weight: 600;
    color: #0f172a;
}

.store-dir-search button {
    border: 0;
    border-radius: 10px;
    min-height: 42px;
    padding: 0 16px;
    background: linear-gradient(135deg, #2b7ac4, #1a3d66);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.store-dir-filters {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 24px;
}

.store-dir-filter {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-height: 92px;
    padding: 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #e2e8f0;
    text-decoration: none !important;
    color: #334155 !important;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition: transform .15s, box-shadow .15s, border-color .15s;
}

.store-dir-filter:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.store-dir-filter i {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    color: #475569;
}

.store-dir-filter__label {
    font-size: 0.86rem;
    font-weight: 900;
    line-height: 1.2;
}

.store-dir-filter__count {
    margin-top: auto;
    font-size: 0.75rem;
    font-weight: 800;
    color: #64748b;
    background: #f8fafc;
    border-radius: 999px;
    padding: 3px 9px;
}

.store-dir-filter.is-active {
    border-width: 2px;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.store-dir-filter--all.is-active { border-color: #64748b; }
.store-dir-filter--cars i { background: #dbeafe; color: #1d4ed8; }
.store-dir-filter--cars.is-active { border-color: #2563eb; }
.store-dir-filter--ncp i { background: #ffedd5; color: #c2410c; }
.store-dir-filter--ncp.is-active { border-color: #ea580c; }
.store-dir-filter--rentals i { background: #dcfce7; color: #15803d; }
.store-dir-filter--rentals.is-active { border-color: #16a34a; }
.store-dir-filter--accessories i { background: #fef3c7; color: #b45309; }
.store-dir-filter--accessories.is-active { border-color: #d97706; }
.store-dir-filter--routes i { background: #ede9fe; color: #6d28d9; }
.store-dir-filter--routes.is-active { border-color: #7c3aed; }

.store-dir-section {
    margin-bottom: 28px;
    padding: 20px;
    background: #fff;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
    border-left: 5px solid #94a3b8;
}

.store-dir-section.store-cat--cars { border-left-color: #2563eb; }
.store-dir-section.store-cat--ncp { border-left-color: #ea580c; }
.store-dir-section.store-cat--rentals { border-left-color: #16a34a; }
.store-dir-section.store-cat--accessories { border-left-color: #d97706; }
.store-dir-section.store-cat--routes { border-left-color: #7c3aed; }

.store-dir-section__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}

.store-dir-section__title {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.store-dir-section__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #f1f5f9;
    color: #334155;
}

.store-dir-section.store-cat--cars .store-dir-section__icon { background: #dbeafe; color: #1d4ed8; }
.store-dir-section.store-cat--ncp .store-dir-section__icon { background: #ffedd5; color: #c2410c; }
.store-dir-section.store-cat--rentals .store-dir-section__icon { background: #dcfce7; color: #15803d; }
.store-dir-section.store-cat--accessories .store-dir-section__icon { background: #fef3c7; color: #b45309; }
.store-dir-section.store-cat--routes .store-dir-section__icon { background: #ede9fe; color: #6d28d9; }

.store-dir-section__title h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 900;
    color: #0f172a;
}

.store-dir-section__title p {
    margin: 2px 0 0;
    color: #64748b;
    font-size: 0.84rem;
}

.store-dir-section__count {
    font-size: 0.8rem;
    font-weight: 800;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 6px 12px;
    border-radius: 999px;
}

.store-dir-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: stretch;
}

.store-dir-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 250px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 16px;
    transition: transform .15s, box-shadow .15s, border-color .15s;
}

.store-dir-card:hover {
    transform: translateY(-3px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    background: #fff;
}

.store-dir-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.store-dir-card__top {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    margin-bottom: 12px;
}

.store-dir-card__avatar {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    object-fit: cover;
    background: #e2e8f0;
}

.store-dir-card__info {
    min-width: 0;
}

.store-dir-card__info h3 {
    margin: 0 0 6px;
    font-size: 1.02rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.5em;
}

.store-dir-card__address {
    margin: 0 0 6px;
    color: #64748b;
    font-size: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    min-height: 1.3em;
}

.store-dir-card__address span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.store-dir-card__focus {
    margin: 0;
    color: #334155;
    font-size: 0.82rem;
    font-weight: 700;
}

.store-dir-card__focus span { color: #94a3b8; margin: 0 4px; }

.store-dir-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: auto;
    min-height: 28px;
    align-content: flex-start;
}

.store-dir-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
}

.store-dir-tag--cars { background: #dbeafe; color: #1d4ed8; }
.store-dir-tag--ncp { background: #ffedd5; color: #c2410c; }
.store-dir-tag--rentals { background: #dcfce7; color: #15803d; }
.store-dir-tag--accessories { background: #fef3c7; color: #b45309; }
.store-dir-tag--routes { background: #ede9fe; color: #6d28d9; }

.store-dir-card__actions {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 8px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.store-dir-card__actions .store-btn {
    width: 100%;
    min-height: 42px;
}

.store-btn--ghost-dark {
    background: #fff;
    color: #334155 !important;
    border: 1px solid #e2e8f0;
}

.store-btn--disabled {
    opacity: 0.55;
    cursor: default;
    pointer-events: none;
}

@media (max-width: 1100px) {
    .store-dir-filters { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .store-dir-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
    .store-dir-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .store-dir-grid { grid-template-columns: 1fr; }
    .store-dir-hero { padding: 20px; }
    .store-dir-search { width: 100%; }
}

@media (max-width: 480px) {
    .store-dir-filters { grid-template-columns: 1fr; }
    .store-dir-card__actions { grid-template-columns: 1fr; }
}

.store-dir-pagination {
    margin-top: 24px;
    display: flex;
    justify-content: center;
}
