/* ========================================
   PREMIUM BOOKING WIZARD STYLES
   ======================================== */

/* ----- WIZARD SECTION ----- */
.wizard-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f5f0 0%, #fefcf7 100%);
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.wizard-bg-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.decor-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
}

.decor-1 {
    width: 600px;
    height: 600px;
    background: var(--gold);
    top: -200px;
    right: -200px;
}

.decor-2 {
    width: 400px;
    height: 400px;
    background: var(--gold);
    bottom: -100px;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.decor-3 {
    width: 500px;
    height: 500px;
    background: var(--charcoal);
    top: 50%;
    right: 5%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.wizard-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* ----- WIZARD CARD ----- */
.wizard-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 50px;
    position: relative;
    z-index: 1;
}

.wizard-header {
    margin-bottom: 40px;
    text-align: center;
}

.wizard-header h1 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.wizard-header h1 span {
    color: var(--gold);
}

.wizard-header p {
    color: #666;
    font-size: 1.05rem;
}

/* ----- STEP PROGRESS BAR ----- */
.wizard-steps-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 50px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 20px;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    transition: var(--transition);
}

.step-indicator .step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #999;
    transition: var(--transition);
    font-weight: 600;
}

.step-indicator span {
    font-size: 0.8rem;
    color: #999;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.step-indicator.active .step-icon {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.step-indicator.active span {
    color: var(--gold);
    font-weight: 700;
}

.step-indicator.completed .step-icon {
    background: #4caf50;
    color: #fff;
}

.step-indicator.completed span {
    color: #4caf50;
    font-weight: 700;
}

.step-line {
    width: 40px;
    height: 2px;
    background: #ddd;
    margin: 0 10px;
    transition: var(--transition);
}

.step-indicator.completed ~ .step-line {
    background: #4caf50;
}

/* ----- STEP PANELS ----- */
.wizard-steps-container {
    position: relative;
    min-height: 300px;
    margin-bottom: 40px;
    transition: min-height 0.3s ease;
}

.step-panel {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: slideOut 0.5s ease forwards;
}

.step-panel.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: slideIn 0.5s ease forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-30px);
    }
}

.step-content-inner {
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-heading {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    opacity: 0.5;
}

.step-heading h2 {
    font-size: 1.8rem;
    margin-bottom: 4px;
    color: var(--charcoal);
}

.step-heading p {
    color: #666;
    font-size: 0.95rem;
}

/* ----- FORM ELEMENTS ----- */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
    font-family: 'Inter', sans-serif;
}

/* ----- STEP 1: DATE & AVAILABILITY ----- */
.wizard-check-btn {
    background: var(--gold);
    color: #fff;
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

.wizard-check-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.availability-result {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.availability-result.available {
    background: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.availability-result.unavailable {
    background: #ffebee;
    color: #c62828;
    border-left: 4px solid #ef5350;
}

.availability-result i {
    font-size: 1.4rem;
}

/* ----- STEP 2: GUEST CAPACITY ----- */
.guest-display {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f5f0 0%, #fefcf7 100%);
    border-radius: 20px;
}

.guest-count-big {
    font-size: 4rem;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 8px;
}

.guest-label {
    color: #666;
    font-size: 1.05rem;
    font-weight: 500;
}

.slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.slider-min,
.slider-max {
    color: #999;
    font-weight: 600;
    font-size: 0.9rem;
    min-width: 45px;
    text-align: center;
}

.guest-slider {
    flex: 1;
    height: 6px;
    border-radius: 3px;
    background: #ddd;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.guest-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
    transition: var(--transition);
}

.guest-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.6);
}

.guest-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
    transition: var(--transition);
}

.guest-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.6);
}

.slider-track-bar {
    height: 6px;
    background: #ddd;
    border-radius: 3px;
    position: relative;
    margin-bottom: 30px;
    overflow: hidden;
}

.slider-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 3px;
    transition: width 0.2s ease;
}

.capacity-hints {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}

.capacity-badge {
    padding: 16px;
    border-radius: 12px;
    border: 2px solid #ddd;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    background: #f9f9f9;
}

.capacity-badge:hover {
    border-color: var(--gold);
    background: #fffbf5;
}

.capacity-badge.active {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
}

.capacity-badge i {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.capacity-badge strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.capacity-badge span {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

/* ----- STEP 3: PACKAGE SELECTION ----- */
.pkg-type-toggle {
    display: flex;
    gap: 12px;
    margin-bottom: 40px;
    background: #f0f0f0;
    padding: 8px;
    border-radius: 14px;
}

.pkg-toggle-btn {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    text-align: center;
    color: #666;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.pkg-toggle-btn.active {
    background: #fff;
    color: var(--charcoal);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.pkg-toggle-btn i {
    font-size: 1.3rem;
    color: var(--gold);
}

.pkg-toggle-btn strong {
    display: block;
    font-size: 0.95rem;
}

.pkg-toggle-btn span {
    display: block;
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

/* ----- COMBINATION PACKAGES ----- */
.combo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 30px;
}

.combo-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    cursor: pointer;
    overflow: hidden;
}

.combo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.02) 0%, rgba(201, 168, 76, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.combo-card:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.15);
    transform: translateY(-4px);
}

