.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;
}
