/* Enhanced styling for seller contact information */

/* Seller card layout */
.seller-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

/* Seller profile section */
.seller-profile-section {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #edf2f7;
}

.seller-image {
    margin-right: 1rem;
    flex-shrink: 0;
}

.seller-image img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.seller-info h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.seller-info p {
    color: #718096;
    margin-bottom: 0;
}

/* Contact section */
.contact-section {
    margin-bottom: 1.25rem;
}

/* Primary contact buttons */
.primary-contacts {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.primary-contacts .btn {
    flex: 1;
    padding: 0.75rem 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s;
}

.primary-contacts .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.primary-contacts .btn i {
    font-size: 1.1rem;
}

/* Social media links */
.social-links-section {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.social-links-section .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.social-links-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.social-links-section .btn i {
    font-size: 1.1rem;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .seller-card {
        padding: 1rem;
    }
    
    .primary-contacts {
        flex-direction: column;
    }
    
    .seller-image img {
        width: 60px;
        height: 60px;
    }
}