/* ==========================================
   AXKAN - SOUVENIRS ORDER FORM
   Dark glassmorphism + animated background
   Mobile-first, AXKAN branded
   ========================================== */

@font-face {
    font-family: 'RL Aqva';
    src: url('/fonts/rl-aqva-black.otf') format('opentype');
    font-weight: 900;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

:root {
    /* AXKAN Brand Colors */
    --axkan-pink: #e72a88;
    --axkan-green: #8ab73b;
    --axkan-orange: #f39223;
    --axkan-turquoise: #09adc2;
    --axkan-red: #e52421;

    /* Primary */
    --primary: #e72a88;
    --primary-dark: #c91e73;
    --secondary: #f39223;

    /* Status */
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f39223;

    /* Backgrounds (dark-first) */
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121c;
    --bg-tertiary: #1a1a2e;

    /* Gray palette — dark-first (low=dark, high=light) */
    --gray-50: #161625;
    --gray-100: #1e1e32;
    --gray-200: #2a2a42;
    --gray-300: #3d3d58;
    --gray-400: #5a5a78;
    --gray-500: #7a7a96;
    --gray-600: #94a3b8;
    --gray-700: #cbd5e1;
    --gray-800: #1e1e30;
    --gray-900: #f1f5f9;

    /* Borders */
    --border-light: rgba(255, 255, 255, 0.08);
    --border-medium: rgba(255, 255, 255, 0.15);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(231, 42, 136, 0.2);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;

    /* Easing */
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    min-height: 100vh;
    padding: 0;
    margin: 0;
    color: var(--gray-900);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ==========================================
   ANIMATED BACKGROUND SCENE
   ========================================== */

.bg-scene {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        #0a0a14 0%,
        #120a1a 25%,
        #0a0a14 50%,
        #0a1218 75%,
        #0a0a14 100%
    );
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    will-change: transform;
    contain: strict;
}

.bg-orb--rosa {
    width: 500px;
    height: 500px;
    background: var(--axkan-pink);
    top: -15%;
    right: -10%;
    animation: orbFloat1 20s ease-in-out infinite;
}

.bg-orb--turquesa {
    width: 400px;
    height: 400px;
    background: var(--axkan-turquoise);
    bottom: -10%;
    left: -15%;
    animation: orbFloat2 25s ease-in-out infinite;
}

.bg-orb--naranja {
    width: 300px;
    height: 300px;
    background: var(--axkan-orange);
    top: 50%;
    left: 60%;
    animation: orbFloat3 18s ease-in-out infinite;
}

.bg-orb--verde {
    width: 250px;
    height: 250px;
    background: var(--axkan-green);
    top: 30%;
    left: -5%;
    animation: orbFloat4 22s ease-in-out infinite;
}

.bg-mesh {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(231, 42, 136, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(9, 173, 194, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(243, 146, 35, 0.02) 0%, transparent 50%);
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 60px) scale(1.1); }
    66% { transform: translate(30px, -30px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -40px) scale(1.05); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-60px, -30px) scale(1.15); }
    66% { transform: translate(40px, 40px) scale(0.85); }
}

@keyframes orbFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 50px) scale(1.08); }
    66% { transform: translate(-20px, -40px) scale(0.92); }
}

/* ==========================================
   APP CONTAINER
   ========================================== */

.app-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    min-height: 100vh;
    position: relative;
    z-index: 2;
    background: transparent;
}

/* ==========================================
   STEP MANAGEMENT
   ========================================== */

.step {
    display: none;
    animation: stepFadeIn 0.4s var(--ease-out);
}

.step.active {
    display: block;
}

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

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

/* ==========================================
   HEADER
   ========================================== */

.header {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--gray-900);
    padding: 32px 40px;
    text-align: center;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
        var(--axkan-pink),
        var(--axkan-green),
        var(--axkan-orange),
        var(--axkan-turquoise),
        var(--axkan-red),
        var(--axkan-pink)
    );
    background-size: 200% 100%;
    animation: headerGradient 8s linear infinite;
}

