/**
 * Revenge VIP Booking Wizard Styles
 *
 * Dark theme with purple/pink accents
 * Mobile-first responsive design
 * Touch-friendly 44px minimum targets
 *
 * @package    Revenge_VIP_Booking
 * @subpackage Revenge_VIP_Booking/public/css
 */

/* ===================================
   CSS Variables
   =================================== */

:root {
    --rvb-bg: #1a1a1a;
    --rvb-surface: #2a2a2a;
    --rvb-surface-hover: #333333;
    --rvb-text: #ffffff;
    --rvb-text-muted: #999999;
    --rvb-primary: #9b4dca;
    --rvb-primary-hover: #8a3bb8;
    --rvb-secondary: #e91e8c;
    --rvb-secondary-hover: #d11a7d;
    --rvb-success: #22c55e;
    --rvb-warning: #f59e0b;
    --rvb-error: #ef4444;
    --rvb-radius: 8px;
    --rvb-radius-large: 12px;
    --rvb-transition: 0.3s ease;
    --rvb-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    --rvb-shadow-large: 0 4px 16px rgba(0, 0, 0, 0.4);
}

/* ===================================
   Base Wizard Container
   =================================== */

.rvb-wizard {
    background: var(--rvb-bg);
    color: var(--rvb-text);
    min-height: 600px;
    padding: 2rem 1rem 120px;
    position: relative;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@media (min-width: 768px) {
    .rvb-wizard {
        padding: 3rem 2rem 120px;
    }
}

/* ===================================
   Progress Indicator
   =================================== */

.rvb-progress {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--rvb-surface);
}

.rvb-progress-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.rvb-progress-dot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--rvb-transition);
}

.rvb-progress-dot:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.rvb-progress-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--rvb-surface);
    color: var(--rvb-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--rvb-transition);
}

.rvb-progress-label {
    font-size: 0.75rem;
    color: var(--rvb-text-muted);
    transition: var(--rvb-transition);
}

.rvb-progress-dot.active .rvb-progress-number {
    background: linear-gradient(135deg, var(--rvb-primary), var(--rvb-secondary));
    color: white;
    transform: scale(1.2);
}

.rvb-progress-dot.active .rvb-progress-label {
    color: var(--rvb-text);
    font-weight: 600;
}

.rvb-progress-dot.completed .rvb-progress-number {
    background: var(--rvb-success);
    color: white;
}

.rvb-progress-dot.completed .rvb-progress-number::after {
    content: '✓';
}

.rvb-progress-dot:not(:disabled):hover .rvb-progress-number {
    transform: scale(1.1);
}

@media (min-width: 768px) {
    .rvb-progress-dots {
        gap: 1rem;
    }

    .rvb-progress-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .rvb-progress-label {
        font-size: 0.875rem;
    }
}

/* ===================================
   Steps Container
   =================================== */

.rvb-steps {
    position: relative;
    min-height: 400px;
}

.rvb-step {
    display: none;
    animation: fadeIn 0.3s ease;
}

.rvb-step.rvb-step-active {
    display: block;
}

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

.rvb-step.slide-in-right {
    animation: slideInRight 0.3s ease;
}

