/* ========================================================
   ONAM SADHYA BOOKING & UPI APPS PAYMENT STYLES
   Cafe Fraby - Premium Festive Aesthetics
   1-Click UPI Apps (Google Pay, PhonePe, Paytm, BHIM)
   WhatsApp Payment Screenshot Attachment Flow
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Marcellus&display=swap');

:root {
    --onam-bg: #FAF5E8;
    --onam-card-bg: #FFFFFF;
    --onam-forest: #1A3E26;
    --onam-forest-dark: #122C1B;
    --onam-forest-light: #2A5A3B;
    --onam-sage: #8DA893;
    --onam-sage-btn: #7C9881;
    --onam-sage-hover: #67846C;
    --onam-gold: #D4A346;
    --onam-gold-light: #FBF6EB;
    --onam-gold-border: #E8D2A7;
    --onam-border-dash: #E4CCA1;
    --onam-text-dark: #2B332C;
    --onam-text-muted: #6B7B70;
    --onam-text-light: #8E9B92;
    --onam-red: #D9534F;
    --onam-card-shadow: 0 4px 20px rgba(42, 60, 48, 0.04);
    --onam-card-radius: 18px;
    --onam-font-title: 'Marcellus', 'Playfair Display', Georgia, serif;
    --onam-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

body.onam-page {
    background-color: var(--onam-bg) !important;
    background-image: radial-gradient(circle at 10% 20%, rgba(212, 163, 70, 0.03) 0%, transparent 40%),
                      radial-gradient(circle at 90% 80%, rgba(26, 62, 38, 0.03) 0%, transparent 40%) !important;
    font-family: var(--onam-font-body) !important;
    color: var(--onam-text-dark) !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

/* Header / Nav Topbar */
.onam-topbar {
    background: rgba(250, 245, 232, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 62, 38, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 12px 20px;
}

.onam-topbar-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.onam-brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--onam-forest);
}

.onam-brand-link img {
    height: 38px;
    width: auto;
}

.onam-brand-link span {
    font-family: var(--onam-font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--onam-forest);
}

.onam-nav-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--onam-forest);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(26, 62, 38, 0.06);
    transition: all 0.2s ease;
}

.onam-nav-back:hover {
    background: rgba(26, 62, 38, 0.12);
    color: var(--onam-forest-dark);
}

/* Main Container */
.onam-booking-container {
    max-width: 620px;
    margin: 0 auto;
    padding: 30px 16px 60px;
}

/* Festive Header Area */
.onam-header {
    text-align: center;
    margin-bottom: 24px;
}

.onam-subheading-tag {
    font-family: var(--onam-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--onam-forest);
    margin-bottom: 6px;
    opacity: 0.85;
}

.onam-main-title {
    font-family: var(--onam-font-title);
    font-size: 32px;
    font-weight: 700;
    color: var(--onam-forest);
    line-height: 1.2;
    margin: 0 0 8px;
    letter-spacing: -0.5px;
}

.onam-subtitle {
    font-size: 13.5px;
    color: var(--onam-text-muted);
    margin: 0 0 14px;
    font-weight: 400;
}

/* 5 Festive Dots */
.onam-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-bottom: 20px;
}

.onam-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
}

.onam-dot.d-green { background-color: #1A3E26; }
.onam-dot.d-yellow { background-color: #EBB036; }
.onam-dot.d-red { background-color: #C84630; }

/* Step Tracker */
.onam-steps-tracker {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px auto 26px;
    max-width: 240px;
}

.step-node {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1.5px solid #C4D3C7;
    background: transparent;
    color: var(--onam-text-muted);
}

.step-node.active {
    background: var(--onam-forest);
    border-color: var(--onam-forest);
    color: #FFFFFF;
    box-shadow: 0 3px 8px rgba(26, 62, 38, 0.25);
}

.step-node.completed {
    background: #4B7757;
    border-color: #4B7757;
    color: #FFFFFF;
}

.step-line {
    flex: 1;
    height: 1.5px;
    background: #D4E0D6;
    margin: 0 8px;
}

.step-line.filled {
    background: var(--onam-forest);
}

/* Category Headers for Dine-in & Takeaway */
.category-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 12px;
}

.category-dinein-bar {
    background: #EAF4EC;
    border-left: 4px solid var(--onam-forest);
}

.category-takeaway-bar {
    background: #F8F1E2;
    border-left: 4px solid var(--onam-gold);
}

.category-bar-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--onam-forest);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-takeaway-bar .category-bar-title {
    color: #5F4512;
}

.category-bar-price {
    font-size: 13px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
    color: var(--onam-forest);
}

.category-takeaway-bar .category-bar-price {
    color: #8C6A27;
}

/* Cards Design */
.onam-card {
    background: var(--onam-card-bg);
    border-radius: var(--onam-card-radius);
    padding: 22px 24px;
    margin-bottom: 18px;
    box-shadow: var(--onam-card-shadow);
    border: 1px solid rgba(220, 228, 222, 0.6);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.onam-card-title {
    font-family: var(--onam-font-title);
    font-size: 20px;
    font-weight: 700;
    color: var(--onam-forest);
    margin: 0 0 4px;
    letter-spacing: -0.2px;
}

.onam-card-desc {
    font-size: 13px;
    color: var(--onam-text-muted);
    margin: 0 0 16px;
    line-height: 1.45;
}

/* Inputs & Form Controls */
.onam-input-group {
    margin-bottom: 14px;
}

.onam-input-group:last-child {
    margin-bottom: 0;
}

.onam-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--onam-forest);
    margin-bottom: 6px;
}

