/* ============================================
   cliente.css — Flujo público de clientas
   ============================================ */

.cliente-body {
    min-height: 100vh;
    background: var(--cream);
}

/* ——— Header público ——— */
.cliente-header {
    background: var(--text-dark);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cliente-header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.cliente-header-brand img {
    height: 36px;
    object-fit: contain;
}

.cliente-header-brand-name {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: #fff;
    font-weight: 500;
}

.cliente-header-badge {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    font-weight: 600;
}

/* ——— Step Progress ——— */
.steps-bar {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
}

.steps-track {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
}

.step-node:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 14px;
    left: 55%;
    right: -45%;
    height: 2px;
    background: var(--border);
    z-index: 0;
    transition: background 0.4s;
}
.step-node.completed:not(:last-child)::after { background: var(--gold); }

.step-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--border);
    color: var(--text-light);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}
.step-node.active   .step-circle { background: var(--text-dark); color: #fff; }
.step-node.completed .step-circle { background: var(--gold); color: var(--text-dark); }

.step-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    transition: var(--transition);
    max-width: 80px;
}
.step-node.active    .step-label { color: var(--text-dark); font-weight: 700; }
.step-node.completed .step-label { color: var(--gold-dark); }

/* ——— Main container ——— */
.cliente-main {
    max-width: 760px;
    margin: 0 auto;
    padding: 32px 20px 60px;
}

/* ——— Step Cards ——— */
.step-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    display: none;
    animation: fadeSlideIn 0.35s ease;
}
.step-card.active { display: block; }

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.step-card-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

#step-4 .step-card-title {
    font-size: 1rem;
    line-height: 1.35;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.step-card-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 580px;
}

/* ——— Question Groups ——— */
.question-block {
    padding: 16px 0;
    border-bottom: 1px solid var(--cream-dark);
}
.question-block:last-child { border-bottom: none; }

.question-block-text {
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.question-num {
    font-weight: 700;
    color: var(--gold-dark);
    margin-right: 6px;
}

.sino-opts {
    display: flex;
    gap: 10px;
}

.sino-opt {
    padding: 8px 24px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-mid);
}
.sino-opt:hover { border-color: var(--text-dark); color: var(--text-dark); }
.sino-opt.sel-si {
    background: var(--danger-bg);
    border-color: var(--danger);
    color: var(--danger);
}
.sino-opt.sel-no {
    background: var(--success-bg);
    border-color: var(--success);
    color: var(--success);
}
.sino-opt.sino-sm {
    padding: 4px 14px;
    font-size: 11px;
    border-radius: 16px;
}

/* ——— Eval result box ——— */
.eval-result {
    border-radius: var(--radius);
    padding: 16px 18px;
    margin-top: 20px;
    display: none;
    animation: fadeSlideIn 0.3s ease;
}
.eval-result.show { display: block; }
.eval-result.ok   { background: var(--success-bg); border: 1px solid rgba(58,125,68,0.3); color: var(--success); }
.eval-result.warn { background: var(--warning-bg); border: 1px solid rgba(160,112,0,0.3); color: var(--warning); }

.eval-result-title { font-weight: 700; margin-bottom: 4px; }
.eval-result p { font-size: 13px; line-height: 1.5; }

/* ——— Calendar ——— */
.calendar-wrapper {
    max-width: 360px;
    margin: 0 auto 20px auto;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(43, 38, 36, 0.04);
}

.calendar-head {
    background: #fbfaf8;
    color: var(--text-dark);
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cal-gold {
    color: var(--gold-dark);
    font-size: 11px;
    font-family: var(--font-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cal-month-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 4px;
}

.cal-month-text {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    user-select: none;
    white-space: nowrap;
}

.cal-nav-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    user-select: none;
    line-height: 1;
}

.cal-nav-btn:hover {
    background: var(--cream-dark);
    color: var(--gold-dark);
}

.calendar-grid-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    background: #ffffff;
    padding: 14px 12px;
}

.cal-day-name {
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    padding: 6px 0;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13.5px;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    font-weight: 600;
    background: #ffffff;
    color: var(--text-dark);
    border: 1.5px solid #ded9d0;
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--cream-dark);
    border-color: var(--text-dark);
    transform: scale(1.08);
}

.cal-day.active {
    background: var(--text-dark) !important;
    color: #ffffff !important;
    border-color: var(--text-dark) !important;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(35, 31, 30, 0.25);
}

.cal-day.disabled {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    color: #8c827a !important;
    cursor: default;
    pointer-events: none;
    user-select: none;
    opacity: 0.85;
    font-weight: 500;
    text-decoration: none;
}

.cal-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

/* ——— Selected Date Banner & Slots Container ——— */
#slots-step-container {
    max-width: 440px;
    margin: 0 auto;
}

