.store-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    transition: 0.3s;
}

.store-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.store-name {
    font-weight: 700;
}

.store-rating {
    font-size: 14px;
    color: #999;
}

.store-rating i {
    color: #ddd;
}

.store-rating i.active {
    color: #f4a100;
}

.store-body p {
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

.store-body i {
    width: 18px;
}

.store-logo {
    position: absolute;
    right: 20px;
    bottom: 70px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-logo img {
    max-width: 55px;
}

.btn-store {
    background: #f58e3c;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-store:hover {
    background: #f58e3c;
    color: #fff;
}