.onam-input,
.onam-textarea,
.onam-select {
    width: 100%;
    padding: 11px 15px;
    font-size: 14px;
    font-family: var(--onam-font-body);
    border: 1px solid #DFE6E1;
    border-radius: 10px;
    background-color: #FAFCFA;
    color: var(--onam-text-dark);
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.onam-input:focus,
.onam-textarea:focus,
.onam-select:focus {
    border-color: var(--onam-forest);
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(26, 62, 38, 0.08);
}

.onam-input::placeholder,
.onam-textarea::placeholder {
    color: #A6B4AA;
    font-size: 13.5px;
}

.onam-row-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 480px) {
    .onam-row-2col {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Date Selection Option Cards */
.onam-option-card {
    border: 1px solid #DFE8E2;
    border-radius: 12px;
    padding: 13px 15px;
    margin-bottom: 10px;
    background: #FFFFFF;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.onam-option-card:hover {
    border-color: var(--onam-sage);
    background: #FDFEFD;
}

.onam-option-card.selected {
    border-color: var(--onam-forest);
    background: #F8FAF8;
    box-shadow: 0 2px 10px rgba(26, 62, 38, 0.06);
}

.onam-option-card.takeaway-card.selected {
    border-color: #C9A76E;
    background: #FAF7F0;
}

.option-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Custom Checkbox */
.custom-checkbox {
    width: 20px;
    height: 20px;
    border: 1.5px solid #BAC9BE;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    background: #FFFFFF;
}

.onam-option-card.selected .custom-checkbox,
.dashed-option.selected .custom-checkbox {
    background: var(--onam-forest);
    border-color: var(--onam-forest);
}

.onam-option-card.takeaway-card.selected .custom-checkbox {
    background: #8C6A27;
    border-color: #8C6A27;
}

.custom-checkbox i {
    color: #FFFFFF;
    font-size: 11px;
    display: none;
}

.onam-option-card.selected .custom-checkbox i,
.dashed-option.selected .custom-checkbox i {
    display: block;
}

.option-info {
    flex: 1;
}

.option-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--onam-forest);
    margin: 0 0 2px;
}

.takeaway-card .option-title {
    color: #4A3A1C;
}

.option-sub {
    font-size: 12px;
    color: var(--onam-text-muted);
    margin: 0;
}

.option-price-tag {
    font-size: 12px;
    font-weight: 700;
    color: var(--onam-forest);
    background: #EAF2EC;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
}

.takeaway-card .option-price-tag {
    background: #F6EBD4;
    color: #7D5D18;
}

/* Quantity and Slot Selector */
.option-controls {
    display: none;
    padding-top: 10px;
    border-top: 1px dashed #E2ECE4;
    margin-top: 4px;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.onam-option-card.selected .option-controls {
    display: flex;
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--onam-forest);
}

.takeaway-card .qty-label {
    color: #5F4512;
}

.qty-control {
    display: inline-flex;
    align-items: center;
    background: #F1F6F2;
    border-radius: 8px;
    padding: 3px;
    border: 1px solid #D7E3D9;
}

.takeaway-card .qty-control {
    background: #F9F3E6;
    border-color: #E2CCA1;
}

.qty-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: none;
    background: #FFFFFF;
    color: var(--onam-forest);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: background 0.15s ease;
}

.qty-btn:hover {
    background: var(--onam-forest);
    color: #FFFFFF;
}

.takeaway-card .qty-btn:hover {
    background: #8C6A27;
    color: #FFFFFF;
}

