/* Product listing and variant-selection refinements. */
.product-tile {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e7ddd0 !important;
    box-shadow: 0 8px 24px rgba(71, 52, 34, 0.07);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.product-tile:hover {
    border-color: #bfad99 !important;
    box-shadow: 0 14px 32px rgba(90, 68, 45, 0.14);
    transform: translateY(-3px);
}

.pro .product-tile .product-tile__info {
    min-height: 8.5rem;
    padding: .75rem .7rem !important;
    background: linear-gradient(180deg, #faf7f2 0%, #f2e9dd 100%);
    border-top: 1px solid #d7c4ad;
}

.pro .product-tile .product-tile__title {
    color: #30271f !important;
    line-height: 1.8;
}

.pro .product-tile .product-tile__price {
    color: #6f4d2f;
    font-weight: 700;
}

.pro .product-tile .product-tile__meta {
    margin-top: .35rem;
    color: #75695f;
    font-size: .72rem;
}

.product-filter-column .sidebar-products,
.product-filter-column > .sticky > .card {
    font-size: .82rem;
}

.product-filter-column .accordion-button {
    min-height: 2.75rem;
    padding: .65rem .75rem;
    font-size: .82rem;
}

.product-filter-column .accordion-body {
    padding: .65rem !important;
}

.specification-new .product-option {
    min-width: 4.5rem;
    padding: .55rem 1rem;
    color: #655348;
    background: #fff;
    border: 1px solid #d7c4ad;
    border-radius: .75rem;
    transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.specification-new .product-option:hover {
    color: var(--bg-one);
    background: #fff8f3;
    border-color: var(--bg-one);
}

.specification-new .btn-check:checked + .product-option {
    color: #fff;
    background: linear-gradient(135deg, var(--bg-two), var(--bg-one));
    border-color: var(--bg-one);
    box-shadow: 0 6px 16px rgba(151, 64, 105, .25);
}

.specification-new .btn-check:focus + .product-option {
    box-shadow: 0 0 0 .2rem rgba(191, 173, 153, .3);
}

@media (max-width: 767.98px) {
    .pro .product-tile .product-tile__info {
        min-height: 8rem;
        padding: .6rem .45rem !important;
    }

    .specification-new .product-option {
        min-width: 4rem;
        padding: .5rem .75rem;
    }
}
