/* Container chung */
.shop-contact-container {
    background: #ffffff;
    border: 1px solid #cfd8dc;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 25px;
    font-family: system-ui, -apple-system, sans-serif;
}

/* Tiêu đề chính */
.contact-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    display: inline-block;
    padding-bottom: 4px;
}

/* Chia bố cục 2 cột linh hoạt */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Từng dòng thông tin cơ bản */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 20px;
    background: #f0f4f8;
    padding: 8px;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-text label {
    font-size: 12px;
    color: #78909c;
    text-transform: uppercase;
    font-weight: 600;
}

.contact-text strong, .contact-text span {
    font-size: 15px;
    color: #2c3e50;
}

.contact-text a {
    color: #007bff;
    text-decoration: none;
}

.contact-text a:hover {
    text-decoration: underline;
}

/* Khối mạng xã hội bên phải */
.contact-social-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    border: 1px dashed #cfd8dc;
}

.social-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 14px;
    color: #546e7a;
    font-weight: bold;
}

/* Danh sách badge liên kết */
.social-links-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.social-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid #dcdcdc;
    border-radius: 20px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-badge:hover:not(.disabled) {
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    border-color: #b5b5b5;
}

/* Trạng thái nút bị trống / chưa điền link */
.social-badge.disabled {
    background: #f1f3f4;
    border-color: #e0e0e0;
    color: #9aa0a6;
    cursor: not-allowed;
    opacity: 0.7;
}

.social-badge.disabled .badge-icon {
    filter: grayscale(1); /* Làm mờ màu icon icon mxh nếu chưa kích hoạt */
}