.combo-card:hover::before {
    opacity: 1;
}

.combo-card.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.04);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.2);
}

.combo-card.selected::after {
    content: '✓';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.combo-card.featured {
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(201, 168, 76, 0.2);
    transform: scale(1.05);
}

.combo-ribbon {
    position: absolute;
    top: 12px;
    left: -28px;
    background: var(--gold);
    color: #fff;
    padding: 4px 40px;
    transform: rotate(-45deg);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.combo-icon {
    font-size: 2.8rem;
    margin-bottom: 12px;
    color: var(--gold);
}

.combo-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--charcoal);
}

.combo-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 16px;
}

.combo-includes {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
    text-align: left;
}

.combo-includes li {
    padding: 6px 0;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.combo-includes li i {
    color: #4caf50;
    font-size: 0.75rem;
}

.combo-capacity {
    background: #f9f9f9;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.combo-capacity i {
    color: var(--gold);
}

/* ----- CUSTOM SELECTION ----- */
.custom-note {
    background: #fffbf5;
    border-left: 4px solid var(--gold);
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 28px;
    color: #666;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-note i {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.custom-item {
    position: relative;
    cursor: pointer;
}

.custom-item input {
    display: none;
}

.custom-item input:checked + .custom-item-inner {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.06);
    box-shadow: 0 4px 12px rgba(201, 168, 76, 0.15);
}

