.card.store-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.card.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
}

.store-card .card-body {
    padding: 25px;
}

.store-logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #f0f0f0;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-logo-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.store-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 123, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.store-action-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.store-action-buttons .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.store-action-buttons .btn:hover {
    transform: translateY(-2px);
}

.store-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.store-card:hover .store-image {
    transform: scale(1.03);
}
