/* =============================================================
   Appointment Confirmation Widget – acw-styles.css
   ============================================================= */

.acw-wrapper {
    font-family: 'Heebo', 'Assistant', 'Arial Hebrew', Arial, sans-serif;
    direction: rtl;
    text-align: right;
    max-width: 560px;
    margin: 0 auto;
}

.acw-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.10);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.acw-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 50px rgba(0, 0, 0, 0.13);
}

.acw-header-bar {
    height: 6px;
    background: #7c5cfc;
    width: 100%;
}

.acw-body {
    padding: 36px 36px 28px;
}

.acw-greeting {
    font-size: 1.05rem;
    color: #555;
    margin: 0 0 6px;
    font-weight: 400;
}

.acw-greeting strong {
    color: #1a1a2e;
    font-weight: 700;
}

.acw-headline {
    font-size: 1.65rem;
    font-weight: 800;
    color: #1a1a2e;
    margin: 0 0 28px;
    line-height: 1.3;
}

.acw-details {
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 28px;
}

.acw-detail-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid #f5f5f5;
    transition: background 0.18s ease;
}

.acw-detail-row:last-child {
    border-bottom: none;
}

.acw-detail-row:hover {
    background: #fafafa;
}

.acw-notes-row {
    align-items: flex-start;
}

.acw-detail-icon {
    flex-shrink: 0;
    font-size: 20px !important;
    width: 20px !important;
    height: 20px !important;
    color: #7c5cfc;
    line-height: 1 !important;
    display: flex;
    align-items: center;
}

.acw-detail-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.acw-detail-label {
    font-size: 0.72rem;
    color: #aaa;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.acw-detail-value {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

.acw-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.acw-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: filter 0.2s ease, transform 0.15s ease;
    font-family: inherit;
    border: none;
}

.acw-btn:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    text-decoration: none;
}

.acw-btn .dashicons {
    font-size: 17px;
    width: 17px;
    height: 17px;
    line-height: 1;
}

/* Google Calendar */
.acw-btn-calendar {
    background: #7c5cfc;
    color: #ffffff;
}
.acw-btn-calendar:visited,
.acw-btn-calendar:hover,
.acw-btn-calendar:focus {
    color: #ffffff;
}

/* Google Maps */
.acw-btn-nav {
    background: #ffffff;
    color: #7c5cfc;
    border: 2px solid #7c5cfc;
}
.acw-btn-nav:visited,
.acw-btn-nav:hover,
.acw-btn-nav:focus {
    color: #7c5cfc;
}

/* Waze */
.acw-btn-waze {
    background: #05c8f7;
    color: #ffffff;
}
.acw-btn-waze:visited,
.acw-btn-waze:hover,
.acw-btn-waze:focus {
    color: #ffffff;
}

/* WhatsApp */
.acw-btn-whatsapp {
    background: #25D366;
    color: #ffffff;
}
.acw-btn-whatsapp:visited,
.acw-btn-whatsapp:hover,
.acw-btn-whatsapp:focus {
    color: #ffffff;
}

.acw-btn svg {
    flex-shrink: 0;
}

.acw-footer-text {
    font-size: 0.85rem;
    color: #aaa;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 480px) {
    .acw-body {
        padding: 24px 20px 20px;
    }
    .acw-headline {
        font-size: 1.3rem;
    }
    .acw-actions {
        flex-direction: column;
    }
    .acw-btn {
        width: 100%;
        justify-content: center;
    }
}