@keyframes headerGradient {
    0% { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

.header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(231, 42, 136, 0.06) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(243, 146, 35, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.logo {
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.logo img {
    height: 80px;
    width: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(231, 42, 136, 0.3));
    transition: transform 0.3s var(--ease-spring);
}

.logo img:hover {
    transform: scale(1.05);
}

.logo:not(:has(img)) {
    font-size: 42px;
}

.header h1 {
    font-family: 'RL Aqva', 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 15px;
    color: var(--gray-600);
    font-weight: 500;
}

/* ==========================================
   PROGRESS BAR
   ========================================== */

.progress-bar {
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.progress {
    height: 100%;
    background: linear-gradient(90deg, var(--axkan-pink), #FF4081, var(--axkan-pink));
    background-size: 200% 100%;
    animation: progressShimmer 2s linear infinite;
    transition: width 0.5s var(--ease-smooth);
}

@keyframes progressShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ==========================================
   CARDS & CONTAINERS
   ========================================== */

.card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    margin-bottom: 16px;
}

.card h2 {
    font-family: 'RL Aqva', 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--gray-900);
}

.help-text {
    color: var(--gray-600);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}

/* ==========================================
   FORM ELEMENTS
   ========================================== */

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s var(--ease-smooth);
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-900);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--axkan-pink);
    background: rgba(231, 42, 136, 0.06);
    box-shadow: 0 0 0 3px rgba(231, 42, 136, 0.12), 0 0 20px rgba(231, 42, 136, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.input-hint {
    display: block;
    font-size: 12px;
    color: var(--gray-600);
    margin-top: 6px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

/* ==========================================
   BUTTONS
   ========================================== */

.btn {
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 24px;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.btn-large {
    width: 100%;
    padding: 16px;
    font-size: 17px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--axkan-pink), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 20px rgba(231, 42, 136, 0.35);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 32px rgba(231, 42, 136, 0.45);
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:active {
    transform: scale(0.97);
    box-shadow: var(--shadow-sm);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background: transparent;
    color: var(--axkan-pink);
    border: 1.5px solid var(--axkan-pink);
}

.btn-secondary:hover {
    background: rgba(231, 42, 136, 0.1);
}

.btn-back {
    background: transparent;
    border: none;
    color: var(--gray-600);
    font-size: 15px;
    padding: 12px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s;
    min-width: 80px;
    min-height: 44px;
}

.btn-back:hover {
    color: var(--axkan-pink);
}

/* ==========================================
   PRODUCT GRID
   ========================================== */

.sticky-header {
    position: sticky;
    top: 0;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 50;
    transition: box-shadow 0.2s ease;
}

.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.sticky-header h2 {
    font-size: 18px;
    margin: 0;
    color: var(--gray-900);
}

.order-total-mini {
    font-size: 14px;
    color: var(--gray-600);
}

.order-total-mini strong {
    color: var(--axkan-pink);
    font-size: 16px;
}

.products-grid {
    padding: 40px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    isolation: isolate;
    position: relative;
    z-index: 1;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-lg);
    padding: 20px;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s var(--ease-spring);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transform: translateY(0);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--axkan-pink), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:active {
    transform: scale(0.98);
}

.product-card.selected {
    border-color: var(--axkan-pink);
    box-shadow: 0 4px 20px rgba(231, 42, 136, 0.2);
    background: rgba(231, 42, 136, 0.06);
}

.product-card.selected::before {
    opacity: 1;
}

.product-card.selected::after {
    content: '\2713';
    position: absolute;
    top: 12px;
    right: 12px;
    width: 24px;
    height: 24px;
    background: var(--axkan-pink);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
    animation: checkPop 0.2s var(--ease-spring);
}

@keyframes checkPop {
    0% { transform: scale(0); }
    70% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.product-header {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.product-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.product-category {
    display: inline-block;
    background: rgba(231, 42, 136, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--axkan-pink);
    font-weight: 600;
    margin-bottom: 8px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--axkan-pink);
}

.product-price span {
    font-size: 14px;
    color: var(--gray-600);
    font-weight: 400;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-quantity label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s var(--ease-spring);
}

.quantity-btn:hover {
    border-color: var(--axkan-pink);
    color: var(--axkan-pink);
    background: rgba(231, 42, 136, 0.08);
}

.quantity-btn:active {
    transform: scale(0.9);
    transition: transform 0.1s;
}

.quantity-input {
    width: 90px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    border: 1.5px solid var(--axkan-pink);
    border-radius: var(--radius-md);
    padding: 12px 8px;
    color: white;
    background: rgba(231, 42, 136, 0.08);
}

.quantity-input:focus {
    outline: none;
    border-color: var(--axkan-pink);
    background: rgba(231, 42, 136, 0.12);
    box-shadow: 0 0 0 3px rgba(231, 42, 136, 0.12);
}

.product-subtotal {
    text-align: right;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.product-subtotal span {
    color: var(--gray-600);
    font-size: 13px;
}

.product-subtotal strong {
    color: var(--gray-900);
    font-size: 18px;
    margin-left: 8px;
}

/* ==========================================
   STICKY FOOTER
   ========================================== */

.sticky-footer {
    position: sticky;
    bottom: 0;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 16px 20px;
    border-top: 1px solid var(--border-light);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100;
    position: relative;
}

.sticky-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        var(--axkan-pink),
        var(--axkan-orange),
        var(--axkan-turquoise),
        transparent
    );
}

.summary {
    margin-bottom: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--gray-700);
}

.summary-row strong {
    color: var(--gray-900);
}

.summary-row.total-row {
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    font-size: 16px;
}

.summary-row.deposit {
    color: var(--axkan-pink);
    font-weight: 600;
    padding-top: 8px;
    border-top: 1px solid var(--border-light);
}

.sticky-footer .btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* ==========================================
   SHIPPING INDICATOR
   ========================================== */

.shipping-indicator {
    text-align: center;
    padding: 12px 16px;
    margin: 16px 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--gray-700);
}

.shipping-indicator:empty {
    display: none;
}

/* ==========================================
   PAYMENT OPTIONS
   ========================================== */

.payment-summary-box {
    background: rgba(231, 42, 136, 0.06);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1.5px solid rgba(231, 42, 136, 0.15);
}

.payment-summary-box .summary-row {
    margin-bottom: 12px;
}

.payment-summary-box .summary-row span {
    color: var(--gray-700);
}

.payment-summary-box .summary-row strong {
    color: var(--gray-900);
}

.payment-summary-box .highlight {
    font-size: 18px;
    color: var(--axkan-pink);
}

.payment-methods {
    margin-bottom: 24px;
}

.payment-option {
    display: block;
    margin-bottom: 12px;
    cursor: pointer;
}

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

.payment-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-spring);
    background: rgba(255, 255, 255, 0.03);
}

