/* PRODUCTS PAGE */

.products-main {
    background-color: var(--color-bg-body);
}

.products-hero {
    background: linear-gradient(135deg, #dbeafe, #eff6ff);
}

html[data-theme="dark"] .products-hero {
    background: radial-gradient(circle at top left, #020617, #020617);
}

.products-toolbar {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--color-border-soft);
}

.products-filter-group .btn {
    border-radius: 999px;
}

.products-search {
    border-radius: 999px;
}

.product-card {
    position: relative;
}

.product-card .image-placeholder-sm {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.product-card .card-body {
    padding-top: 1rem;
}