/* ══════════════════════════════════════════════════════════════
   Oanaqa – Espace client : Mes réservations
   ══════════════════════════════════════════════════════════════ */

.oanaqa-account-reservations {
    font-family: inherit;
    max-width: 680px;
}

/* ── Empty state ── */
.oar-empty {
    text-align: center;
    padding: 48px 24px;
    color: #888;
}
.oar-empty-icon {
    display: block;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

/* ── Liste ── */
.oar-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

/* ── Card ── */
.oar-card {
    background: #fff;
    border: 1.5px solid #e8e0d5;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(139,115,85,.07);
    transition: box-shadow .2s;
}
.oar-card:hover {
    box-shadow: 0 4px 20px rgba(139,115,85,.13);
}
.oar-card--past {
    opacity: .65;
}

/* ── Header ── */
.oar-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 12px;
    border-bottom: 1px solid #f0ebe3;
    background: #fdf8f3;
}
.oar-type {
    display: flex;
    align-items: center;
    gap: 8px;
}
.oar-type-icon  { font-size: 1.3rem; }
.oar-type-name  { font-weight: 700; font-size: 1rem; color: #2c1810; }

/* ── Statut badge ── */
.oar-status {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
}
.oar-status--pending   { background: #fff3cd; color: #856404; }
.oar-status--confirmed { background: #d1e7dd; color: #0f5132; }
.oar-status--cancelled { background: #f8d7da; color: #842029; }
.oar-status--expired   { background: #e2e3e5; color: #41464b; }
.oar-status--unknown   { background: #f0ebe3; color: #8b7355; }

/* ── Body / détails ── */
.oar-card-body {
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.oar-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.oar-detail-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 1px;
    width: 20px;
    text-align: center;
}
.oar-detail-content {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.oar-detail-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #a08060;
    font-weight: 600;
}
.oar-detail-value {
    font-size: 14px;
    color: #2c1810;
    font-weight: 500;
}
.oar-total-hint {
    font-size: 12px;
    color: #a08060;
    font-weight: 400;
    margin-left: 6px;
}
.oar-value--balance {
    color: #8b7355;
}
.oar-order-link {
    color: #8b7355;
    text-decoration: underline;
    font-size: 13px;
}
.oar-order-link:hover {
    color: #5c4a2e;
}

/* ── Footer contact ── */
.oar-card-footer {
    padding: 14px 18px;
    border-top: 1px solid #f0ebe3;
    background: #fafaf8;
}
.oar-change-msg {
    font-size: 13px;
    color: #6b5b3e;
    margin: 0 0 10px;
}
.oar-contact-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.oar-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .18s, color .18s;
}
.oar-contact-btn--phone {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1.5px solid #a5d6a7;
}
.oar-contact-btn--phone:hover {
    background: #c8e6c9;
    color: #1b5e20;
}
.oar-contact-btn--email {
    background: #e3f2fd;
    color: #1565c0;
    border: 1.5px solid #90caf9;
}
.oar-contact-btn--email:hover {
    background: #bbdefb;
    color: #0d47a1;
}
.oar-contact-fallback {
    font-size: 13px;
    color: #8b7355;
    font-style: italic;
}

/* ── Politiques d'annulation ── */
.oar-policies {
    margin-top: 8px;
    background: #fdf8f3;
    border: 1.5px solid #e8e0d5;
    border-radius: 12px;
    padding: 20px 22px;
}
.oar-policies-title {
    font-size: 15px;
    font-weight: 700;
    color: #2c1810;
    margin: 0 0 16px;
}
.oar-policy-block {
    margin-bottom: 16px;
}
.oar-policy-block:last-child {
    margin-bottom: 0;
}
.oar-policy-heading {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #8b7355;
    margin-bottom: 5px;
}
.oar-policy-block p {
    font-size: 13px;
    color: #4a3828;
    line-height: 1.65;
    margin: 0;
}

/* ── Mobile ── */
@media (max-width: 600px) {
    .oar-card-header { padding: 12px 14px 10px; }
    .oar-card-body   { padding: 12px 14px; }
    .oar-card-footer { padding: 12px 14px; }
    .oar-type-name   { font-size: 0.95rem; }
    .oar-contact-btns { flex-direction: column; }
    .oar-contact-btn  { justify-content: center; }
}