.rvb-step.slide-in-left {
    animation: slideInLeft 0.3s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===================================
   Step Header
   =================================== */

.rvb-step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.rvb-step-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    background: linear-gradient(135deg, var(--rvb-primary), var(--rvb-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rvb-step-description {
    font-size: 1rem;
    color: var(--rvb-text-muted);
    margin: 0;
}

@media (min-width: 768px) {
    .rvb-step-title {
        font-size: 2rem;
    }
}

/* ===================================
   Night Selection Grid
   =================================== */

.rvb-night-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .rvb-night-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rvb-night-card {
    background: var(--rvb-surface);
    border: 2px solid transparent;
    border-radius: var(--rvb-radius-large);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--rvb-transition);
    min-height: 44px;
}

.rvb-night-card:hover {
    background: var(--rvb-surface-hover);
    border-color: var(--rvb-primary);
    transform: translateY(-2px);
    box-shadow: var(--rvb-shadow-large);
}

.rvb-night-card.selected {
    border-color: var(--rvb-secondary);
    background: linear-gradient(135deg, rgba(155, 77, 202, 0.1), rgba(233, 30, 140, 0.1));
}

.rvb-night-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.rvb-night-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.rvb-night-day {
    font-size: 0.875rem;
    color: var(--rvb-text-muted);
    margin: 0;
}

/* ===================================
   Calendar
   =================================== */

.rvb-calendar-container {
    max-width: 600px;
    margin: 0 auto;
}

.rvb-calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rvb-calendar-month {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.rvb-calendar-nav {
    background: var(--rvb-surface);
    border: none;
    color: var(--rvb-text);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    transition: var(--rvb-transition);
}

.rvb-calendar-nav:hover {
    background: var(--rvb-primary);
}

.rvb-calendar-days {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 0.5rem;
}

.rvb-calendar-date {
    background: var(--rvb-surface);
    border: 2px solid transparent;
    border-radius: var(--rvb-radius);
    padding: 1rem 0.5rem;
    cursor: pointer;
    transition: var(--rvb-transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    min-height: 44px;
}

.rvb-calendar-date:hover {
    background: var(--rvb-surface-hover);
    border-color: var(--rvb-primary);
}

.rvb-calendar-date.selected {
    border-color: var(--rvb-secondary);
    background: linear-gradient(135deg, rgba(155, 77, 202, 0.2), rgba(233, 30, 140, 0.2));
}

.rvb-date-day {
    font-size: 1.25rem;
    font-weight: 600;
}

.rvb-date-weekday {
    font-size: 0.75rem;
    color: var(--rvb-text-muted);
}

/* ===================================
   Booth Cards
   =================================== */

.rvb-booth-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .rvb-booth-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rvb-booth-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.rvb-booth-card {
    background: var(--rvb-surface);
    border: 2px solid transparent;
    border-radius: var(--rvb-radius-large);
    overflow: hidden;
    cursor: pointer;
    transition: var(--rvb-transition);
}

.rvb-booth-card:hover {
    border-color: var(--rvb-primary);
    transform: translateY(-4px);
    box-shadow: var(--rvb-shadow-large);
}

.rvb-booth-card.selected {
    border-color: var(--rvb-secondary);
    box-shadow: 0 0 0 4px rgba(233, 30, 140, 0.2);
}

.rvb-booth-card.unavailable {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
}

.rvb-booth-card.unavailable::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.rvb-booth-card__image {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    background-color: var(--rvb-bg);
}

.rvb-booth-card__image--placeholder {
    background: linear-gradient(135deg, var(--rvb-primary), var(--rvb-secondary));
    opacity: 0.3;
}

.rvb-booth-card__content {
    padding: 1.5rem;
}

.rvb-booth-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.rvb-booth-card__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: var(--rvb-primary);
}

.rvb-booth-card__level {
    background: var(--rvb-secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.rvb-booth-card__location,
.rvb-booth-card__capacity {
    margin: 0 0 0.5rem;
    color: var(--rvb-text-muted);
    font-size: 0.875rem;
}

.rvb-booth-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.rvb-booth-card__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rvb-secondary);
}

.rvb-booth-card__badge {
    background: var(--rvb-error);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===================================
   Party Size Selector
   =================================== */

.rvb-party-size-selector {
    max-width: 500px;
    margin: 0 auto;
}

.rvb-booth-info {
    text-align: center;
    margin-bottom: 2rem;
}

.rvb-booth-info .rvb-booth-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--rvb-primary);
    margin: 0 0 0.5rem;
}

.rvb-capacity-info {
    color: var(--rvb-text-muted);
    margin: 0;
}

.rvb-party-size-input {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.rvb-quantity-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--rvb-surface);
    border: 2px solid var(--rvb-primary);
    color: var(--rvb-text);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--rvb-transition);
}

.rvb-quantity-btn:hover {
    background: var(--rvb-primary);
    transform: scale(1.1);
}

.rvb-party-size-number {
    width: 80px;
    height: 60px;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    background: var(--rvb-surface);
    border: 2px solid var(--rvb-primary);
    border-radius: var(--rvb-radius);
    color: var(--rvb-text);
}

