/* ==========================================================================
   Bathroom Concepts — FULL REDESIGN
   Premium, modern, immersive product showcase
   ========================================================================== */

/* ---------- HERO SECTION — Split layout with floating images ---------- */
.bc-hero {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.bc-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1814 40%, #2a2318 100%);
    z-index: 0;
}

.bc-hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.bc-hero .container-fluid {
    position: relative;
    z-index: 1;
}

.bc-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 520px;
    padding: 60px 0;
}

@media (max-width: 991px) {
    .bc-hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0;
        min-height: auto;
    }
}

/* Breadcrumb inline */
.bc-breadcrumb-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
    font-size: 0.8rem;
}

.bc-breadcrumb-inline a {
    color: rgba(255, 255, 255, 0.45);
    transition: color var(--transition-base);
}

.bc-breadcrumb-inline a:hover {
    color: var(--color-accent);
}

.bc-sep {
    color: rgba(255, 255, 255, 0.25);
}

.bc-current {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Hero title */
.bc-hero-title {
    margin-bottom: 20px;
}

.bc-hero-title-line {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    color: #fff;
}

.bc-hero-title-accent {
    background: linear-gradient(135deg, var(--color-accent) 0%, #e8c878 50%, var(--color-accent) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.bc-hero-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 36px;
}

.bc-hero-desc strong {
    color: var(--color-accent);
    font-weight: 600;
}

/* Stats bar */
.bc-hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    width: fit-content;
}

.bc-stat-num {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

.bc-stat-label {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-top: 2px;
}

.bc-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero visual — overlapping images */
.bc-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.bc-hero-img-stack {
    position: relative;
    width: 100%;
    max-width: 560px;
    height: 400px;
}

.bc-hero-img {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bc-hero-img-1 {
    width: 65%;
    height: 85%;
    top: 0;
    left: 0;
    z-index: 1;
}

.bc-hero-img-2 {
    width: 50%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 2;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.bc-hero-img-stack:hover .bc-hero-img-1 {
    transform: translate(-8px, -8px) rotate(-1deg);
}

.bc-hero-img-stack:hover .bc-hero-img-2 {
    transform: translate(8px, 8px) rotate(1deg);
}

.bc-hero-floating-card {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    animation: floatBadge 3s ease-in-out infinite;
}

.bc-hero-floating-card i {
    color: var(--color-accent);
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

@media (max-width: 991px) {
    .bc-hero-title-line {
        font-size: 2.8rem;
    }

    .bc-hero-visual {
        display: none;
    }

    .bc-hero-stats {
        gap: 20px;
        padding: 16px 20px;
    }
}

@media (max-width: 575px) {
    .bc-hero-title-line {
        font-size: 2.2rem;
    }
}


/* ---------- CATEGORY SHOWCASE — Full-width image cards ---------- */
.bc-categories-section {
    padding: 64px 0;
    background: var(--color-bg);
}

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

.bc-overline {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.bc-section-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--color-text);
}

.bc-cat-carousel {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}

@media (max-width: 1200px) {
    .bc-cat-carousel {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .bc-cat-carousel {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
}

@media (max-width: 575px) {
    .bc-cat-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bc-cat-card {
    position: relative;
    border: none;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-cat-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-cat-card:hover .bc-cat-card-bg {
    transform: scale(1.1);
}

.bc-cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.15) 60%);
    transition: background var(--transition-base);
}

.bc-cat-card:hover .bc-cat-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.25) 60%);
}

.bc-cat-card.active {
    outline: 3px solid var(--color-accent);
    outline-offset: -3px;
}

.bc-cat-card.active .bc-cat-card-overlay {
    background: linear-gradient(to top, rgba(200, 169, 110, 0.6) 0%, rgba(0, 0, 0, 0.2) 60%);
}

.bc-cat-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px;
    z-index: 2;
    color: #fff;
}

.bc-cat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    font-size: 1rem;
}

.bc-cat-card-content h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    line-height: 1.3;
}

.bc-cat-card-count {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}


/* ---------- TOOLBAR — Sticky filter bar ---------- */
.bc-toolbar {
    position: sticky;
    top: 105px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
}

.bc-toolbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.bc-toolbar-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bc-toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.bc-filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-bg);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-base);
}

.bc-filter-toggle-btn:hover,
.bc-filter-toggle-btn.active {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

.bc-filter-toggle-btn i {
    font-size: 1rem;
}

/* Active filter chips */
.bc-active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bc-active-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background: var(--color-bg-off);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-pill);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text);
}