.payment-option input[type="radio"]:checked + .payment-card {
    border-color: var(--axkan-pink);
    background: rgba(231, 42, 136, 0.08);
    animation: paymentSelect 0.3s ease;
}

@keyframes paymentSelect {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.payment-icon {
    font-size: 32px;
}

.payment-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.payment-info p {
    font-size: 13px;
    color: var(--gray-600);
    margin: 0;
}

/* Bank Details */
.bank-details {
    background: rgba(255, 255, 255, 0.04);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    border: 1px solid var(--border-light);
}

.bank-details h3 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.bank-details p {
    color: var(--gray-700);
}

.bank-info {
    background: rgba(255, 255, 255, 0.04);
    padding: 16px;
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    border: 1px solid var(--border-light);
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-light);
}

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

.info-row span {
    color: var(--gray-600);
}

.info-row strong {
    color: var(--gray-900);
}

.highlight-amount {
    color: var(--axkan-pink);
    font-size: 18px;
}

/* Copy Button */
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.copy-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

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

.copy-text {
    font-weight: 500;
    color: var(--gray-700);
}

.copy-btn.copied {
    background: var(--success) !important;
    border-color: var(--success) !important;
    animation: copyPulse 0.3s ease;
}

.copy-btn.copied .copy-text {
    color: white !important;
}

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

/* ==========================================
   ORDER SUMMARY CARD
   ========================================== */

.order-summary-card {
    background: rgba(231, 42, 136, 0.05);
    border: 1.5px solid rgba(231, 42, 136, 0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin-bottom: 24px;
}

.order-summary-card h3 {
    color: var(--gray-900) !important;
}

.order-item-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 12px 0;
    border-bottom: 1px solid rgba(231, 42, 136, 0.1);
}

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

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.order-item-details {
    font-size: 13px;
    color: var(--gray-600);
}

.order-item-price {
    text-align: right;
    font-weight: 600;
    color: var(--gray-900);
    font-size: 15px;
}

.order-summary-card .summary-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.order-summary-card .summary-item:last-child {
    border-bottom: none;
}

/* ==========================================
   FILE UPLOAD
   ========================================== */

.file-upload-area {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-smooth);
    background: rgba(255, 255, 255, 0.03);
}

.file-upload-area:hover {
    border-color: var(--axkan-pink);
    background: rgba(231, 42, 136, 0.06);
}

.file-upload-area:active {
    background: rgba(231, 42, 136, 0.1);
}

.upload-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 8px;
}

.upload-prompt p {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--gray-700);
}

.file-hint {
    font-size: 12px;
    color: var(--gray-600);
}

.file-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.file-preview-item {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
}

.file-preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.file-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: var(--danger);
    color: white;
    border-radius: 50%;
    border: none;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================
   INFO BOXES
   ========================================== */

.info-box {
    background: rgba(255, 255, 255, 0.04);
    border-left: 4px solid var(--axkan-pink);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    display: flex;
    gap: 12px;
    align-items: start;
}

.info-box .icon {
    font-size: 24px;
}

.info-box strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.info-box p {
    margin: 0;
    font-size: 14px;
    color: var(--gray-700);
}

.info-box ul {
    margin: 8px 0 0 20px;
    font-size: 14px;
    color: var(--gray-700);
}

.info-box li {
    margin-bottom: 4px;
}

.info-box-blue {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--axkan-turquoise);
}

.info-box-warning {
    background: rgba(243, 146, 35, 0.06);
    border-left-color: var(--axkan-orange);
    margin: 20px 0;
}

.info-box-warning p {
    font-size: 14px;
}

.info-box-warning strong {
    color: var(--gray-900);
}

/* ==========================================
   SUCCESS SCREEN
   ========================================== */

.success-container {
    padding: 60px 20px;
    text-align: center;
}

.success-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: successBounce 0.6s var(--ease-spring);
}

@keyframes successBounce {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-container h2 {
    font-family: 'RL Aqva', 'Inter', sans-serif;
    font-size: 28px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--axkan-green), #6d9e2a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-details {
    max-width: 400px;
    margin: 0 auto;
}

.success-details p {
    color: var(--gray-700);
}

.order-number {
    background: rgba(231, 42, 136, 0.06);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin: 24px 0;
    border: 1.5px solid rgba(231, 42, 136, 0.2);
    color: var(--gray-700);
}