.rvb-capacity-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid var(--rvb-warning);
    border-radius: var(--rvb-radius);
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    gap: 0.75rem;
}

.rvb-warning-icon {
    font-size: 1.5rem;
}

.rvb-warning-text {
    margin: 0;
    color: var(--rvb-warning);
    font-size: 0.875rem;
}

.rvb-price-preview {
    background: var(--rvb-surface);
    border-radius: var(--rvb-radius);
    padding: 1.5rem;
    margin-top: 2rem;
}

.rvb-price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.rvb-price-row:last-child {
    margin-bottom: 0;
}

/* ===================================
   Extras List
   =================================== */

.rvb-extras-list {
    max-width: 600px;
    margin: 0 auto;
}

.rvb-extra-item {
    background: var(--rvb-surface);
    border-radius: var(--rvb-radius);
    padding: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.rvb-extra-info {
    flex: 1;
}

.rvb-extra-name {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.rvb-extra-description {
    font-size: 0.875rem;
    color: var(--rvb-text-muted);
    margin: 0 0 0.5rem;
}

.rvb-extra-price {
    font-size: 1rem;
    color: var(--rvb-secondary);
    font-weight: 600;
}

.rvb-extra-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rvb-extra-quantity-input {
    width: 50px;
    height: 44px;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--rvb-bg);
    border: 2px solid var(--rvb-primary);
    border-radius: var(--rvb-radius);
    color: var(--rvb-text);
}

.rvb-extras-skip {
    text-align: center;
    margin-top: 2rem;
}

/* ===================================
   Contact Form
   =================================== */

.rvb-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.rvb-form-group {
    margin-bottom: 1.5rem;
}

.rvb-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.rvb-required {
    color: var(--rvb-error);
}

.rvb-optional {
    color: var(--rvb-text-muted);
    font-weight: 400;
}

.rvb-form-input,
.rvb-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--rvb-surface);
    border: 2px solid transparent;
    border-radius: var(--rvb-radius);
    color: var(--rvb-text);
    font-size: 1rem;
    transition: var(--rvb-transition);
    min-height: 44px;
}

.rvb-form-input:focus,
.rvb-form-textarea:focus {
    outline: none;
    border-color: var(--rvb-primary);
}

.rvb-form-input.error,
.rvb-form-textarea.error {
    border-color: var(--rvb-error);
}

.rvb-form-error {
    display: none;
    color: var(--rvb-error);
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.rvb-form-checkbox {
    display: flex;
    align-items: flex-start;
}

.rvb-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
}

.rvb-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
}

.rvb-link {
    color: var(--rvb-primary);
    text-decoration: underline;
}

.rvb-link:hover {
    color: var(--rvb-secondary);
}

/* ===================================
   Payment Step
   =================================== */

.rvb-booking-summary {
    background: var(--rvb-surface);
    border-radius: var(--rvb-radius-large);
    padding: 2rem;
    margin-bottom: 2rem;
}

.rvb-summary-heading {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
}

.rvb-summary-section {
    margin-bottom: 2rem;
}

.rvb-summary-section:last-child {
    margin-bottom: 0;
}

.rvb-summary-subheading {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem;
    color: var(--rvb-primary);
}

.rvb-summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.rvb-summary-item:last-child {
    margin-bottom: 0;
}

.rvb-summary-label {
    color: var(--rvb-text-muted);
}

.rvb-summary-value {
    font-weight: 600;
}

.rvb-summary-total {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    font-size: 1.125rem;
}

.rvb-payment-options {
    max-width: 600px;
    margin: 0 auto;
}

.rvb-payment-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
    text-align: center;
}

.rvb-payment-description {
    text-align: center;
    color: var(--rvb-text-muted);
    margin: 0 0 2rem;
}

.rvb-payment-choice {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rvb-payment-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    border-radius: var(--rvb-radius-large);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--rvb-transition);
    text-align: center;
    min-height: 44px;
}

.rvb-payment-btn-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rvb-payment-btn-amount {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.rvb-payment-btn-note {
    font-size: 0.875rem;
    opacity: 0.8;
}

.rvb-payment-secure {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    color: var(--rvb-text-muted);
    font-size: 0.875rem;
}

/* ===================================
   Navigation Buttons
   =================================== */

.rvb-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--rvb-surface);
}

