/**
 * Web Ajansınız Order Wizard & Multi-Package Styling
 * Matches dark cyberpunk aesthetic of antigravity-tech theme
 */

.waj-checkout-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #f8fafc;
}

/* ================= 1. MULTI-PACKAGE HERO ================= */
.waj-single-package-hero {
    text-align: center;
    margin-bottom: 70px;
}

.waj-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    border: 1px solid rgba(0, 242, 254, 0.3);
    margin-bottom: 22px;
    text-transform: uppercase;
}

.waj-hero-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: #00f2fe;
    border-radius: 50%;
    box-shadow: 0 0 10px #00f2fe;
    animation: wajPulse 1.8s infinite;
}

@keyframes wajPulse {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.4); opacity: 1; box-shadow: 0 0 16px #00f2fe; }
    100% { transform: scale(0.9); opacity: 0.8; }
}

.waj-hero-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #00f2fe 50%, #93c5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.waj-hero-subtitle {
    font-size: 1.15rem;
    color: #94a3b8;
    max-width: 850px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* ================= 5-PACKAGE COMPARISON GRID ================= */
.waj-packages-grid-5 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin: 40px auto;
    text-align: left;
}

@media (min-width: 1200px) {
    .waj-packages-grid-5 {
        grid-template-columns: repeat(5, 1fr);
        gap: 16px;
    }
}

.waj-pkg-card {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.waj-pkg-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 242, 254, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 242, 254, 0.15);
}

.waj-pkg-card.featured-card {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid #f59e0b;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.25);
    transform: scale(1.02);
    z-index: 2;
}

.waj-pkg-card.featured-card:hover {
    transform: scale(1.02) translateY(-6px);
}

.waj-pkg-card.active-selected-card {
    border-color: #00f2fe !important;
    box-shadow: 0 0 30px rgba(0, 242, 254, 0.35) !important;
}

.pkg-popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 4px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
    white-space: nowrap;
}

.pkg-card-header {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 18px;
}

.pkg-badge-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: 12px;
    border: 1px solid;
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 12px;
}

.pkg-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.pkg-subtitle-text {
    font-size: 0.78rem;
    color: #94a3b8;
    line-height: 1.45;
    margin-bottom: 16px;
    min-height: 44px;
}

.pkg-price-wrap {
    margin-bottom: 16px;
}

.pkg-price-wrap .price-digits {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.pkg-price-wrap .amount {
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.pkg-price-wrap .currency {
    font-size: 1rem;
    font-weight: 800;
    color: #00f2fe;
}

.pkg-price-wrap .period {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.price-tax-info {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
}

.btn-select-package {
    width: 100%;
    padding: 11px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 254, 0.4);
    background: rgba(0, 242, 254, 0.1);
    color: #00f2fe;
    font-size: 0.85rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn-select-package:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    color: #050b14;
    border-color: transparent;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
}

.btn-select-package.btn-featured {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #050b14;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-select-package.btn-featured:hover {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.6);
}

.pkg-card-body {
    flex-grow: 1;
}

.features-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pkg-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.pkg-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    font-size: 0.76rem;
    color: #cbd5e1;
    line-height: 1.35;
}

.pkg-feature-list .check-icon {
    color: #10b981;
    font-weight: 900;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.waj-secure-badge-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 600;
}

/* ================= 2. ORDER WIZARD CONTAINER ================= */
.waj-order-wizard-section {
    position: relative;
}

.wizard-container-box {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    padding: 45px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
}

/* Wizard Selected Package Banner */
.wizard-pkg-selected-banner {
    background: rgba(0, 242, 254, 0.08);
    border: 1px solid rgba(0, 242, 254, 0.25);
    border-radius: 18px;
    padding: 14px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 12px;
}

.wizard-pkg-selected-banner .pkg-sel-info {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.wizard-pkg-selected-banner .label {
    font-size: 0.75rem;
    font-weight: 800;
    color: #00f2fe;
    letter-spacing: 0.05em;
}

.wizard-pkg-selected-banner strong {
    font-size: 1.1rem;
    color: #fff;
}

.wizard-pkg-selected-banner .price {
    background: rgba(255, 255, 255, 0.08);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #38bdf8;
}

.btn-change-pkg {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}

.btn-change-pkg:hover {
    color: #00f2fe;
}

.wizard-package-switcher-bar {
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 14px 18px;
}

.pkg-switcher-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
}

.pkg-switch-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pkg-switch-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.pkg-switch-btn.active {
    background: rgba(0, 242, 254, 0.15);
    border-color: #00f2fe;
    color: #00f2fe;
}

/* ================= 3. PROGRESS INDICATOR ================= */
.wizard-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 45px;
    position: relative;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: default;
    position: relative;
    z-index: 2;
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #64748b;
    transition: color 0.3s ease;
}