.order-number strong {
    display: block;
    font-size: 24px;
    color: var(--axkan-pink);
    margin-top: 8px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

/* ==========================================
   LOADING & SPINNERS
   ========================================== */

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

.loading p {
    color: var(--gray-600);
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-top-color: var(--axkan-pink);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 16px;
}

.spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

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

@keyframes slideDown {
    from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */

.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 16px;
}

/* ==========================================
   STRIPE PAYMENT
   ========================================== */

.stripe-payment-container .btn-primary {
    background: linear-gradient(135deg, #635bff, #4f46e5);
}

.stripe-payment-container .btn-primary:hover {
    background: linear-gradient(135deg, #4f46e5, #4338ca);
}

/* ==========================================
   HAMBURGER MENU
   ========================================== */

.hamburger-btn {
    display: none;
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1001;
    width: 44px;
    height: 44px;
    background: rgba(18, 18, 28, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 10px;
    transition: all 0.3s ease;
}

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

.hamburger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gray-900);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Menu overlay */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1002;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile slide-out menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    max-width: 85vw;
    height: 100%;
    background: var(--bg-secondary);
    z-index: 1003;
    display: flex;
    flex-direction: column;
    transition: right 0.3s var(--ease-smooth);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.4);
    border-left: 1px solid var(--border-light);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid var(--border-light);
    background: rgba(231, 42, 136, 0.06);
}

.mobile-menu-logo {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: var(--gray-900);
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 12px 0;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s;
    border-left: 3px solid transparent;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    background: rgba(255, 255, 255, 0.04);
    border-left-color: var(--axkan-pink);
    color: var(--axkan-pink);
}

.mobile-menu-icon {
    font-size: 20px;
    width: 28px;
    text-align: center;
}

.mobile-menu-divider {
    height: 1px;
    background: var(--border-light);
    margin: 12px 20px;
}

.mobile-menu-footer {
    padding: 20px;
    border-top: 1px solid var(--border-light);
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-footer p {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 12px;
}

.mobile-menu-social {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.mobile-menu-social a {
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s;
}

.mobile-menu-social a:hover {
    transform: scale(1.1);
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
    }

    .header {
        padding-right: 70px;
    }
}

/* ==========================================
   STEP INDICATOR
   ========================================== */

.step-indicator {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--axkan-pink);
    margin: 12px 0 8px;
    letter-spacing: 0.5px;
}

/* ==========================================
   DEPOSIT INFO BANNER
   ========================================== */

.deposit-info-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(231, 42, 136, 0.08);
    border: 1px solid rgba(231, 42, 136, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    margin: 0 20px 20px;
    animation: depositPulse 3s ease-in-out infinite;
}

@keyframes depositPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 42, 136, 0.1); }
    50% { box-shadow: 0 0 0 4px rgba(231, 42, 136, 0.05); }
}

.deposit-info-icon {
    font-size: 28px;
}

.deposit-info-text strong {
    color: var(--axkan-pink);
    font-size: 14px;
}

.deposit-info-text p {
    color: var(--gray-700);
    font-size: 13px;
    margin-top: 2px;
}

/* ==========================================
   INLINE ERROR / VALIDATION
   ========================================== */

.input-error {
    display: block;
    color: var(--danger);
    font-size: 12px;
    font-weight: 500;
    margin-top: 6px;
    min-height: 18px;
}

.input-error:empty {
    display: none;
}

.form-group input.error,
.form-group textarea.error {
    border-color: var(--danger);
    background-color: rgba(239, 68, 68, 0.1);
}

.form-group input.error:focus,
.form-group textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-group input.valid {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.06);
}

.form-group input.autofilled,
.form-group select.autofilled {
    border-color: #10b981 !important;
}

/* ==========================================
   MOQ BADGE
   ========================================== */

.product-moq-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--axkan-pink);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    z-index: 1;
}

/* ==========================================
   SPEI TIP
   ========================================== */

.spei-tip {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: rgba(9, 173, 194, 0.08);
    border: 1px solid rgba(9, 173, 194, 0.2);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--axkan-turquoise);
}

.spei-tip strong {
    color: #64B5F6;
}

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

/* ==========================================
   RETURNING CLIENT BANNER
   ========================================== */

.returning-client-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(138, 183, 59, 0.08);
    border: 1px solid rgba(138, 183, 59, 0.2);
    border-radius: var(--radius-md);
    padding: 14px 16px;
    margin-bottom: 20px;
    animation: slideInBanner 0.4s ease-out;
}

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

.returning-icon {
    font-size: 28px;
}

.returning-text strong {
    color: var(--axkan-green);
    font-size: 15px;
}

.returning-text p {
    color: var(--gray-700);
    font-size: 13px;
    margin-top: 2px;
}

/* ==========================================
   EMAIL CONFIRMATION NOTICE
   ========================================== */

.email-confirmation-notice {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 14px;
    color: var(--gray-700);
    margin: 16px 0;
}

.email-confirmation-notice strong {
    color: var(--axkan-pink);
}

/* ==========================================
   PRODUCT SEARCH & FILTER
   ========================================== */

.product-search-container {
    padding: 0 20px 16px;
    position: sticky;
    top: 60px;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10;
}

.product-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    transition: all 0.2s;
}

.product-search:focus-within {
    border-color: var(--primary);
    background: rgba(231, 42, 136, 0.06);
}

.product-search-icon {
    font-size: 18px;
    color: var(--gray-600);
}

.product-search-icon-svg {
    color: var(--gray-600);
    flex-shrink: 0;
}

.product-search input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    outline: none;
    color: var(--gray-900);
}

.product-search input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* Category filter pills */
.category-filters {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 12px 20px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.category-filters::-webkit-scrollbar {
    display: none;
}

.category-pill {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: all 0.2s;
}

.category-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

.category-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* ==========================================
   TEXT LINK BUTTON
   ========================================== */

.btn-text-link {
    background: none;
    border: none;
    color: var(--gray-600);
    font-size: 14px;
    cursor: pointer;
    padding: 12px;
    transition: color 0.2s;
}

.btn-text-link:hover {
    color: var(--axkan-pink);
}

/* ==========================================
   COLLAPSIBLE NOTES
   ========================================== */

.notes-collapsible {
    border: 1px solid var(--border-medium);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.notes-summary {
    padding: 14px 16px;
    cursor: pointer;
    font-weight: 500;
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.04);
    list-style: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notes-summary::-webkit-details-marker {
    display: none;
}

.notes-summary::after {
    content: '+';
    margin-left: auto;
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-500);
}

details[open] .notes-summary::after {
    content: '\2212';
}

details[open] .notes-summary {
    border-bottom: 1px solid var(--border-light);
}

.notes-collapsible .form-group {
    padding: 0 16px 16px;
    margin-bottom: 0;
}

#client-notes {
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-900);
}