.qty-value {
    min-width: 28px;
    text-align: center;
    font-weight: 700;
    font-size: 13.5px;
    color: var(--onam-forest);
}

.takeaway-card .qty-value {
    color: #5F4512;
}

.slot-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slot-select {
    padding: 5px 10px;
    font-size: 12px;
    font-family: var(--onam-font-body);
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #D2DFD5;
    background: #FFFFFF;
    color: var(--onam-forest);
    outline: none;
}

.takeaway-card .slot-select {
    border-color: #E2CCA1;
    color: #5F4512;
}

/* Dashed Booth Reservation Card */
.dashed-option {
    border: 1.5px dashed var(--onam-border-dash);
    background: var(--onam-gold-light);
    border-radius: 12px;
    padding: 13px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 10px;
}

.dashed-option:hover {
    background: #F9F1E2;
    border-color: #D8BD8E;
}

.dashed-option.selected {
    background: #F6EDDC;
    border-color: #C9A76E;
}

.dashed-option .option-title {
    font-size: 14px;
    font-weight: 700;
    color: #4A3C23;
}

.dashed-option .option-sub {
    font-size: 11.5px;
    color: #7D6F55;
    line-height: 1.4;
    margin-top: 2px;
}

/* Order Summary Box with Counts Badges */
.summary-empty-msg {
    font-size: 13.5px;
    color: var(--onam-text-muted);
    margin: 0;
    padding: 4px 0;
}

.summary-details {
    display: none;
    font-size: 13.5px;
}

.summary-count-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #E2ECE4;
}

.count-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.count-badge-dinein {
    background: #E8F4EC;
    color: var(--onam-forest);
    border: 1px solid #C8DEC9;
}

.count-badge-takeaway {
    background: #FAF2E3;
    color: #7D5D18;
    border: 1px solid #E8D3AA;
}

.summary-section-label {
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 10px 0 4px;
    color: var(--onam-forest);
}

.summary-section-label.takeaway-label {
    color: #7D5D18;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4px 0;
    color: var(--onam-text-dark);
}

.summary-row.subtotal-row {
    border-top: 1px dashed #E2ECE4;
    margin-top: 8px;
    padding-top: 8px;
    font-weight: 600;
    color: #4A5B4E;
}

.summary-row.gst-row {
    color: #8C6A27;
    font-size: 13px;
    font-weight: 500;
}

.summary-row.total-row {
    border-top: 1.5px solid #E5EDE7;
    margin-top: 8px;
    padding-top: 10px;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--onam-forest);
}

.summary-row.booth-note {
    font-size: 12px;
    color: #8C6A27;
    background: #FDF9F0;
    padding: 6px 10px;
    border-radius: 6px;
    margin-top: 6px;
}

/* Main Action Button */
.onam-btn-primary {
    display: block;
    width: 100%;
    background-color: var(--onam-sage-btn);
    color: #FFFFFF;
    border: none;
    border-radius: 12px;
    padding: 14px 20px;
    font-family: var(--onam-font-body);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(124, 152, 129, 0.3);
    transition: all 0.25s ease;
    text-decoration: none;
    box-sizing: border-box;
}

.onam-btn-primary:hover {
    background-color: var(--onam-sage-hover);
    color: #FFFFFF;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(103, 132, 108, 0.4);
}

.onam-btn-primary:disabled {
    background-color: #B4C4B7;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.onam-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #FFFFFF;
    color: var(--onam-forest);
    border: 1.5px solid #C9D8CD;
    border-radius: 12px;
    padding: 12px 18px;
    font-family: var(--onam-font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.onam-btn-secondary:hover {
    background: #F4F8F5;
    border-color: var(--onam-forest);
    color: var(--onam-forest);
}

/* UPI Apps Grid */
.upi-apps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.upi-app-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1.5px solid #E1ECE3;
    background: #FFFFFF;
    text-decoration: none;
    color: var(--onam-text-dark);
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s ease;
    cursor: pointer;
}

.upi-app-btn:hover {
    border-color: var(--onam-forest);
    background: #F8FAF8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 62, 38, 0.08);
}

.upi-app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #FFFFFF;
}

