.mainBody {
    background-color: rgb(248, 248, 248) !important;
}
/* --- Shop Finder Controls Grouped UI --- */
.shop-finder-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
}

.shop-finder-controls-form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.shop-finder-controls-group {
    display: flex;
    width: 100%;
    max-width: 700px;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.grouped-select {
    flex: 1 1 0;
    min-width: 0;
    /* border: none; */
    border-color: rgb(213, 213, 213);
    border-right: 1px solid rgb(213, 213, 213);
    border-radius: 0;
    font-weight: 700;
    font-size: 16px;
    padding: 16px 18px;
    background: #fff;
    color: #222;
    outline: none;
    box-shadow: none;
    transition: background 0.2s;
}

.grouped-select:last-of-type {
    border-right: none;
}

.shop-finder-search-btn.grouped-btn {
    background: #ff0606;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 0;
    font-size: 17px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    min-width: 150px;
}

.shop-finder-search-btn.grouped-btn:active,
.shop-finder-search-btn.grouped-btn:focus {
    background: #c40000;
}

.shop-finder-locate-btn.grouped-btn {
    background: #111;
    color: #fff;
    border: none;
    border-radius: 0 8px 8px 0;
    width: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.shop-finder-locate-btn.grouped-btn:active,
.shop-finder-locate-btn.grouped-btn:focus {
    background: #444;
}

@media (max-width: 700px) {
    .shop-finder-controls-group {
        flex-direction: column;
        border-radius: 8px;
        box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    .grouped-select,
    .shop-finder-search-btn.grouped-btn,
    .shop-finder-locate-btn.grouped-btn {
        border-radius: 0 !important;
        border-right: none !important;
        width: 100%;
        min-width: 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .shop-finder-locate-btn.grouped-btn {
        border-bottom: none;
        border-radius: 0 0 8px 8px !important;
    }

    .shop-finder-select {
        border: 1px solid #e0e0e0 !important;
    }

    .shop-finder-search-btn.grouped-btn {
        background: #ff0606;
        color: #fff;
        font-weight: 700;
        border: none;
        border-radius: 0;
        height: 48px;
        font-size: 19px;
    }
}

/* Responsive grid for shop-finder-list */
.shop-finder-list {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.shop-finder-list a {
    cursor: pointer;
}

#shopFinderCardsContainer {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width: 900px) {
    #shopFinderCardsContainer {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #shopFinderCardsContainer {
        grid-template-columns: 1fr;
    }

    .shop-finder-list {
        padding: 0 8px;
    }
}

.shop-finder-shop-card {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08), 0 1.5px 4px 0 rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.18s cubic-bezier(.4, 0, .2, 1);
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f3f3f3;
    position: relative;
}

.shop-finder-shop-card:hover {
    box-shadow: 0 6px 24px 0 rgba(0, 0, 0, 0.13), 0 2px 8px 0 rgba(0, 0, 0, 0.07);
}

/* Type icon in top-right */
.shop-finder-type-icon {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    border-top-right-radius: 12px;
    border-bottom-left-radius: 12px;
    padding: 8px 13px 7px 13px;
    font-size: 22px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.07);
}

.shop-finder-type-icon-2w {
    background: #007b85;
}

.shop-finder-type-icon-4w {
    background: #fcaf17;
}

.shop-finder-type-icon i {
    color: #fff !important;
    font-size: 22px;
    line-height: 1;
}
