/* ═══════════════════════════════════ */
/*   CONTACTS CARD — SOFT PINK         */
/* ═══════════════════════════════════ */

.card-contacts {
    --cc-bg: rgba(253, 242, 248, 0.85);
    --cc-text: #2d2d2d;
    --cc-muted: #777;
    --cc-pink: #e8879a;
    --cc-pink-glow: rgba(232, 135, 154, 0.08);
    --cc-pink-border: rgba(232, 135, 154, 0.15);

    position: relative;
    background: var(--cc-bg) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: 1px solid rgba(232, 135, 154, 0.25) !important;
    box-shadow: 0 4px 24px rgba(232, 135, 154, 0.08) !important;
    padding: 16px !important;
}

.card-contacts:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(232, 135, 154, 0.25) !important;
    box-shadow: 0 8px 32px rgba(232, 135, 154, 0.12) !important;
}

/* Preview layout */
.card-contacts .card-preview {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 10px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* ═══ Header ═══ */
.contacts-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.contacts-head-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contacts-pin {
    color: var(--cc-pink);
    flex-shrink: 0;
}

.contacts-head h3 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: var(--cc-text);
}

.contacts-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 20px;
}

.contacts-status.is-open {
    color: #16a34a;
    background: rgba(22, 163, 74, 0.1);
}

.contacts-status.is-closed {
    color: #dc2626;
    background: rgba(220, 38, 38, 0.1);
}

.contacts-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.contacts-status-dot.open {
    background: #16a34a;
    animation: ccPulse 2s ease infinite;
}

.contacts-status-dot.closed {
    background: #dc2626;
}

@keyframes ccPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* ═══ Метро + адрес ═══ */
.contacts-metro {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(232, 135, 154, 0.25);
    border-radius: 10px;
    flex-shrink: 0;
}

.metro-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metro-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--cc-text);
}

.metro-letter {
    width: 16px;
    height: 16px;
    background: var(--metro-color, #0078BE);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metro-address {
    font-size: 11px;
    color: var(--cc-muted);
    padding-left: 22px;
}

.metro-walk {
    font-size: 11px;
    color: var(--cc-muted);
    font-weight: 500;
    flex-shrink: 0;
}

/* ═══ Кнопки связи ═══ */
.contacts-socials {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.cs-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s;
    border: 1px solid rgba(232, 135, 154, 0.25);
    background: rgba(255, 255, 255, 0.5);
}

.cs-btn:hover {
    transform: translateY(-1px);
}

/* Телефон */
.cs-phone {
    color: #16a34a;
}
.cs-phone:hover {
    background: rgba(22, 163, 74, 0.1);
    border-color: rgba(22, 163, 74, 0.25);
    box-shadow: 0 3px 12px rgba(22, 163, 74, 0.1);
}

/* Telegram */
.cs-tg {
    color: #0088cc;
}
.cs-tg:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: rgba(0, 136, 204, 0.25);
    box-shadow: 0 3px 12px rgba(0, 136, 204, 0.1);
}

/* Instagram */
.cs-ig {
    color: #e1306c;
}
.cs-ig:hover {
    background: rgba(225, 48, 108, 0.1);
    border-color: rgba(225, 48, 108, 0.25);
    box-shadow: 0 3px 12px rgba(225, 48, 108, 0.1);
}

/* WhatsApp */
.cs-wa {
    color: #25d366;
}
.cs-wa:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.25);
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.1);
}

/* ═══ Footer ═══ */
.contacts-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.contacts-response {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #16a34a;
    font-weight: 500;
}

.contacts-response-dot {
    width: 5px;
    height: 5px;
    background: #16a34a;
    border-radius: 50%;
    animation: ccPulse 2s ease infinite;
}

.contacts-schedule {
    font-size: 10px;
    color: var(--cc-muted);
    font-weight: 500;
}
