/* Let Meet You — brand overrides on top of Mobilekit */
:root {
    --brand: #E11D48;
    --brand-dark: #BE123C;
    --brand-soft: #FDE7EE;
}

.bg-primary {
    background-color: var(--brand) !important;
}
.btn-primary {
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--brand-dark) !important;
    border-color: var(--brand-dark) !important;
}
.text-primary {
    color: var(--brand) !important;
}
.badge-primary {
    background-color: var(--brand) !important;
}
.chip-primary {
    background-color: var(--brand) !important;
}
.chip.chip-outline.chip-primary {
    border: 1px solid var(--brand) !important;
    color: var(--brand) !important;
    background: transparent !important;
}
.chip-icon.bg-primary {
    background-color: var(--brand) !important;
}
.icon-box.bg-primary {
    background-color: var(--brand) !important;
}
.form-check-input:checked {
    background-color: var(--brand) !important;
    border-color: var(--brand) !important;
}
.stepper-button {
    color: var(--brand) !important;
}
.rate-block ion-icon.active {
    color: var(--brand) !important;
}
.spinner-border.text-primary {
    color: var(--brand) !important;
}

/* Verified badge */
.verified-pill {
    background: #16a34a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}
.verified-pill ion-icon {
    font-size: 12px;
}

/* Listing card */
.listing-card {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0,0,0,.08);
}
.listing-card .card-img {
    position: relative;
    aspect-ratio: 3/4;
    background: #e5e7eb;
    overflow: hidden;
}
.listing-card .card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.listing-card .badge-live {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(0,0,0,.55);
    color: #fff;
    font-size: 10px;
    padding: 2px 7px;
    border-radius: 10px;
}
.listing-card .badge-verified {
    position: absolute;
    top: 8px;
    right: 8px;
}
.listing-card .card-info {
    padding: 8px 10px 10px;
}
.listing-card .card-info .name {
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.listing-card .card-info .meta {
    font-size: 12px;
    color: #6b7280;
    margin-top: 2px;
}
.listing-card .card-info .price {
    font-size: 13px;
    font-weight: 700;
    color: var(--brand);
    margin-top: 3px;
}

/* Category chips horizontal scroll */
.category-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 8px;
    scrollbar-width: none;
}
.category-scroll::-webkit-scrollbar {
    display: none;
}
.category-scroll .chip {
    flex: 0 0 auto;
}

/* Grid */
.listing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* Header logo */
.header-logo {
    height: 30px;
    width: auto;
    display: block;
}

/* Bottom menu labels */
.appBottomMenu .label {
    display: block;
    font-size: 10px;
    line-height: 1.1;
    margin-top: 2px;
    opacity: .8;
}

/* Sticky CTA on detail */
.sticky-cta {
    position: sticky;
    bottom: 0;
    padding: 10px 16px;
    background: #fff;
    box-shadow: 0 -3px 12px rgba(0,0,0,.08);
    display: flex;
    gap: 10px;
}
