/* --- Shops Page Custom Styles --- */

/* Filter Sidebar */
.filter-sidebar {
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    background: #fff;
    margin-bottom: 24px;
}
.filter-sidebar .card-header {
    border-radius: 10px 10px 0 0;
    background: #007bff;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.filter-sidebar .list-group-item.active {
    background: #007bff;
    color: #fff;
    border-color: #007bff;
}
.filter-sidebar .list-group-item {
    border: none;
    border-radius: 6px;
    margin-bottom: 4px;
    transition: background 0.2s, color 0.2s;
}
.filter-sidebar .list-group-item a {
    text-decoration: none;
}
.filter-sidebar .list-group-item:hover {
    background: #f1f3f4;
    color: #007bff;
}

/* Shop Card */
.shop-card {
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.2s, transform 0.2s;
    overflow: hidden;
    background: #fff;
    border: none;
}
.shop-card:hover {
    box-shadow: 0 6px 32px rgba(0,123,255,0.10);
    transform: translateY(-4px) scale(1.01);
}
.shop-banner {
    border-radius: 12px 12px 0 0;
    min-height: 100px;
    background-color: #f8f9fa;
}
.shop-logo {
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-top: -40px;
    background: #fff;
}
.shop-card .card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #222;
}
.shop-card .card-text {
    color: #555;
}
.shop-card .btn {
    border-radius: 25px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .filter-sidebar {
        margin-bottom: 20px;
    }
}
@media (max-width: 767.98px) {
    .filter-sidebar {
        margin-bottom: 16px;
    }
    .shop-card {
        margin-bottom: 16px;
    }
    .shop-banner {
        min-height: 80px;
    }
    .shop-logo {
        width: 60px !important;
        height: 60px !important;
        margin-top: -30px;
    }
}
@media (max-width: 575.98px) {
    .shop-card {
        margin-bottom: 12px;
    }
    .shop-banner {
        min-height: 60px;
    }
    .shop-logo {
        width: 48px !important;
        height: 48px !important;
        margin-top: -24px;
    }
    .filter-sidebar {
        padding: 0 4px;
    }
}

/* Custom text-primary color for better visibility */
.text-primary,
h1.text-primary,
h2.text-primary,
h3.text-primary,
h4.text-primary,
h5.text-primary,
h6.text-primary,
p.text-primary,
span.text-primary,
div.text-primary,
a.text-primary {
    color: #04ae01 !important;
}