#client-notes::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   PROMO CODE
   ========================================== */

.promo-code-section {
    padding: 12px 20px;
    margin-bottom: 8px;
}

.promo-code-container {
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-md);
    padding: 12px;
    border: 1px solid var(--border-light);
}

.promo-code-input-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.promo-code-input-group input {
    flex: 1;
    padding: 10px 12px;
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    font-size: 14px;
    font-family: monospace;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-900);
}

.promo-code-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.promo-code-input-group input:focus {
    border-color: var(--primary);
    outline: none;
}

.btn-apply-promo {
    padding: 10px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-apply-promo:hover {
    background: var(--primary-dark);
}

.btn-apply-promo:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.promo-message {
    display: block;
    font-size: 12px;
    margin-top: 8px;
    padding-left: 28px;
}

.promo-message.error {
    color: var(--danger);
}

.promo-message.success {
    color: var(--success);
}

/* Applied Promo Banner */
.promo-applied-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid rgba(16, 185, 129, 0.2);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    animation: promoSuccess 0.4s ease-out;
}

@keyframes promoSuccess {
    0% { transform: scale(0.95); opacity: 0; }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); opacity: 1; }
}

.promo-applied-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.promo-check {
    width: 28px;
    height: 28px;
    background: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.promo-applied-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.promo-applied-text strong {
    color: #10b981;
    font-size: 14px;
}

.promo-applied-text span {
    color: var(--gray-600);
    font-size: 12px;
}

.btn-remove-promo {
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,0.06);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-600);
    transition: all 0.2s;
}

.btn-remove-promo:hover {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

/* ==========================================
   SIZE SELECTOR (Magnets)
   ========================================== */

.size-selector-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 16px 0;
    padding: 0 4px;
}

.size-selector-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-700);
    font-style: italic;
}

.size-selector-buttons {
    display: flex;
    gap: 12px;
}

.size-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--axkan-pink);
    background: var(--axkan-pink);
    color: white;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.size-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(231, 42, 136, 0.4);
}

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

.size-btn.selected {
    background: transparent;
    color: var(--axkan-pink);
    border-width: 3px;
    animation: pulse-ring 0.4s ease-out;
}

@keyframes pulse-ring {
    0% { transform: scale(0.9); opacity: 0.8; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* ==========================================
   COLONIA DROPDOWN
   ========================================== */

.colonia-select {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 16px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.06);
    color: var(--gray-900);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.colonia-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(231, 42, 136, 0.12);
}

.colonia-select option {
    background-color: var(--bg-secondary);
    color: var(--gray-900);
}

.colonia-select.autofilled {
    border-color: #10b981 !important;
}

/* ==========================================
   REQUIRED LEGEND
   ========================================== */

.required-legend {
    font-size: 12px;
    color: var(--gray-600);
    margin-bottom: 16px;
}

/* ==========================================
   MODAL
   ========================================== */

.modal {
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.modal .card {
    background: var(--bg-secondary);
    box-shadow: var(--shadow-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
}

.modal .card h2 {
    color: var(--gray-900);
}

/* ==========================================
   TUTORIAL POPUP (dark override)
   ========================================== */

.tutorial-overlay {
    z-index: 2000;
}

.tutorial-modal {
    background: var(--bg-secondary) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5) !important;
}

.tutorial-close {
    background: rgba(255, 255, 255, 0.08) !important;
    color: var(--gray-900) !important;
}

.tutorial-close:hover {
    background: rgba(255, 255, 255, 0.15) !important;
}

.tutorial-title {
    color: var(--gray-900) !important;
}

.tutorial-subtitle {
    color: var(--gray-600) !important;
}

/* ==========================================
   AXKAN DECORATIVE ELEMENTS
   ========================================== */

.axkan-divider {
    height: 3px;
    background: linear-gradient(90deg,
        var(--axkan-pink),
        var(--axkan-green),
        var(--axkan-orange),
        var(--axkan-turquoise),
        var(--axkan-red)
    );
    margin: 24px 0;
    border-radius: 2px;
}

.axkan-accent {
    border-left: 4px solid transparent;
    border-image: linear-gradient(to bottom, var(--axkan-pink), var(--primary-dark)) 1;
}

/* ==========================================
   TIER INFO (product quantity tiers)
   ========================================== */

.tier-info > div {
    background: linear-gradient(135deg, #059669, #047857) !important;
}

/* ==========================================
   ENHANCED INTERACTIONS
   ========================================== */

/* Input focus glow */
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    animation: inputFocusGlow 0.3s ease;
}

@keyframes inputFocusGlow {
    0% { box-shadow: 0 0 0 0 rgba(231, 42, 136, 0.3); }
    100% { box-shadow: 0 0 0 3px rgba(231, 42, 136, 0.12); }
}

/* Enhanced WhatsApp glow */
.success-actions a[href*="wa.me"]:hover {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Focus visible for accessibility */
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--axkan-pink);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
    outline: none;
}

/* ==========================================
   CONFIRM DATA DISPLAY (override inline bg)
   ========================================== */

#confirm-data-display {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid var(--border-light);
}