.icon-gpay { background: #4285F4; }
.icon-phonepe { background: #5F259F; }
.icon-paytm { background: #00BAF2; }
.icon-bhim { background: #00796B; }

.btn-copy-upi {
    background: none;
    border: none;
    color: #93732B;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    transition: background 0.15s;
}

.btn-copy-upi:hover {
    background: #F2EADA;
}

/* Security Trust Footer */
.gateway-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 14px;
    margin-top: 16px;
    border-top: 1px dashed #E2ECE4;
    font-size: 11.5px;
    color: var(--onam-text-muted);
}

.gateway-trust-bar span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.gateway-badge-secure {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 3px 8px;
    border-radius: 4px;
}

/* WhatsApp Screenshot Upload Card */
.whatsapp-screenshot-card {
    background: #EDF8EF;
    border: 1.5px solid #B8E4C0;
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 20px;
    text-align: left;
}

.wa-step-guide {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 10px 14px;
    margin: 10px 0 14px;
    border: 1px solid #D2EBD7;
    font-size: 12.5px;
    color: #244C2D;
    line-height: 1.5;
}

.wa-step-guide ol {
    margin: 4px 0 0;
    padding-left: 18px;
}

.wa-step-guide li {
    margin-bottom: 3px;
}

.screenshot-preview-wrapper {
    display: none;
    margin: 10px 0;
    text-align: center;
    background: #FFFFFF;
    padding: 10px;
    border-radius: 8px;
    border: 1px dashed #A6D9AF;
}

.screenshot-preview-img {
    max-width: 140px;
    max-height: 180px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto 6px;
}

.screenshot-upload-btn-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #FFFFFF;
    color: #1A5427;
    border: 1.5px dashed #64BD76;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 12px;
}

.screenshot-upload-btn-label:hover {
    background: #F4FAF5;
    border-color: #25D366;
}

.btn-whatsapp-confirm {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 700;
    font-size: 14.5px;
    padding: 13px 22px;
    border-radius: 30px;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.btn-whatsapp-confirm:hover {
    background: #1EBE5D;
    color: #FFFFFF;
    transform: translateY(-1px);
}

/* Automatic Verification Modal Overlay */
.verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 44, 27, 0.75);
    backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verification-overlay.active {
    opacity: 1;
    visibility: visible;
}

.verification-modal {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 32px 28px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(220, 228, 222, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verification-overlay.active .verification-modal {
    transform: scale(1);
}

.verif-spinner {
    width: 56px;
    height: 56px;
    border: 4px solid #E2EFE5;
    border-top: 4px solid var(--onam-forest);
    border-radius: 50%;
    margin: 0 auto 18px;
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.verif-title {
    font-family: var(--onam-font-title);
    font-size: 22px;
    font-weight: 700;
    color: var(--onam-forest);
    margin: 0 0 8px;
}

.verif-status-text {
    font-size: 13.5px;
    color: var(--onam-text-muted);
    margin: 0 0 16px;
    line-height: 1.4;
}

.verif-steps-progress {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
    background: #F8FAF8;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid #E8EFE9;
    font-size: 12.5px;
    color: #4A5B4E;
}

.verif-step-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.verif-step-item i {
    font-size: 13px;
    width: 16px;
    text-align: center;
}

.verif-step-item.completed {
    color: #2E7D32;
    font-weight: 600;
}

.verif-step-item.active {
    color: var(--onam-forest);
    font-weight: 700;
}

/* Step 3: Success Screen */
.confirmation-box {
    text-align: center;
    padding: 10px 0;
}

.success-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #E8F4EB;
    color: #2E7D32;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 16px;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.15);
}

.booking-ref-badge {
    display: inline-block;
    background: #F3EBD9;
    color: #634C19;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.receipt-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0 24px;
    text-align: left;
    font-size: 13.5px;
}

.receipt-table tr {
    border-bottom: 1px solid #EEF3EF;
}

.receipt-table td {
    padding: 9px 4px;
}

.receipt-table td:first-child {
    color: var(--onam-text-muted);
    width: 42%;
}

.receipt-table td:last-child {
    font-weight: 600;
    color: var(--onam-text-dark);
    text-align: right;
}

/* Toast Message */
.onam-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--onam-forest-dark);
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    z-index: 9999;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    pointer-events: none;
}

.onam-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Footer Info */
.onam-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 12.5px;
    color: var(--onam-text-muted);
    letter-spacing: 0.2px;
}

.onam-footer a {
    color: var(--onam-forest);
    text-decoration: none;
    font-weight: 600;
}

.onam-footer a:hover {
    text-decoration: underline;
}

/* Keyframe Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in-step {
    animation: fadeIn 0.35s ease forwards;
}

/* Responsive Tweaks */
@media (max-width: 480px) {
    .onam-main-title {
        font-size: 26px;
    }
    
    .onam-card {
        padding: 18px 16px;
        border-radius: 15px;
    }
    
    .upi-apps-grid {
        grid-template-columns: 1fr;
    }
    
    .onam-booking-container {
        padding: 20px 12px 40px;
    }
}