.step-item.active .step-num {
    background: #00f2fe;
    border-color: #00f2fe;
    color: #050b14;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
}

.step-item.active .step-title {
    color: #fff;
}

.step-item.completed .step-num {
    background: #10b981;
    border-color: #10b981;
    color: #fff;
}

.step-item.completed .step-title {
    color: #10b981;
}

.step-connector {
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 16px;
}

/* ================= 4. WIZARD STEP PANES ================= */
.wizard-step-pane {
    display: none;
    animation: wajFadeIn 0.35s ease forwards;
}

.wizard-step-pane.active {
    display: block;
}

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

/* ================= STEP 1 CHOSEN PACKAGE CARD ================= */
.step1-chosen-package-card {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 2px solid rgba(0, 242, 254, 0.5);
    border-radius: 22px;
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(0, 242, 254, 0.2);
    transition: all 0.3s ease;
    flex-wrap: wrap;
    gap: 16px;
}

.step1-chosen-package-card.card-flash-anim {
    animation: wajCardFlash 0.8s ease-out;
}

@keyframes wajCardFlash {
    0% { transform: scale(0.97); border-color: #f59e0b; box-shadow: 0 0 35px rgba(245, 158, 11, 0.8); }
    50% { transform: scale(1.02); border-color: #00f2fe; box-shadow: 0 0 40px rgba(0, 242, 254, 0.9); }
    100% { transform: scale(1); border-color: rgba(0, 242, 254, 0.5); box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5); }
}

.step1-pkg-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step1-pkg-icon {
    font-size: 2.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step1-pkg-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 900;
    color: #00f2fe;
    letter-spacing: 0.08em;
    margin-bottom: 2px;
}

.step1-pkg-title {
    font-size: 1.35rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px 0;
}

.step1-pkg-desc {
    font-size: 0.82rem;
    color: #94a3b8;
    display: block;
}

.step1-pkg-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.step1-pkg-price {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.step1-pkg-price small {
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
}

.step1-btn-change {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #38bdf8;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.step1-btn-change:hover {
    background: rgba(0, 242, 254, 0.15);
    border-color: #00f2fe;
    color: #fff;
}

.pane-header {
    margin-bottom: 30px;
}

.pane-header h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.pane-header p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

/* ================= STEP 1: DOMAIN LOOKUP ================= */
.domain-action-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}

.radio-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 14px;
}

.radio-card input[type="radio"] {
    display: none;
}

.radio-card:hover {
    border-color: rgba(0, 242, 254, 0.4);
    background: rgba(0, 242, 254, 0.03);
}

.radio-card.active {
    border-color: #00f2fe;
    background: rgba(0, 242, 254, 0.08);
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.15);
}

.radio-text strong {
    display: block;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.radio-text small {
    color: #94a3b8;
    font-size: 0.8rem;
}

.domain-search-group {
    margin-bottom: 35px;
}

.domain-input-box {
    display: flex;
    background: rgba(10, 15, 30, 0.8);
    border: 2px solid rgba(0, 242, 254, 0.35);
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.domain-input-box input {
    flex-grow: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    padding: 12px 18px;
    letter-spacing: 0.02em;
}

.domain-input-box select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: #00f2fe;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 16px;
    margin-right: 8px;
    cursor: pointer;
    outline: none;
}

.btn-check-domain {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    border: none;
    border-radius: 12px;
    color: #050b14;
    font-weight: 900;
    font-size: 1rem;
    padding: 0 28px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-check-domain:hover {
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.6);
    transform: translateY(-1px);
}

.domain-feedback {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    display: none;
}

.domain-feedback.success {
    display: block;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.4);
    color: #34d399;
}

.domain-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
}

.domain-feedback.info {
    display: block;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: #38bdf8;
}

/* ================= STEP 2: HOSTING SPECS ================= */
.hosting-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px;
    margin-bottom: 30px;
}

