/* ==========================================================================
   Phone Card — pc
   inc/elementor/phone/css/phone-card.css
   ========================================================================== */

/* ── Card ── */
.pc-card {
    background-color: var(--card-bg, #ffffff);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 12px;
    padding: 28px 28px 24px;
    box-sizing: border-box;
}

/* ── Header ── */
.pc-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.pc-header-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--secondary, #f0f0ec);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-on-bg, #111110);
    line-height: 1;
}

.pc-header-icon i,
.pc-header-icon svg {
    display: block;
    width: 1em;
    height: 1em;
}

.pc-header-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pc-label {
    font-size: 12px;
    color: var(--text-muted, #6f6e69);
    margin: 0;
    line-height: 1.4;
}

.pc-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-on-bg, #111110);
    margin: 0;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* ── Phone number ── */
.pc-number {
    font-size: 26px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-on-bg, #111110);
    margin: 20px 0 0;
    line-height: 1.2;
}

/* ── Hours row ── */
.pc-hours-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.pc-status-dot {
    flex-shrink: 0;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #22c55e;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
    animation: pc-pulse 2s infinite;
}

@keyframes pc-pulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2); }
    50%       { box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
}

.pc-hours {
    font-size: 12px;
    color: var(--text-muted, #6f6e69);
    line-height: 1.4;
}

/* ── Button ── */
.pc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    padding: 11px 20px;
    background-color: var(--primary, #111110);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: -0.01em;
    line-height: 1;
    transition: background-color 0.2s ease, transform 0.15s ease;
    cursor: pointer;
    border: none;
}

.pc-btn:hover {
    transform: translateY(-1px);
}

.pc-btn i,
.pc-btn svg {
    display: block;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ── Tip note ── */
.pc-tip {
    margin-top: 16px;
    padding: 16px 20px;
    background-color: var(--secondary, #f5f5f5);
    border: 1px solid var(--border, rgba(0, 0, 0, 0.08));
    border-radius: 10px;
    box-sizing: border-box;
}

.pc-tip p {
    font-size: 13px;
    color: var(--text-muted, #6f6e69);
    line-height: 1.7;
    margin: 0;
}

.pc-tip strong {
    color: var(--text-on-bg, #111110);
    font-weight: 500;
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
    .pc-status-dot { animation: none; }
    .pc-btn        { transition: none; }
}