#confirm-data-display div[style*="font-size: 12px"] {
    color: var(--gray-600) !important;
}

#confirm-data-display div[style*="font-size: 16px"],
#confirm-data-display div[style*="font-size: 14px"] {
    color: var(--gray-900) !important;
}

/* ==========================================
   RESPONSIVE (Tablet)
   ========================================== */

@media (max-width: 768px) {
    .header {
        padding: 24px 20px;
    }

    .logo img {
        height: 60px;
    }

    .header h1 {
        font-size: 22px;
    }

    .card {
        padding: 24px 20px;
    }

    .products-grid {
        padding: 20px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-image {
        width: 80px;
        height: 80px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    ::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    ::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.15);
        border-radius: 4px;
    }

    ::-webkit-scrollbar-track {
        background: transparent;
    }
}

/* ==========================================
   RESPONSIVE (Mobile)
   ========================================== */

@media (max-width: 480px) {
    /* PERFORMANCE: Simplified background */
    .bg-orb {
        filter: blur(60px);
        opacity: 0.08;
        animation: none !important;
    }

    .bg-orb--naranja,
    .bg-orb--verde {
        display: none;
    }

    .app-container {
        padding: 0 16px;
    }

    /* Solid backgrounds instead of backdrop-filter */
    .header {
        padding: 20px 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(18, 18, 28, 0.92);
        border-radius: var(--radius-lg);
    }

    .header h1 {
        font-size: 20px;
    }

    .subtitle {
        font-size: 13px;
    }

    .logo img {
        height: 50px;
    }

    .card {
        padding: 22px 18px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(18, 18, 28, 0.92);
        border-radius: var(--radius-lg);
    }

    .card h2 {
        font-size: 19px;
    }

    .help-text {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 16px;
        font-size: 16px;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 8px;
    }

    .btn {
        padding: 16px 20px;
        font-size: 15px;
        min-height: 48px;
    }

    .btn-large {
        padding: 18px;
        font-size: 16px;
    }

    .btn-back {
        min-height: 48px;
        padding: 12px 16px;
    }

    .products-grid {
        padding: 12px;
        gap: 12px;
    }

    .product-card {
        padding: 16px;
        border-radius: var(--radius-md);
    }

    .product-header {
        gap: 12px;
    }

    .product-image {
        width: 70px;
        height: 70px;
        border-radius: var(--radius-sm);
    }

    .product-info h3 {
        font-size: 14px;
    }

    .product-category {
        font-size: 10px;
        padding: 3px 8px;
    }

    .product-price {
        font-size: 18px;
    }

    .product-price span {
        font-size: 12px;
    }

    .quantity-btn {
        width: 52px;
        height: 52px;
        font-size: 26px;
    }

    .quantity-input {
        width: 80px;
        font-size: 20px;
        padding: 14px 8px;
    }

    .product-quantity {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .quantity-controls {
        justify-content: center;
    }

    .sticky-header {
        padding: 12px 16px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 15, 0.95);
    }

    .sticky-header h2 {
        font-size: 16px;
    }

    .sticky-footer {
        padding: 14px 16px;
        padding-bottom: calc(14px + env(safe-area-inset-bottom));
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 15, 0.95);
    }

    .summary-row {
        font-size: 14px;
    }

    .summary-row.deposit {
        font-size: 15px;
    }

    .info-box {
        padding: 14px;
        font-size: 13px;
    }

    .info-box .icon {
        font-size: 20px;
    }

    .deposit-info-banner {
        margin: 0 16px 16px;
        padding: 12px 14px;
    }

    .deposit-info-icon {
        font-size: 24px;
    }

    .deposit-info-text strong {
        font-size: 13px;
    }

    .deposit-info-text p {
        font-size: 12px;
    }

    .payment-card {
        padding: 14px;
        gap: 12px;
    }

    .payment-icon {
        font-size: 28px;
    }

    .payment-info strong {
        font-size: 14px;
    }

    .payment-info p {
        font-size: 12px;
    }

    .bank-details {
        padding: 16px;
    }

    .bank-info {
        padding: 14px;
    }

    .info-row {
        padding: 8px 0;
        font-size: 13px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .order-summary-card {
        padding: 16px;
    }

    .order-item-name {
        font-size: 14px;
    }

    .order-item-details {
        font-size: 12px;
    }

    .file-upload-area {
        padding: 20px;
    }

    .upload-icon {
        font-size: 32px;
    }

    .success-container {
        padding: 40px 16px;
    }

    .success-icon {
        font-size: 60px;
    }

    .success-container h2 {
        font-size: 24px;
    }

    .product-search-container {
        padding: 0 12px 12px;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(10, 10, 15, 0.95);
    }

    .product-search {
        padding: 12px;
    }

    .product-search input {
        font-size: 16px;
    }

    .promo-code-section {
        padding: 8px 12px;
    }

    .promo-code-input-group input {
        font-size: 14px;
        padding: 12px;
    }

    .btn-apply-promo {
        padding: 12px 14px;
    }

    .size-btn {
        width: 56px;
        height: 56px;
        font-size: 18px;
    }

    .step-indicator {
        font-size: 12px;
    }

    .hamburger-btn {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(18, 18, 28, 0.95);
    }
}

