        .order-layout {
            display: grid;
            grid-template-columns: 1fr 400px;
            gap: 32px;
            margin-top: 24px;
        }

        .order-form-column {
            min-width: 0;
        }

        .order-summary-column {
            position: relative;
        }

        .order-summary-sticky {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(10px);
        }

        .summary-title {
            font-size: 20px;
            font-weight: 600;
            color: #ffffff;
            margin: 0 0 20px 0;
            text-align: center;
        }

        .summary-placeholder {
            text-align: center;
            padding: 40px 20px;
            opacity: 0.6;
        }

        .summary-placeholder-text {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
            margin: 0 0 10px 0;
        }

        .summary-placeholder-icon {
            font-size: 32px;
            display: block;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .summary-content {
            margin-bottom: 20px;
        }

        .summary-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 12px;
            animation: fadeInRight 0.3s ease;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .summary-item-title {
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .summary-item-detail {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin: 4px 0;
        }

        .summary-pricing {
            margin-top: 20px;
        }

        .pricing-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 12px 0;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
        }

        .shipping-row {
            color: rgba(255, 255, 255, 0.6);
        }

        .strikethrough {
            text-decoration: line-through;
            color: rgba(255, 255, 255, 0.4);
        }

        .savings-row {
            background: rgba(34, 197, 94, 0.15);
            padding: 12px;
            border-radius: 8px;
            margin: 16px 0;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.02);
            }
        }

        .savings-badge {
            color: #ffffff;
            font-weight: 900;
        }

        .savings-amount {
            color: #10b981;
            font-weight: 700;
            font-size: 16px;
        }

        .pricing-divider {
            height: 2px;
            background: rgba(139, 92, 246, 0.3);
            margin: 16px 0;
        }

        .total-row {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            padding: 16px 0;
        }

        .total-amount {
            color: #8b5cf6;
            font-size: 24px;
        }

        .free-shipping-badge {
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            text-align: center;
            padding: 12px;
            border-radius: 8px;
            font-weight: 700;
            margin-top: 16px;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {

            0%,
            100% {
                transform: translateX(0);
                box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
            }

            50% {
                transform: translateX(2px);
                box-shadow: 0 0 30px rgba(16, 185, 129, 0.5);
            }
        }

        /* Celebratory animation for order updates */
        @keyframes celebrate {
            0% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
            }

            25% {
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
            }

            50% {
                transform: scale(1.08);
                box-shadow: 0 0 50px rgba(139, 92, 246, 1), 0 0 80px rgba(139, 92, 246, 0.6);
            }

            75% {
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(139, 92, 246, 0.8), 0 0 60px rgba(139, 92, 246, 0.4);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 0 rgba(139, 92, 246, 0.4);
            }
        }

        .order-summary-sticky.celebrating {
            animation: celebrate 0.6s ease-out;
        }

        /* Cart View */
        .cart-view {
            padding: 20px 0;
        }

        .cart-empty {
            text-align: center;
            padding: 60px 20px;
        }

        .cart-empty-icon {
            font-size: 64px;
            margin-bottom: 20px;
            opacity: 0.5;
        }

        .cart-empty-text {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        .cart-items {
            display: flex;
            flex-direction: column;
            gap: 16px;
            margin-bottom: 24px;
        }

        .cart-item {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 20px;
            align-items: center;
            transition: all 0.3s ease;
        }

        .cart-item:hover {
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(255, 255, 255, 0.08);
        }

        .cart-item-details {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .cart-item-name {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
        }

        .cart-item-specs {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cart-item-spec {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .cart-item-spec-label {
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .cart-item-controls {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            gap: 12px;
        }

        .cart-item-price {
            font-size: 20px;
            font-weight: 700;
            color: #8b5cf6;
        }

        .cart-item-actions {
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(139, 92, 246, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.4);
            border-radius: 8px;
            padding: 4px;
        }

        .qty-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(139, 92, 246, 0.3);
            color: white;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .qty-btn:hover {
            background: rgba(139, 92, 246, 0.5);
            transform: scale(1.1);
        }

        .qty-btn:active {
            transform: scale(0.95);
        }

        .qty-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
            transform: none;
        }

        .qty-display {
            min-width: 40px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
        }

        .remove-item-btn {
            width: 32px;
            height: 32px;
            border: none;
            background: rgba(239, 68, 68, 0.2);
            color: #ef4444;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s ease;
        }

        .remove-item-btn:hover {
            background: rgba(239, 68, 68, 0.3);
            transform: scale(1.1);
        }

        .remove-item-btn:active {
            transform: scale(0.95);
        }

        .cart-summary {
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            margin-top: 24px;
        }

        .cart-summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin: 12px 0;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
        }

        .cart-summary-row.total {
            font-size: 24px;
            font-weight: 700;
            color: #ffffff;
            padding-top: 16px;
            border-top: 2px solid rgba(139, 92, 246, 0.3);
            margin-top: 16px;
        }

        .cart-summary-total-amount {
            color: #8b5cf6;
        }

        .cart-actions {
            display: flex;
            gap: 12px;
            margin-top: 24px;
        }

        .btn-continue {
            width: 100%;
            padding: 16px 32px;
            background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
        }

        .btn-continue:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.6);
        }

        .btn-continue:active {
            transform: translateY(0);
        }

        .btn-continue:disabled {
            opacity: 0.5;
            cursor: not-allowed;
            transform: none;
        }

        .btn-add-more {
            padding: 16px 24px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-add-more:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .add-to-cart-section {
            background: rgba(255, 255, 255, 0.05);
            border: 2px dashed rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 24px;
        }

        .add-to-cart-title {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .add-to-cart-form {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr auto;
            gap: 12px;
            align-items: end;
        }

        .btn-add-to-cart {
            padding: 12px 24px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .btn-add-to-cart:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
        }

        .btn-add-to-cart:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-add-to-cart.shine {
            animation: shine-glow 0.8s ease-in-out;
        }

        @media (max-width: 768px) {
            .cart-item {
                grid-template-columns: 1fr;
            }

            .cart-item-controls {
                flex-direction: row;
                justify-content: space-between;
                align-items: center;
            }

            .add-to-cart-form {
                grid-template-columns: 1fr;
            }

            .cart-actions {
                flex-direction: column;
            }
        }

        /* Order Confirmation Screen */
        .order-confirmation-view {
            text-align: center;
            padding: 40px 20px;
            max-width: 600px;
            margin: 0 auto;
        }

        .confirmation-icon {
            font-size: 80px;
            animation: scaleIn 0.5s ease-out;
            margin-bottom: 20px;
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0);
                opacity: 0;
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .confirmation-title {
            font-size: 32px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .confirmation-subtitle {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 32px;
        }

        .proceed-payment-btn {
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            color: white;
        }

        .proceed-payment-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
        }

        .proceed-payment-btn:active {
            transform: scale(0.98);
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .warning-box {
            background: rgba(245, 158, 11, 0.15);
            border: 2px solid #f59e0b;
            border-radius: 12px;
            padding: 24px;
            margin: 24px 0;
            text-align: left;
        }

        .warning-title {
            font-size: 18px;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .warning-text {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            margin-bottom: 8px;
        }

        .countdown-box {
            background: rgba(139, 92, 246, 0.2);
            border: 2px solid #8b5cf6;
            border-radius: 12px;
            padding: 20px;
            margin: 24px 0;
        }

        .countdown-text {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
        }

        .countdown-timer {
            font-size: 48px;
            font-weight: 700;
            color: #8b5cf6;
            font-family: 'Courier New', monospace;
            animation: pulse 1s ease-in-out infinite;
        }

        #countdownTimer {
            font-size: 1.3em;
            display: inline-block;
            animation: heartbeat 1.5s ease-in-out infinite;
            color: #ef4444;
        }

        @keyframes heartbeat {
            0% {
                transform: scale(1);
            }

            14% {
                transform: scale(1.15);
            }

            28% {
                transform: scale(1);
            }

            42% {
                transform: scale(1.15);
            }

            70% {
                transform: scale(1);
            }

            100% {
                transform: scale(1);
            }
        }

        .help-section {
            margin-top: 32px;
            padding: 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
        }

        .help-title {
            font-size: 16px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 12px;
        }

        .help-text {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        .help-text a {
            color: #8b5cf6;
            text-decoration: none;
            font-weight: 600;
        }

        .help-text a:hover {
            text-decoration: underline;
        }

        @keyframes slideUp {
            from {
                transform: translateY(50px) scale(0.9);
                opacity: 0;
            }

            to {
                transform: translateY(0) scale(1);
                opacity: 1;
            }
        }


        /* Console Selection Cards */
        .console-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }

        .console-card {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.15) 100%);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 16px;
            padding: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .console-card:hover {
            transform: translateY(-4px);
            border-color: rgba(139, 92, 246, 0.6);
            box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
        }

        .console-card.selected {
            border-color: #10b981;
            background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.2) 100%);
            box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
        }

        .console-card.selected::before {
            content: '✓';
            position: absolute;
            top: 12px;
            right: 12px;
            background: #10b981;
            color: white;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
        }

        .console-card-image {
            width: 100%;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 64px;
        }

        .console-card-name {
            font-family: 'Oxanium', sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 12px;
            text-align: center;
        }

        .console-card-price {
            text-align: center;
            margin-bottom: 16px;
        }

        .console-card-price-main {
            font-size: 28px;
            font-weight: 700;
            color: #fbbf24;
            margin-bottom: 4px;
        }

        .console-card-price-old {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            text-decoration: line-through;
            margin-bottom: 4px;
        }

        .console-card-savings {
            font-size: 13px;
            color: #10b981;
            font-weight: 600;
        }

        .console-card-colors {
            margin-top: 16px;
            padding-top: 16px;
            border-top: 1px solid rgba(139, 92, 246, 0.3);
        }

        .console-card-colors-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 10px;
            text-align: center;
        }

        .color-swatches {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center;
        }

        .color-swatch {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            border: 2px solid transparent;
            cursor: pointer;
            transition: all 0.2s ease;
            position: relative;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            padding: 4px;
            overflow: hidden;
        }

        .color-swatch:hover {
            transform: scale(1.1);
            border-color: rgba(139, 92, 246, 0.5);
        }

        .color-swatch.selected {
            border-color: #10b981;
            box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
        }

        .color-swatch.selected::after {
            content: '✓';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #10b981;
            font-weight: 700;
            font-size: 16px;
            text-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
        }

        @media (max-width: 768px) {
            .console-cards-grid {
                grid-template-columns: 1fr;
            }

            .console-card {
                padding: 20px;
            }

            .color-swatch {
                width: 32px;
                height: 32px;
            }
        }

        /* Pulse animation for highlighted card */
        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
            }

            50% {
                transform: scale(1.03);
                box-shadow: 0 12px 32px rgba(139, 92, 246, 0.5);
            }
        }

        /* Order Form Styles */
        .order-form {
            margin-top: 20px;
        }

        .form-group {
            margin-bottom: 18px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 18px;
        }

        .form-row .form-group {
            margin-bottom: 0;
        }

        @media (max-width: 768px) {
            .form-row {
                grid-template-columns: 1fr;
                gap: 0;
            }

            .form-row .form-group {
                margin-bottom: 18px;
            }
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .label-icon {
            font-size: 18px;
        }

        .form-select,
        .form-input {
            width: 100%;
            padding: 14px 16px;
            font-size: 15px;
            font-family: 'Inter', sans-serif;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 10px;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .form-select:focus,
        .form-input:focus {
            outline: none;
            border-color: rgba(139, 92, 246, 0.6);
            background: rgba(255, 255, 255, 0.12);
            box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
        }

        .form-input.error,
        .form-select.error {
            border-color: #ef4444;
            background: rgba(239, 68, 68, 0.1);
            animation: shake 0.4s ease;
        }

        .form-input.error:focus,
        .form-select.error:focus {
            border-color: #ef4444;
            box-shadow: 0 0 20px rgba(239, 68, 68, 0.4);
        }

        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            25% {
                transform: translateX(-10px);
            }

            75% {
                transform: translateX(10px);
            }
        }

        .error-message {
            font-size: 13px;
            color: #ef4444;
            margin: 6px 0 0 0;
            display: flex;
            align-items: center;
            gap: 4px;
            font-weight: 500;
        }

        .error-message::before {
            content: '⚠️';
            font-size: 14px;
        }

        textarea.form-input {
            resize: vertical;
            min-height: 100px;
            font-family: 'Inter', sans-serif;
            line-height: 1.5;
        }

        .form-select option {
            background: #1a0a2e;
            color: #ffffff;
        }

        .form-help {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            margin: 6px 0 0 0;
        }

        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 15px;
            color: #ffffff;
            padding: 12px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            transition: background 0.3s ease;
        }

        .checkbox-label:hover {
            background: rgba(255, 255, 255, 0.08);
        }

        .form-checkbox {
            width: 20px;
            height: 20px;
            margin-top: 2px;
            cursor: pointer;
            accent-color: #8b5cf6;
            flex-shrink: 0;
        }

        .shipping-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 24px 0;
            padding: 20px;
            background: rgba(34, 197, 94, 0.1);
            border: 2px solid rgba(34, 197, 94, 0.3);
            border-radius: 12px;
        }

        .shipping-badge {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .badge-icon {
            font-size: 24px;
            flex-shrink: 0;
        }

        .badge-content {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .badge-content strong {
            color: #22c55e;
            font-size: 15px;
        }

        .badge-content span {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13px;
        }

        .next-steps {
            margin: 20px 0;
            padding: 16px;
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
        }

        .next-steps-title {
            color: #a78bfa;
            font-size: 15px;
            font-weight: 700;
            margin: 0 0 12px 0;
        }

        .steps-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .steps-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 10px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            line-height: 1.4;
        }

        .steps-list li:last-child {
            margin-bottom: 0;
        }

        .step-number {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 24px;
            height: 24px;
            background: rgba(139, 92, 246, 0.3);
            border-radius: 50%;
            color: #a78bfa;
            font-size: 12px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .step-text {
            flex: 1;
        }

        .order-submit-btn {
            width: 100%;
            padding: 16px 24px;
            font-size: 17px;
            font-weight: 700;
            font-family: 'Oxanium', sans-serif;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
            border: 2px solid rgba(139, 92, 246, 0.8);
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
        }

        .order-submit-btn:hover:not(:disabled) {
            background: linear-gradient(135deg, rgba(139, 92, 246, 1) 0%, rgba(139, 92, 246, 0.8) 100%);
            border-color: rgba(139, 92, 246, 1);
            box-shadow: 0 0 40px rgba(139, 92, 246, 0.6);
            transform: translateY(-2px);
        }

        .order-submit-btn:disabled {
            background: linear-gradient(135deg, rgba(100, 100, 100, 0.5) 0%, rgba(80, 80, 80, 0.4) 100%);
            border-color: rgba(100, 100, 100, 0.5);
            color: rgba(255, 255, 255, 0.5);
            cursor: not-allowed;
            box-shadow: none;
            opacity: 0.6;
            transform: none;
        }

        .order-submit-btn:disabled .btn-icon {
            opacity: 0.5;
        }

        .btn-icon {
            font-size: 20px;
        }

        .form-footer {
            text-align: center;
            margin-top: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .email-link {
            color: #fbbf24;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }

        .email-link:hover {
            color: #f59e0b;
        }

        /* Success View Styles */
        .success-content {
            text-align: center;
            padding: 40px 20px;
        }

        .success-icon {
            font-size: 72px;
            margin-bottom: 20px;
            animation: successPop 0.5s ease-out;
        }

        @keyframes successPop {
            0% {
                transform: scale(0);
            }

            50% {
                transform: scale(1.2);
            }

            100% {
                transform: scale(1);
            }
        }

        .success-title {
            font-size: 28px;
            font-weight: 800;
            color: #22c55e;
            margin: 0 0 16px 0;
            text-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
        }

        .success-message {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.9);
            margin: 0 0 32px 0;
            line-height: 1.6;
        }

        .success-message strong {
            color: #fbbf24;
        }

        .success-steps {
            background: rgba(139, 92, 246, 0.1);
            border: 2px solid rgba(139, 92, 246, 0.3);
            border-radius: 12px;
            padding: 24px;
            margin-bottom: 24px;
            text-align: left;
        }

        .success-steps h4 {
            color: #a78bfa;
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 16px 0;
        }

        .success-steps ol {
            margin: 0;
            padding-left: 24px;
            color: rgba(255, 255, 255, 0.9);
        }

        .success-steps li {
            margin-bottom: 12px;
            line-height: 1.6;
        }

        .success-steps li:last-child {
            margin-bottom: 0;
        }

        .success-note {
            background: rgba(251, 191, 36, 0.1);
            border: 2px solid rgba(251, 191, 36, 0.3);
            border-radius: 12px;
            padding: 16px;
            margin-bottom: 24px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.9);
        }

        .success-note strong {
            color: #fbbf24;
        }

        .success-close-btn {
            padding: 14px 32px;
            font-size: 16px;
            font-weight: 700;
            font-family: 'Oxanium', sans-serif;
            color: #ffffff;
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.6) 0%, rgba(139, 92, 246, 0.4) 100%);
            border: 2px solid rgba(139, 92, 246, 0.6);
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .success-close-btn:hover {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.8) 0%, rgba(139, 92, 246, 0.6) 100%);
            border-color: rgba(139, 92, 246, 0.8);
            transform: translateY(-2px);
        }

