.store-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0 15px;
}

@media (max-width: 991px) {
    .store-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .store-grid {
        grid-template-columns: 1fr;
    }
}

.store-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.store-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.store-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}

.store-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.store-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #333;
}

.store-card-body p {
    font-size: 13px;
    color: #777;
    margin: 0 0 8px;
    flex: 1;
}

.store-card-fave {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.store-card-fave button {
    background: rgba(255, 255, 255, 0.85);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 16px;
    cursor: pointer;
}

.store-card-fave .selected {
    color: #e74c3c;
}

.store-card-fave .normal {
    color: #ccc;
}

.store-card-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #f39c12;
    font-size: 18px;
    z-index: 2;
}

.store-card-img-wrap {
    position: relative;
    overflow: hidden;
}

/* ── Latest Stores Grid ─────────────────────────────── */
.latest-stores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
}
@media (max-width: 991px) {
    .latest-stores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .latest-stores-grid { grid-template-columns: 1fr; }
}
.latest-store-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.latest-store-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.latest-store-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.latest-store-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}
.latest-store-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.latest-store-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #333;
}
.latest-store-card-body p {
    font-size: 13px;
    color: #777;
    margin: 0 0 8px;
    flex: 1;
}
.latest-store-card-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #f39c12;
    font-size: 18px;
    z-index: 2;
}
.latest-store-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.latest-stores-more {
    text-align: center;
    margin-top: 20px;
}
.latest-stores-more a {
    display: inline-block;
    padding: 8px 28px;
    border-radius: 20px;
    background: #337ab7;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}
.latest-stores-more a:hover {
    background: #286090;
}

/* ── Top Rated Grid ──────────────────────────────────── */
.top-rated-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 0;
}
@media (max-width: 991px) {
    .top-rated-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .top-rated-grid { grid-template-columns: 1fr; }
}
.top-rated-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}
.top-rated-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.top-rated-card a {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.top-rated-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    background: #f0f0f0;
}
.top-rated-card-img-wrap {
    position: relative;
    overflow: hidden;
}
.top-rated-card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.top-rated-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #333;
}
.top-rated-card-body p {
    font-size: 13px;
    color: #777;
    margin: 0 0 8px;
    flex: 1;
}
.top-rated-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e8531e, #f97316);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}
