/* Listing UI */
.listing .sidebar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    position: sticky;
    top: 12px;
}

.listing .filter-head {
    font-weight: 700;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
}

.listing .filter-block {
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
}

.listing .filter-block:last-child {
    border-bottom: none;
}

.listing .brand-list {
    max-height: 220px;
    overflow: auto;
}

/* accordion look */
.fk-acc .accordion-item {
    border-bottom: 1px solid #eee;
}

.fk-acc .accordion-button {
    padding: 12px 14px;
    font-size: .9rem;
    font-weight: 700;
    text-transform: uppercase;
    background: #fff;
    color: #222;
    box-shadow: none;
}

.fk-acc .accordion-button:not(.collapsed) {
    background: #fff;
    color: #111;
    box-shadow: none;
}

.fk-acc .accordion-body {
    padding: 10px 14px 14px 14px;
}

/* right side */
.listing .desc {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 12px;
}

.listing .toolbar {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 12px;
}

.listing .grid {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
}

/* cards */
.listing .card-p {
    border: 1px solid #eee;
    border-radius: 8px;
    height: 100%;
    transition: transform .15s, box-shadow .15s;
}

/* Keep Assured tiny */
.listing .card-p img.assured {
    height: 18px !important;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.listing .card-p:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.listing .card-p img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    background: #fff;
}

.listing .price {
    font-weight: 700;
}

.listing .mrp {
    color: #777;
    text-decoration: line-through;
    margin-left: 8px;
}

.listing .off {
    color: #388e3c;
    font-weight: 600;
    margin-left: 8px;
}

.listing .assured {
    height: 18px;
    vertical-align: middle;
}

.listing .chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border: 1px solid #e1e4ea;
    border-radius: 999px;
    background: #f6f8ff;
    font-size: .85rem;
    margin-right: 6px;
}

.listing .chip button {
    border: 0;
    background: transparent;
    line-height: 1;
    cursor: pointer;
}