.custom-item input:checked + .custom-item-inner::after {
    content: '✓';
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    background: var(--gold);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.custom-item-inner {
    padding: 18px;
    border: 2px solid #ddd;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    background: #f9f9f9;
    position: relative;
}

.custom-item-inner:hover {
    border-color: var(--gold);
    background: #fffbf5;
}

.custom-item-inner i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.custom-item-inner strong {
    display: block;
    color: var(--charcoal);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.custom-item-inner span {
    display: block;
    color: #999;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.custom-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.95rem;
}

/* ----- STEP 4: FINAL SUMMARY ----- */
.final-summary-box {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.final-summary-box h4 {
    margin-bottom: 16px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 10px;
}

.final-summary-box h4 i {
    color: var(--gold);
}

/* ----- WIZARD NAVIGATION ----- */
.wizard-step-error {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff3f3;
    border: 1.5px solid #ef5350;
    border-left: 4px solid #ef5350;
    color: #c62828;
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    animation: slideInError 0.25s ease;
}

.wizard-step-error i {
    font-size: 1.1rem;
    flex-shrink: 0;
}

@keyframes slideInError {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%  { transform: translateX(-8px); }
    40%  { transform: translateX(8px); }
    60%  { transform: translateX(-5px); }
    80%  { transform: translateX(5px); }
}

.wizard-card.shake {
    animation: shake 0.45s ease;
}

.wizard-nav {
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.wizard-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.wizard-btn-back {
    background: #f0f0f0;
    color: var(--charcoal);
    border: 2px solid #ddd;
}

.wizard-btn-back:hover {
    background: #e0e0e0;
    border-color: #999;
}

.wizard-btn-next,
.wizard-btn-submit {
    background: var(--gold);
    color: #fff;
    box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}

.wizard-btn-next:hover,
.wizard-btn-submit:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

.wizard-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ----- SUMMARY PANEL (SIDE) ----- */
.wizard-summary-panel {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    position: sticky;
    top: 120px;
    max-height: 600px;
    display: flex;
    flex-direction: column;
}

.summary-header {
    background: linear-gradient(135deg, var(--charcoal) 0%, #2a2a2a 100%);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.summary-header i {
    color: var(--gold);
    font-size: 1.4rem;
}

.summary-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.summary-empty {
    text-align: center;
    color: #999;
    padding: 40px 20px;
}

.summary-empty i {
    font-size: 3rem;
    color: #ddd;
    margin-bottom: 12px;
}

.summary-empty p {
    font-size: 0.85rem;
}

.summary-item {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-name {
    color: #666;
    font-size: 0.85rem;
    flex: 1;
}

.summary-item-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.summary-total {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.summary-total span {
    opacity: 0.9;
}

.summary-total strong {
    font-size: 1.3rem;
}

.summary-contact {
    background: #f9f9f9;
    padding: 16px;
    text-align: center;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.summary-contact p {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
}

.summary-call-btn,
.summary-wa-btn {
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: var(--transition);
}

.summary-call-btn {
    background: #34b7f1;
    color: #fff;
}

.summary-call-btn:hover {
    background: #1fa3da;
}

.summary-wa-btn {
    background: #25d366;
    color: #fff;
}

.summary-wa-btn:hover {
    background: #1ebe5c;
}

/* ----- MOBILE SUMMARY TOGGLE ----- */
.mobile-summary-toggle {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    background: var(--gold);
    color: #fff;
    padding: 12px 16px;
    border-radius: 50px;
    z-index: 100;
    cursor: pointer;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.mobile-summary-toggle:hover {
    transform: scale(1.08);
}

.mobile-total-badge {
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* ----- SUCCESS OVERLAY ----- */
.booking-success-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(2px);
    padding: 20px;
}

.booking-success-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.success-modal {
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4caf50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 20px;
    animation: scaleIn 0.4s ease;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.success-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--charcoal);
}

.success-modal p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.success-ref {
    background: #f9f9f9;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.success-ref p {
    font-size: 0.88rem;
    color: #555;
    margin: 4px 0;
    line-height: 1.5;
}

.success-ref p strong {
    color: var(--charcoal);
    font-weight: 600;
    min-width: 120px;
    display: inline-block;
}

.success-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.success-actions .btn {
    flex: 1;
    min-width: 150px;
}

.success-dismiss {
    width: 100%;
    background: none;
    border: none;
    color: #999;
    font-size: 0.8rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: inherit;
}

.success-dismiss:hover {
    color: var(--charcoal);
    background: #f5f5f5;
}

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
    .wizard-wrapper {
        grid-template-columns: 1fr;
    }

    .wizard-summary-panel {
        position: static;
        max-height: none;
        margin-top: 30px;
    }

    .wizard-card {
        padding: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .combo-cards {
        grid-template-columns: 1fr;
    }

    .combo-card.featured {
        transform: scale(1);
    }

    .wizard-steps-bar {
        gap: 0;
    }

    .step-line {
        width: 20px;
        margin: 0 5px;
    }

    .step-indicator span {
        font-size: 0.7rem;
    }
}

@media (max-width: 768px) {
    .wizard-section {
        padding: 80px 16px 40px;
    }

    .wizard-card {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .wizard-header h1 {
        font-size: 1.8rem;
    }

    .wizard-header p {
        font-size: 0.9rem;
    }

    .step-num {
        font-size: 2rem;
    }

    .step-heading h2 {
        font-size: 1.3rem;
    }

    .step-heading {
        gap: 12px;
        margin-bottom: 20px;
    }

    .wizard-steps-container {
        min-height: 600px;
    }

    .wizard-steps-bar {
        gap: 0;
        padding: 12px;
        margin-bottom: 30px;
    }

    .step-indicator .step-icon {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .step-indicator span {
        display: none;
    }

    .step-line {
        width: 16px;
        margin: 0 4px;
    }

    .pkg-toggle-btn {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .pkg-toggle-btn strong {
        font-size: 0.8rem;
    }

    .pkg-toggle-btn span {
        display: none;
    }

    .combo-cards {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .custom-items-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }

    .wizard-nav {
        flex-direction: column;
        gap: 12px;
    }

    .wizard-btn {
        padding: 12px 20px;
        font-size: 0.85rem;
    }

    .mobile-summary-toggle {
        display: flex;
    }

    .wizard-summary-panel {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        max-height: 50vh;
        border-radius: 30px 30px 0 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .wizard-summary-panel.show {
        transform: translateY(0);
    }

    .summary-body {
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .wizard-section {
        padding: 70px 12px 40px;
    }

    .wizard-card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .wizard-header h1 {
        font-size: 1.4rem;
    }

    .step-heading {
        flex-direction: column;
    }

    .step-num {
        font-size: 1.5rem;
    }

    .step-heading h2 {
        font-size: 1.1rem;
    }

    .wizard-steps-container {
        min-height: auto;
    }

    .guest-count-big {
        font-size: 2.5rem;
    }

    .capacity-hints {
        grid-template-columns: 1fr;
    }

    .combo-ribbon {
        font-size: 0.65rem;
        padding: 2px 30px;
    }

    .combo-card h3 {
        font-size: 1.1rem;
    }

    .combo-price {
        font-size: 1.4rem;
    }

    .custom-items-grid {
        grid-template-columns: 1fr;
    }

    .wizard-nav {
        flex-direction: column;
    }

    .wizard-btn {
        width: 100%;
    }

    .success-modal {
        padding: 30px 20px;
        border-radius: 20px;
    }

    .success-modal h2 {
        font-size: 1.4rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }
}