/* ==========================================
   RESPONSIVE (Extra Small)
   ========================================== */

@media (max-width: 360px) {
    .header h1 {
        font-size: 18px;
    }

    .logo img {
        height: 45px;
    }

    .card h2 {
        font-size: 17px;
    }

    .quantity-btn {
        width: 48px;
        height: 48px;
        font-size: 22px;
    }

    .quantity-input {
        width: 70px;
        font-size: 18px;
    }

    .product-image {
        width: 60px;
        height: 60px;
    }

    .product-info h3 {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    .btn-large {
        font-size: 15px;
        padding: 16px;
    }
}

/* ==========================================
   SAFE AREA INSETS
   ========================================== */

@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .sticky-footer {
        padding-bottom: calc(16px + env(safe-area-inset-bottom));
    }

    .success-container {
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
    }
}

/* ==========================================
   REDUCED MOTION
   ========================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .bg-orb { animation: none !important; }
}

/* ═══════════════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════════════ */

@media (prefers-color-scheme: light) {
    :root {
        --bg-primary: #fafafa;
        --bg-secondary: #ffffff;
        --bg-tertiary: #f1f3f9;

        --gray-50: #f9fafb;
        --gray-100: #f3f4f6;
        --gray-200: #e5e7eb;
        --gray-300: #d1d5db;
        --gray-400: #9ca3af;
        --gray-500: #6b7280;
        --gray-600: #4b5563;
        --gray-700: #374151;
        --gray-800: #1f2937;
        --gray-900: #111827;

        --border-light: #E2E8F0;
        --border-medium: #CBD5E0;

        --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
        --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
        --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
        --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    }

    body {
        background: var(--bg-primary);
        color: var(--gray-900);
    }

    /* Light background scene */
    .bg-gradient {
        background: linear-gradient(135deg,
            #fafafa 0%, #f5f0f8 25%,
            #fafafa 50%, #f0f7fa 75%,
            #fafafa 100%
        );
    }

    .bg-orb { opacity: 0.06; filter: blur(100px); }
    .bg-mesh {
        background-image:
            radial-gradient(circle at 20% 50%, rgba(231, 42, 136, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 80% 20%, rgba(9, 173, 194, 0.04) 0%, transparent 50%),
            radial-gradient(circle at 50% 80%, rgba(243, 146, 35, 0.03) 0%, transparent 50%);
    }

    .app-container {
        background: transparent;
    }

    .header {
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    }

    .header::after {
        background: radial-gradient(circle at 20% 80%, rgba(231, 42, 136, 0.03) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(243, 146, 35, 0.03) 0%, transparent 50%);
    }

    .header h1 {
        background: linear-gradient(135deg, #1f2937, #374151);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .logo img {
        filter: drop-shadow(0 4px 8px rgba(231, 42, 136, 0.15));
    }

    .progress-bar {
        background: var(--gray-200);
    }

    .card {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    }

    .card h2 {
        background: linear-gradient(135deg, #1f2937, #374151);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        background: rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.1);
        color: var(--gray-900);
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
        color: var(--gray-400);
    }

    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--axkan-pink);
        background: rgba(231, 42, 136, 0.03);
        box-shadow: 0 0 0 3px rgba(231, 42, 136, 0.08);
    }

    .form-group input.error,
    .form-group textarea.error {
        background-color: rgba(239, 68, 68, 0.06);
    }

    .btn-primary {
        box-shadow: 0 4px 16px rgba(231, 42, 136, 0.2);
    }

    .btn-primary:hover {
        box-shadow: 0 8px 28px rgba(231, 42, 136, 0.3);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.6);
    }

    .btn-secondary:hover {
        background: rgba(231, 42, 136, 0.08);
    }

    .btn-back {
        color: var(--gray-600);
    }

    .btn-back:hover {
        color: var(--axkan-pink);
    }

    .sticky-header {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom-color: rgba(0, 0, 0, 0.06);
    }

    .product-card {
        background: rgba(255, 255, 255, 0.7);
        border-color: rgba(0, 0, 0, 0.06);
    }

    .product-card:hover {
        box-shadow: var(--shadow-lg);
        border-color: rgba(0, 0, 0, 0.12);
    }

    .product-card.selected {
        background: rgba(231, 42, 136, 0.02);
        border-color: var(--axkan-pink);
        box-shadow: 0 4px 12px rgba(231, 42, 136, 0.15);
    }

    .product-category {
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.1), rgba(243, 146, 35, 0.1));
    }

    .quantity-btn {
        background: rgba(255, 255, 255, 0.6);
        border-color: rgba(0, 0, 0, 0.1);
        color: var(--gray-900);
    }

    .quantity-input {
        background: rgba(0, 0, 0, 0.03);
        color: var(--gray-900);
    }

    .sticky-footer {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 -4px 12px rgba(0,0,0,0.05);
    }

    .shipping-indicator {
        background: var(--bg-tertiary);
        border-color: var(--border-light);
    }

    .payment-card {
        border-color: rgba(0, 0, 0, 0.06);
        background: rgba(255, 255, 255, 0.6);
    }

    .payment-option input[type="radio"]:checked + .payment-card {
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.05), rgba(243, 146, 35, 0.05));
    }

    .bank-details {
        background: var(--bg-tertiary);
        border-color: var(--border-light);
    }

    .bank-info {
        background: rgba(255, 255, 255, 0.6);
        border-color: rgba(0, 0, 0, 0.06);
    }

    .file-upload-area {
        border-color: rgba(0, 0, 0, 0.12);
        background: rgba(255, 255, 255, 0.5);
    }

    .file-upload-area:hover {
        border-color: var(--axkan-pink);
        background: rgba(231, 42, 136, 0.03);
    }

    .info-box {
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.06), rgba(243, 146, 35, 0.06));
    }

    .info-box-blue {
        background: #eff6ff;
        border-left-color: var(--primary);
    }

    .info-box-warning {
        background: #fef3c7;
        border-left-color: #f59e0b;
    }

    .deposit-info-banner {
        background: linear-gradient(135deg, #FCE4EC, #F8BBD9);
        border-color: #F48FB1;
    }

    .deposit-info-text strong {
        color: var(--primary-dark);
    }

    .returning-client-banner {
        background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
        border-color: #81C784;
    }

    .returning-text strong {
        color: #2E7D32;
    }

    .spei-tip {
        background: #E3F2FD;
        border-color: #90CAF9;
        color: #1565C0;
    }

    .spei-tip strong {
        color: #1565C0;
    }

    .copy-btn {
        background: var(--gray-100);
        border-color: var(--gray-300);
    }

    .copy-btn:hover {
        background: var(--gray-200);
    }

    .order-summary-card {
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.05), rgba(243, 146, 35, 0.05));
        border-color: var(--axkan-pink);
    }

    .payment-summary-box {
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.08), rgba(243, 146, 35, 0.08));
        border-color: rgba(231, 42, 136, 0.1);
    }

    .email-confirmation-notice {
        background: var(--gray-50);
        border-color: var(--gray-200);
    }

    .order-number {
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.08), rgba(243, 146, 35, 0.08));
        border-color: rgba(231, 42, 136, 0.2);
    }

    .product-search-container {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .product-search {
        background: rgba(0, 0, 0, 0.03);
        border-color: rgba(0, 0, 0, 0.08);
    }

    .product-search:focus-within {
        background: rgba(255, 255, 255, 0.8);
    }

    .product-search input {
        color: var(--gray-900);
    }

    .product-search input::placeholder {
        color: var(--gray-500);
    }

    .category-pill {
        background: var(--gray-100);
        border-color: var(--gray-200);
        color: var(--gray-700);
    }

    .category-pill:hover {
        background: var(--gray-200);
    }

    .promo-code-container {
        background: var(--bg-tertiary);
        border-color: var(--border-light);
    }

    .promo-code-input-group input {
        background: rgba(255, 255, 255, 0.6);
        border-color: rgba(0, 0, 0, 0.1);
        color: var(--gray-900);
    }

    .promo-code-input-group input::placeholder {
        color: var(--gray-400);
    }

    .notes-summary {
        background: var(--gray-50);
        color: var(--gray-700);
    }

    #client-notes {
        background: white;
        color: var(--gray-900);
    }

    #client-notes::placeholder {
        color: var(--gray-400);
    }

    .modal {
        background: rgba(0, 0, 0, 0.5);
    }

    .modal .card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    #confirm-data-display {
        background: var(--gray-50) !important;
        border-color: var(--border-light);
    }

    .hamburger-btn {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-color: rgba(0, 0, 0, 0.06);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .hamburger-line {
        background: var(--gray-700);
    }

    .mobile-menu {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left-color: rgba(0, 0, 0, 0.06);
    }

    .mobile-menu-header {
        border-bottom-color: var(--gray-200);
        background: linear-gradient(135deg, rgba(231, 42, 136, 0.05), rgba(243, 146, 35, 0.05));
    }

    .mobile-menu-close {
        background: var(--gray-100);
        color: var(--gray-700);
    }

    .mobile-menu-item {
        color: var(--gray-700);
    }

    .mobile-menu-item:hover,
    .mobile-menu-item:active {
        background: var(--gray-50);
    }

    .mobile-menu-divider {
        background: var(--gray-200);
    }

    .mobile-menu-footer {
        border-top-color: var(--gray-200);
        background: var(--gray-50);
    }

    .success-container h2 {
        -webkit-text-fill-color: unset;
    }

    .tutorial-modal {
        background: rgba(255, 255, 255, 0.92) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }

    .tutorial-close {
        background: rgba(0, 0, 0, 0.08) !important;
        color: #333 !important;
    }

    .tutorial-title {
        color: #111 !important;
    }

    .tutorial-subtitle {
        color: #666 !important;
    }

    .colonia-select {
        background-color: white;
        border-color: var(--border-light);
        color: var(--gray-900);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    }

    .promo-applied-banner {
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
        border-color: rgba(16, 185, 129, 0.3);
    }

    .promo-applied-text strong {
        color: #059669;
    }

    .btn-remove-promo {
        background: rgba(0,0,0,0.1);
    }

    .btn-text-link {
        color: var(--gray-600);
    }
}

/* Light mode + mobile */
@media (prefers-color-scheme: light) and (max-width: 480px) {
    .header,
    .card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.95);
    }

    .sticky-header,
    .sticky-footer,
    .product-search-container {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }

    .hamburger-btn {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}