.hosting-badge-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
    margin-bottom: 24px;
}

.hosting-badge-header .icon {
    font-size: 2.2rem;
}

.hosting-badge-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px 0;
}

.text-domain-chosen {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.highlight-domain {
    color: #00f2fe;
    font-weight: 800;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.spec-item {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 14px 16px;
}

.spec-k {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.spec-v {
    display: block;
    font-size: 0.95rem;
    color: #fff;
    font-weight: 800;
}

.highlight-green {
    color: #34d399 !important;
}

.highlight-gold {
    color: #f59e0b !important;
}

/* ================= STEP 3: CUSTOMER FORM ================= */
.form-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.field-col-6 label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 8px;
}

.field-col-6 input {
    width: 100%;
    background: rgba(10, 15, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 14px 16px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

.field-col-6 input:focus {
    border-color: #00f2fe;
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.25);
}

/* ================= STEP 4: PAYMENT ================= */
.payment-layout-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 35px;
    margin-bottom: 30px;
}

.credit-card-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.credit-card-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.2) 0%, transparent 70%);
}

.card-chip {
    width: 44px;
    height: 32px;
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    border-radius: 6px;
    margin-bottom: 24px;
}

.card-number-display {
    font-family: monospace;
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
}

.card-meta-row {
    display: flex;
    justify-content: space-between;
}

.card-meta-row .label {
    display: block;
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.card-meta-row .val {
    display: block;
    font-size: 0.85rem;
    font-weight: 800;
    color: #fff;
}

.card-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.field-full {
    grid-column: span 2;
}

.field-full label, .field-half label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 6px;
}

.field-full input, .field-half input {
    width: 100%;
    background: rgba(10, 15, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 14px;
    color: #fff;
    font-size: 0.95rem;
    outline: none;
    box-sizing: border-box;
}

.field-full input:focus, .field-half input:focus {
    border-color: #00f2fe;
}

/* Order Summary Box */
.summary-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 26px;
}

.summary-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 14px;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: #94a3b8;
    margin-bottom: 12px;
}

.summary-line strong {
    color: #fff;
}

.badge-free {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 18px 0;
}

.summary-total-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1.1rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 24px;
}

.summary-total-line strong {
    font-size: 1.8rem;
    color: #00f2fe;
}

.btn-submit-order {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border: none;
    border-radius: 14px;
    padding: 18px 24px;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.35);
}

.btn-submit-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.5);
}

.summary-disclaimer {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 14px;
    line-height: 1.4;
    text-align: center;
}

.checkout-error-msg {
    background: rgba(239, 68, 68, 0.15);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #f87171;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

/* ================= STEP 5: SUCCESS PANE ================= */
.success-screen-box {
    text-align: center;
    padding: 40px 20px;
}

.success-icon-anim {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: wajBounce 1s infinite alternate;
}

@keyframes wajBounce {
    from { transform: translateY(0); }
    to { transform: translateY(-10px); }
}

.success-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 16px;
}

.success-screen-box h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
}

.success-screen-box p {
    color: #94a3b8;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.success-details-card {
    max-width: 540px;
    margin: 0 auto 35px auto;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 24px;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.9rem;
    color: #94a3b8;
}

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

.detail-row strong {
    color: #fff;
}

.highlight-cyan {
    color: #00f2fe !important;
}

.success-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp-success {
    background: #25d366;
    color: #fff;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-whatsapp-success:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.5);
    transform: translateY(-2px);
}

.btn-home-success {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
}

/* ================= STEP NAV ACTIONS ================= */
.step-nav-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.btn-wizard-next {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    border: none;
    border-radius: 14px;
    padding: 14px 32px;
    color: #050b14;
    font-weight: 900;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-wizard-next:hover:not(:disabled) {
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
    transform: translateY(-2px);
}

.btn-wizard-next:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-wizard-prev {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 14px 24px;
    color: #94a3b8;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wizard-prev:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
    .pkg-main-grid, .payment-layout-grid, .form-fields-grid, .domain-action-toggle {
        grid-template-columns: 1fr;
    }
    .wizard-container-box {
        padding: 25px 18px;
    }
    .waj-hero-title {
        font-size: 2.2rem;
    }
    .wizard-steps-indicator {
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .step-title {
        display: none;
    }
}
