/* Seller Contact Information Styles - Clean Light Theme */

.seller-contact-info {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.seller-contact-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.seller-contact-info h4 i {
    color: #2563eb;
    font-size: 1rem;
}

.contact-item {
    margin-bottom: 0.75rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 0.4rem;
}

.contact-label i {
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.contact-label i.fa-phone {
    color: #2563eb;
}

.contact-label i.fa-whatsapp {
    color: #25d366;
}

.contact-label i.fa-envelope {
    color: #ef4444;
}

.contact-label i.fa-map-marker-alt {
    color: #f59e0b;
}

/* Contact Links - Clean Button Style */
.contact-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    gap: 1rem;
}

.contact-link:hover {
    background: #ffffff;
    border-color: #2563eb;
    color: #2563eb;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.contact-link:active {
    transform: translateY(0);
}

/* WhatsApp Specific Hover */
.contact-link.whatsapp-link:hover {
    border-color: #25d366;
    color: #16a34a;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.15);
}

/* Email Specific Hover */
.contact-link.email-link:hover {
    border-color: #ef4444;
    color: #dc2626;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.15);
}

/* Icons in links */
.contact-link i {
    font-size: 1.1rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.contact-link:hover i {
    color: inherit;
}

.contact-link.whatsapp-link i {
    color: #25d366;
}

.contact-link.email-link i {
    color: #ef4444;
}

.contact-link i.fa-phone-volume {
    color: #2563eb;
}

/* Contact Number Text */
.contact-number {
    font-family: 'Cairo', sans-serif;
    /* Ensure consistent font */
    direction: ltr;
    text-align: left;
    flex: 1;
}

/* Address Display */
.contact-address {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-address i {
    color: #f59e0b;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .seller-contact-info {
        padding: 1rem;
        margin-top: 1rem;
        background: #f8fafc;
        /* Slightly distinct on mobile */
        border-radius: 8px;
        border: 1px solid #e2e8f0;
    }

    .contact-link {
        padding: 0.7rem 0.9rem;
        font-size: 0.9rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-item {
    animation: fadeIn 0.3s ease forwards;
}

.contact-item:nth-child(2) {
    animation-delay: 0.05s;
}

.contact-item:nth-child(3) {
    animation-delay: 0.1s;
}

.contact-item:nth-child(4) {
    animation-delay: 0.15s;
}