.bc-chip-remove {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
    transition: color var(--transition-base);
}

.bc-chip-remove:hover {
    color: #dc3545;
}

/* Results count */
.bc-results-count {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    white-space: nowrap;
}

.bc-results-count strong {
    color: var(--color-text);
}

/* View toggle */
.bc-view-toggle {
    display: flex;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.bc-view-btn {
    padding: 6px 12px;
    border: none;
    background: var(--color-bg);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.bc-view-btn:not(:last-child) {
    border-right: 1px solid var(--color-border);
}

.bc-view-btn.active,
.bc-view-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

@media (max-width: 575px) {
    .bc-active-filters {
        display: none;
    }

    .bc-results-count {
        display: none;
    }
}


/* ---------- MAIN LAYOUT — Filter drawer + Grid ---------- */
.bc-main {
    padding: 32px 0 80px;
    background: var(--color-bg-off);
}

.bc-layout {
    display: flex;
    gap: 28px;
}

/* Filter Drawer */
.bc-filter-drawer {
    width: 280px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.bc-filter-drawer.collapsed {
    width: 0;
    margin-left: -28px;
    opacity: 0;
    pointer-events: none;
}

.bc-filter-drawer-inner {
    width: 280px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    position: sticky;
    /* top: 165px; */
    max-height: calc(100vh - 180px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.bc-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.bc-filter-header h3 {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bc-filter-header h3 i {
    color: var(--color-accent);
}

.bc-filter-clear {
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition-base);
}

.bc-filter-clear:hover {
    color: var(--color-accent-hover);
    text-decoration: underline;
}

/* Filter blocks */
.bc-filter-block {
    margin-bottom: 4px;
}

.bc-filter-block-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    border: none;
    background: none;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--color-text);
    cursor: pointer;
    border-bottom: 1px solid var(--color-border);
    transition: color var(--transition-base);
}

.bc-filter-block-toggle:hover {
    color: var(--color-accent);
}

.bc-filter-block-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.7rem;
}

.bc-filter-block-toggle.active i {
    transform: rotate(180deg);
}

.bc-filter-block-body {
    display: grid;
    gap: 8px;
    padding: 14px 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.35s ease;
}

.bc-filter-block-body.open {
    max-height: 300px;
    opacity: 1;
}

/* Custom checkbox */
.bc-check {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.84rem;
    color: var(--color-text);
    transition: color var(--transition-base);
    user-select: none;
}

.bc-check:hover {
    color: var(--color-accent);
}

.bc-check input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bc-check-box {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    position: relative;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.bc-check:hover .bc-check-box {
    border-color: var(--color-accent);
}

.bc-check input:checked+.bc-check-box {
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.bc-check input:checked+.bc-check-box::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 6px;
    width: 5px;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

@media (max-width: 991px) {
    .bc-filter-drawer {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        z-index: 1050;
        width: 320px;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: var(--color-bg);
        box-shadow: var(--shadow-lg);
        border-radius: 0;
        margin: 0;
    }

    .bc-filter-drawer.open {
        transform: translateX(0);
    }

    .bc-filter-drawer.collapsed {
        width: 320px;
        margin-left: 0;
        opacity: 1;
    }

    .bc-filter-drawer-inner {
        width: 100%;
        border: none;
        border-radius: 0;
        max-height: 100vh;
        padding: 24px;
        position: static;
    }
}


/* ---------- PRODUCT GRID ---------- */
.bc-grid-wrap {
    flex: 1;
    min-width: 0;
}

.bc-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.bc-product-grid.view-large {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 1200px) {
    .bc-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {

    .bc-product-grid,
    .bc-product-grid.view-large {
        grid-template-columns: 1fr;
    }
}


/* ---------- PRODUCT CARD — Modern glass design ---------- */
.bc-card {
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    animation: cardReveal 0.6s ease forwards;
}

.bc-card:nth-child(1) {
    animation-delay: 0.04s;
}

.bc-card:nth-child(2) {
    animation-delay: 0.08s;
}

.bc-card:nth-child(3) {
    animation-delay: 0.12s;
}

.bc-card:nth-child(4) {
    animation-delay: 0.16s;
}

.bc-card:nth-child(5) {
    animation-delay: 0.2s;
}

.bc-card:nth-child(6) {
    animation-delay: 0.24s;
}

.bc-card:nth-child(7) {
    animation-delay: 0.28s;
}

.bc-card:nth-child(8) {
    animation-delay: 0.32s;
}

.bc-card:nth-child(9) {
    animation-delay: 0.36s;
}

.bc-card:nth-child(10) {
    animation-delay: 0.4s;
}

.bc-card:nth-child(11) {
    animation-delay: 0.44s;
}

.bc-card:nth-child(12) {
    animation-delay: 0.48s;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(200, 169, 110, 0.25);
}


.bc-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.bc-card-link:hover {
    color: inherit;
}

/* Card media */
.bc-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 11;
}

.bc-card-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.bc-card:hover .bc-card-media img {
    transform: scale(1.08);
}

.bc-card-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.35) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.bc-card:hover .bc-card-media-overlay {
    opacity: 1;
}

/* Card badge */
.bc-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 14px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    z-index: 2;
}

.bc-card-badge--gold {
    background: linear-gradient(135deg, var(--color-accent), #d4a843);
    border: none;
}

/* Save button */
.bc-card-save {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--transition-base);
    z-index: 2;
    opacity: 0;
    transform: translateY(-8px);
}

.bc-card:hover .bc-card-save {
    opacity: 1;
    transform: translateY(0);
}

.bc-card-save:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: scale(1.1) !important;
}

.bc-card-save.saved {
    opacity: 1;
    transform: translateY(0);
    background: var(--color-accent);
    border-color: var(--color-accent);
}

.bc-card-save.saved i::before {
    content: "\F18B";
    /* bi-bookmark-fill */
}

/* Card info */
.bc-card-info {
    padding: 18px 20px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.bc-card-name {
    font-size: 0.92rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--color-text);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card meta */
.bc-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    gap: 8px;
}

.bc-card-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 500;
    color: var(--color-text-muted);
    background: var(--color-bg-off);
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
}