.rvb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    border-radius: var(--rvb-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--rvb-transition);
    border: none;
    min-height: 44px;
}

.rvb-btn-primary {
    background: linear-gradient(135deg, var(--rvb-primary), var(--rvb-secondary));
    color: white;
}

.rvb-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--rvb-shadow-large);
}

.rvb-btn-secondary {
    background: var(--rvb-surface);
    color: var(--rvb-text);
    border: 2px solid var(--rvb-primary);
}

.rvb-btn-secondary:hover {
    background: var(--rvb-surface-hover);
}

.rvb-btn-link {
    background: transparent;
    color: var(--rvb-primary);
    text-decoration: underline;
    padding: 0.5rem 1rem;
}

.rvb-btn-link:hover {
    color: var(--rvb-secondary);
}

/* ===================================
   Summary Bar
   =================================== */

.rvb-summary-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--rvb-surface);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--rvb-primary);
    padding: 1rem;
    box-shadow: var(--rvb-shadow-large);
    z-index: 100;
}

.rvb-summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.rvb-summary-selections {
    font-size: 0.875rem;
    color: var(--rvb-text-muted);
}

.rvb-summary-total {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rvb-summary-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--rvb-secondary);
}

.rvb-summary-expand {
    background: transparent;
    border: 1px solid var(--rvb-primary);
    color: var(--rvb-text);
    padding: 0.5rem 1rem;
    border-radius: var(--rvb-radius);
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--rvb-transition);
}

.rvb-summary-expand:hover {
    background: var(--rvb-surface-hover);
}

.rvb-summary-breakdown {
    background: var(--rvb-bg);
    border-radius: var(--rvb-radius);
    padding: 1rem;
    margin-top: 1rem;
}

.rvb-breakdown-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.rvb-breakdown-total {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1rem;
}

/* ===================================
   Loading & Error States
   =================================== */

.rvb-loading {
    text-align: center;
    padding: 3rem;
}

.rvb-spinner {
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--rvb-primary);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 0.8s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.rvb-error {
    color: var(--rvb-error);
    text-align: center;
    padding: 2rem;
}

.rvb-info-text {
    color: var(--rvb-text-muted);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rvb-info-icon {
    font-size: 1.25rem;
}

/* ===================================
   Celebratory Confirmation (DESIGN-03)
   =================================== */

.rvb-confirmation {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1a3d 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.rvb-confirmation-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #9b4dca 0%, #e91e8c 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.rvb-confirmation-subtitle {
    font-size: 1.5rem;
    color: var(--rvb-text-muted);
    margin: 0 0 2rem;
}

.rvb-confirmation-reference {
    font-size: 1.25rem;
    color: var(--rvb-primary);
    font-weight: 700;
    margin: 1rem 0;
    padding: 1rem 2rem;
    background: rgba(155, 77, 202, 0.1);
    border: 2px solid var(--rvb-primary);
    border-radius: 8px;
    display: inline-block;
}

.rvb-confirmation-details {
    background: var(--rvb-surface);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.rvb-confirmation-details h3 {
    color: var(--rvb-primary);
    margin-top: 0;
}

.rvb-confirmation-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rvb-confirmation-row:last-child {
    border-bottom: none;
}

.rvb-confirmation-label {
    color: var(--rvb-text-muted);
    font-size: 0.875rem;
}

.rvb-confirmation-value {
    font-weight: 600;
    font-size: 0.875rem;
}

/* Confetti canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
}

/* ===================================
   Responsive Adjustments
   =================================== */

@media (max-width: 640px) {
    .rvb-summary-bar {
        padding: 0.75rem;
    }

    .rvb-summary-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .rvb-navigation {
        flex-direction: column-reverse;
    }

    .rvb-btn {
        width: 100%;
    }

    .rvb-confirmation-title {
        font-size: 2rem;
    }

    .rvb-confirmation-subtitle {
        font-size: 1.125rem;
    }

    .rvb-confirmation-reference {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}