/* ——— Collision Alert Banner ——— */
.collision-alert-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: #fff8f0;
    border: 1.5px solid #e8b072;
    border-radius: var(--radius-lg);
    padding: 13px 16px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(232, 176, 114, 0.16);
    animation: bounceIn 0.35s ease;
    position: relative;
}

@keyframes bounceIn {
    0% { transform: scale(0.96); opacity: 0; }
    60% { transform: scale(1.02); opacity: 1; }
    100% { transform: scale(1); }
}

.collision-alert-content {
    flex: 1;
}

.collision-alert-title {
    font-size: 12px;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.collision-alert-text {
    font-size: 13px;
    color: #78350f;
    line-height: 1.5;
    font-weight: 500;
}

.collision-alert-close {
    background: transparent;
    border: none;
    font-size: 20px;
    color: #b45309;
    cursor: pointer;
    line-height: 1;
    padding: 0 4px;
    transition: var(--transition);
}

.collision-alert-close:hover {
    color: #78350f;
    transform: scale(1.2);
}

.selected-date-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 16px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(43, 38, 36, 0.04);
    animation: fadeSlideIn 0.3s ease;
    gap: 12px;
}

.selected-date-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.selected-date-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.selected-date-tag {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    font-weight: 700;
    display: block;
    margin-bottom: 1px;
}

.selected-date-title {
    font-family: var(--font-head);
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
}

.btn-change-date {
    background: var(--cream);
    border: 1.5px solid var(--border);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-change-date:hover {
    background: var(--text-dark);
    color: #ffffff;
    border-color: var(--text-dark);
}

/* ——— Time Pills (Mañana / Mediodía / Tarde) ——— */
.pills-section-label {
    margin-bottom: 10px;
}

.pills-section-label label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.time-pills-nav {
    display: flex;
    gap: 8px;
    margin-bottom: 18px;
    overflow-x: auto;
    padding: 2px 0 6px 0;
}

.time-pill {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: #ffffff;
    border: 1.5px solid var(--border);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    min-width: 95px;
}

.time-pill:hover:not(.disabled) {
    border-color: var(--text-dark);
    color: var(--text-dark);
    transform: translateY(-1px);
}

.time-pill.active {
    background: var(--text-dark);
    border-color: var(--text-dark);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(35, 31, 30, 0.15);
}

.time-pill .pill-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 700;
    background: var(--cream-dark);
    color: var(--text-dark);
    transition: var(--transition);
}

.time-pill.active .pill-badge {
    background: var(--gold);
    color: #ffffff;
}

.time-pill.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background: #f8f8f8;
    border-color: #eee;
}

/* ——— Time Slots Grid & Slots ——— */
.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(115px, 1fr));
    gap: 10px;
    margin-top: 10px;
    animation: fadeSlideIn 0.25s ease;
    max-height: 240px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 4px 6px 4px 2px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}

.slots-grid::-webkit-scrollbar {
    width: 6px;
}

.slots-grid::-webkit-scrollbar-track {
    background: transparent;
}

.slots-grid::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 4px;
}

.slots-grid::-webkit-scrollbar-thumb:hover {
    background: var(--gold-dark);
}

.time-slot {
    padding: 12px 14px;
    text-align: center;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    background: #ffffff;
    color: var(--text-dark);
    display: block;
    width: 100%;
    font-family: inherit;
}

.time-slot:hover {
    border-color: var(--gold-dark);
    color: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.time-slot.active {
    background: var(--text-dark) !important;
    color: #ffffff !important;
    border-color: var(--text-dark) !important;
    box-shadow: 0 4px 12px rgba(35, 31, 30, 0.2);
}

.cal-summary-box {
    margin-top: 20px;
    padding: 12px 16px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 13px;
    color: var(--text-mid);
    text-align: center;
}

/* ——— Nav row ——— */
.step-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ——— Success step ——— */
.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--success-bg);
    border: 2px solid rgba(58,125,68,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
    animation: popIn 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

@keyframes popIn {
    from { transform: scale(0); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}

.success-actions-box {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin: 20px 0;
}

.success-actions-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--success);
}

.success-actions-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.8;
}
.success-actions-list li::before { content: '✓ '; color: var(--success); font-weight: 700; }