.bc-card-tag i {
    font-size: 0.68rem;
    color: var(--color-accent);
}

/* Color dots */
.bc-card-swatches {
    display: flex;
    align-items: center;
    gap: 4px;
}

.bc-swatch-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
    cursor: pointer;
    transition: all var(--transition-base);
    flex-shrink: 0;
}

.bc-swatch-img:hover {
    transform: scale(1.25);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.2);
}

.bc-dot-more {
    font-size: 0.68rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-left: 2px;
}

/* Card actions */
.bc-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.bc-card-cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border: none;
    border-radius: 12px;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.bc-card-cta:hover {
    background: var(--color-accent);
}

.bc-card-cta i {
    font-size: 0.85rem;
    transition: transform var(--transition-base);
}

.bc-card-cta:hover i {
    transform: translateX(3px);
}

.bc-card-quick {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg);
    color: var(--color-text);
    cursor: pointer;
    font-size: 1rem;
    transition: all var(--transition-base);
}

.bc-card-quick:hover {
    background: var(--color-bg-off);
    border-color: var(--color-accent);
    color: var(--color-accent);
}


/* ---------- LOAD MORE ---------- */
.bc-load-more {
    text-align: center;
    margin-top: 48px;
}

.bc-load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 40px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-pill);
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.bc-load-more-btn:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
}

.bc-load-more-spinner {
    display: none;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.bc-load-more-btn.loading .bc-load-more-spinner {
    display: inline-block;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.bc-load-more-count {
    margin-top: 14px;
    font-size: 0.82rem;
    color: var(--color-text-muted);
}


/* ---------- CHAT FAB ---------- */
.bc-chat-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    padding: 14px 22px;
    border-radius: var(--radius-pill);
    font-size: 0.88rem;
    font-weight: 600;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
    transition: all var(--transition-base);
    z-index: 999;
    text-decoration: none;
}

.bc-chat-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 36px rgba(37, 211, 102, 0.45);
    color: #fff;
}

.bc-chat-fab i {
    font-size: 1.2rem;
}

@media (max-width: 575px) {
    .bc-chat-fab {
        padding: 12px 16px;
        bottom: 20px;
        right: 20px;
    }

    .bc-chat-label {
        display: none;
    }
}


/* ---------- HIDDEN UTILITY ---------- */
.bc-card.hidden {
    display: none !important;
}

/* Mobile filter overlay */
.bc-filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.bc-filter-overlay.visible {
    display: block;
}