/* ——— Responsive Media Queries ——— */
@media (max-width: 500px) {
    .step-label {
        font-size: 8.5px;
        max-width: 65px;
    }
    .step-circle {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
    .step-node:not(:last-child)::after {
        top: 12px;
    }
    .steps-bar {
        padding: 12px 10px;
    }
    .cliente-main {
        padding: 16px 12px 40px;
    }
    .step-card {
        padding: 20px 16px;
    }
    .step-card-title {
        font-size: 1.3rem;
    }
    .sino-opt {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* ——— Success Message Modal Styling (Tailwind Emulation) ——— */
#successMessageModal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(17, 24, 39, 0.6); /* bg-gray-900 bg-opacity-60 */
    padding: 1rem;
    backdrop-filter: blur(4px);
    animation: modalFadeIn 0.3s ease-out forwards;
}

#successMessageModal .modal-container {
    background-color: #ffffff;
    border-radius: 1.25rem; /* rounded-2xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    max-width: 28rem; /* max-w-md */
    width: 100%; /* w-full */
    padding: 1.75rem; /* p-6 */
    text-align: center; /* text-center */
    transform: scale(0.95);
    opacity: 0;
    animation: modalScaleIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

#successMessageModal .icon-wrapper {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem; /* h-16 */
    width: 4rem; /* w-16 */
    border-radius: 9999px; /* rounded-full */
    background-color: #d1fae5; /* bg-emerald-100 */
    margin-bottom: 1rem; /* mb-4 */
}

#successMessageModal .icon-wrapper i {
    color: #059669; /* text-emerald-600 */
    font-size: 1.5rem; /* text-2xl */
}

#successMessageModal .modal-title {
    font-size: 1.25rem; /* text-xl */
    font-weight: 700; /* font-bold */
    color: #111827; /* text-gray-900 */
    margin-bottom: 0.5rem; /* mb-2 */
    font-family: var(--font-head);
}

#successMessageModal .modal-desc {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-gray-500 */
    margin-bottom: 1.5rem; /* mb-6 */
    line-height: 1.625; /* leading-relaxed */
}

#successMessageModal .btn-confirm {
    width: 100%; /* w-full */
    background-color: #4f46e5; /* bg-indigo-600 */
    color: #ffffff; /* text-white */
    font-weight: 600; /* font-semibold */
    padding-top: 0.625rem; /* py-2.5 */
    padding-bottom: 0.625rem;
    border-radius: 0.75rem; /* rounded-xl */
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.2), 0 2px 4px -1px rgba(79, 70, 229, 0.1); /* shadow-md */
}

#successMessageModal .btn-confirm:hover {
    background-color: #4338ca; /* hover:bg-indigo-700 */
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.3), 0 4px 6px -2px rgba(79, 70, 229, 0.2); /* hover:shadow-lg */
    transform: translateY(-1px);
}

#successMessageModal .animate-bounce {
    animation: modalBounce 1.2s infinite;
}

@keyframes modalFadeIn {
    to { opacity: 1; }
}

@keyframes modalScaleIn {
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes modalBounce {
    0%, 100% {
        transform: translateY(-8%);
        animation-timing-function: cubic-bezier(0.8,0,1,1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0,0,0.2,1);
    }
}

/* Sticky Header and Stepper Container */
.sticky-header-container {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Questionnaire Pagination & Notice Styles */
.q-page {
    display: none;
    opacity: 0;
}
.q-page.active {
    display: block;
    opacity: 1;
}
.q-page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1.5px solid var(--border);
    gap: 15px;
}
.q-page-nav .btn {
    min-width: 120px;
}

/* Page Transitions */
.anim-slide-right {
    animation: slideInRight 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.anim-slide-left {
    animation: slideInLeft 0.4s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translate3d(30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translate3d(-30px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Notice Card Styling */
.q-notice-box {
    background: var(--warning-bg);
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 10px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(197, 168, 128, 0.05);
}

.q-notice-icon {
    font-size: 2.2rem;
    color: var(--gold-dark);
    margin-bottom: 16px;
    text-align: center;
}

.q-notice-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
}

.q-notice-text {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.q-notice-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-top: 1px dashed var(--border);
    padding-top: 20px;
}

.q-notice-list li {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.55;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.q-notice-list li i {
    color: var(--gold-dark);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive Agendamiento Mobile */
@media (max-width: 600px) {
    #step-4 .step-card-title {
        font-size: 1rem;
    }
    .selected-date-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 14px;
    }
    .selected-date-title {
        font-size: 14px;
    }
    .btn-change-date {
        align-self: flex-start;
        width: 100%;
        justify-content: center;
    }
    .time-pills-nav {
        gap: 6px;
    }
    .time-pill {
        padding: 8px 10px;
        font-size: 12px;
        gap: 6px;
    }
    .slots-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        max-height: 220px;
    }
}

/* Coordinación Asistida (Fallback sin agenda en línea) */
.assisted-booking-box {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(43, 38, 36, 0.04);
}

.assisted-booking-title {
    font-family: var(--font-head);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.assisted-booking-desc {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 20px;
}

.assisted-contact-summary {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.assisted-summary-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.assisted-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    gap: 8px;
}

.assisted-label {
    color: var(--text-light);
}

.assisted-val {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    word-break: break-word;
}
