/* ============================================
   ALIEN PASTÉIS — INTERGALACTIC THEME
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg-deep:    #050510;
    --bg-space:   #0a0a2e;
    --bg-card:    rgba(15, 15, 50, 0.85);
    --neon-green: #00ff88;
    --neon-purple:#bf5af2;
    --neon-blue:  #00d4ff;
    --neon-pink:  #ff6b9d;
    --text-main:  #e8e8f0;
    --text-dim:   #8888aa;
    --text-bright:#ffffff;
    --glow-green: 0 0 20px rgba(0,255,136,0.3);
    --glow-purple:0 0 20px rgba(191,90,242,0.3);
    --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg-deep);
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== STARFIELD ===== */
.starfield {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle var(--dur, 3s) ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%   { opacity: var(--opa-min, 0.2); transform: scale(0.8); }
    100% { opacity: var(--opa-max, 1);   transform: scale(1.3); }
}

/* ===== SHOOTING STARS ===== */
.shooting-star {
    position: fixed;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--neon-green), #fff);
    border-radius: 2px;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
}
.ss-1 { animation: shoot 6s linear 2s infinite; top: 10%; left: -120px; }
.ss-2 { animation: shoot 8s linear 5s infinite; top: 30%; left: -120px; }
.ss-3 { animation: shoot 7s linear 9s infinite; top: 55%; left: -120px; }

@keyframes shoot {
    0%   { transform: translateX(0) translateY(0) rotate(-25deg); opacity: 0; }
    3%   { opacity: 1; }
    20%  { transform: translateX(110vw) translateY(30vh) rotate(-25deg); opacity: 0; }
    100% { opacity: 0; }
}

/* ===== ICONS ===== */
.ui-icon {
    width: 1em;
    height: 1em;
    display: inline-block;
    flex-shrink: 0;
}

.ui-icon-xs {
    width: 14px;
    height: 14px;
}

.ui-icon-sm {
    width: 18px;
    height: 18px;
}

.ui-icon-md {
    width: 24px;
    height: 24px;
}

.text-with-icon,
.icon-text-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 20px 50px;
    background: radial-gradient(ellipse at center, rgba(191,90,242,0.15) 0%, transparent 70%);
}

.hero-content { position: relative; }

.hero-alien {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0,255,136,0.5));
}

.hero-brand-icon {
    width: 80px;
    height: 80px;
    stroke-width: 1.6;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-15px); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 900;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    margin-top: 10px;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: 'Orbitron', monospace;
    font-size: clamp(14px, 3vw, 20px);
    color: var(--text-dim);
    margin-top: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,255,136,0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.2); }
}

/* ===== CATEGORY NAV ===== */
.category-nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(5, 5, 16, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,255,136,0.15);
    padding: 12px 0;
}

.nav-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
}

.nav-scroll::-webkit-scrollbar { display: none; }

.nav-pill {
    flex-shrink: 0;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0,255,136,0.25);
    color: var(--text-dim);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.nav-pill:hover,
.nav-pill.active {
    background: rgba(0,255,136,0.15);
    color: var(--neon-green);
    border-color: var(--neon-green);
    box-shadow: var(--glow-green);
}

/* ===== MENU ===== */
.menu-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.menu-section {
    margin-bottom: 50px;
    scroll-margin-top: 70px;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: clamp(18px, 4vw, 28px);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(191,90,242,0.2);
}

.title-glow {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(0,255,136,0.1);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s;
    animation: fadeInUp 0.5s ease both;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: default;
}

.product-card:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 25px rgba(0,255,136,0.15), inset 0 0 25px rgba(0,255,136,0.03);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.product-name {
    font-family: 'Orbitron', monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
    margin-bottom: 12px;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.product-price {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0,255,136,0.3);
}

.btn-add {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--neon-green);
    background: transparent;
    color: var(--neon-green);
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-add .ui-icon {
    width: 18px;
    height: 18px;
}

.btn-add:hover {
    background: var(--neon-green);
    color: var(--bg-deep);
    box-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.btn-add:active {
    transform: scale(0.9);
}

/* ===== CART FLOAT BAR ===== */
.cart-float {
    position: fixed;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    z-index: 60;
    width: min(420px, calc(100% - 24px));
    min-height: 74px;
    border-radius: 22px;
    background: linear-gradient(135deg, #00b866 0%, var(--neon-green) 100%);
    border: 1px solid rgba(0,255,136,0.24);
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0,255,136,0.24);
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.2s ease;
    animation: cartDockFloat 3s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
}

.cart-float:hover {
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 22px 44px rgba(0,255,136,0.32);
}

@keyframes cartDockFloat {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-4px); }
}

.cart-float.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
    animation: none;
}

.cart-float-main {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.cart-float-icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(255,255,255,0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.cart-float-count {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    text-align: left;
}

.cart-float-total {
    font-family: 'Orbitron', monospace;
    font-size: 17px;
    font-weight: 900;
    white-space: nowrap;
}

/* ===== CART SIDEBAR ===== */
.cart-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    z-index: 70;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
    position: fixed;
    top: 0; right: -400px; bottom: 0;
    width: 380px;
    max-width: 100vw;
    background: rgba(10, 10, 46, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0,255,136,0.15);
    z-index: 80;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
}
.cart-sidebar.open { right: 0; }

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0,255,136,0.15);
}
.cart-header h2 {
    font-family: 'Orbitron', monospace;
    font-size: 18px;
    color: var(--neon-green);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cart-close {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-dim);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cart-close:hover { color: var(--neon-pink); }

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
}

.cart-empty {
    text-align: center;
    color: var(--text-dim);
    padding: 40px 0;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    margin-bottom: 10px;
}

.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-bright);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-item-variant {
    font-size: 11px;
    color: var(--neon-purple);
}
.cart-item-price {
    font-size: 13px;
    color: var(--neon-green);
    font-weight: 600;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: var(--text-main);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}
.qty-btn:hover {
    border-color: var(--neon-green);
    color: var(--neon-green);
}
.qty-btn.remove:hover {
    border-color: var(--neon-pink);
    color: var(--neon-pink);
}
.qty-value {
    font-size: 14px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-footer {
    padding: 16px 20px;
    border-top: 1px solid rgba(0,255,136,0.15);
}
.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
    font-family: 'Orbitron', monospace;
    font-size: 18px;
}
.cart-total strong { color: var(--neon-green); text-shadow: 0 0 10px rgba(0,255,136,0.3); }

.btn-checkout {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    color: var(--bg-deep);
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-checkout:hover {
    box-shadow: 0 0 30px rgba(0,255,136,0.4);
    transform: translateY(-2px);
}

/* ===== VARIANT MODAL ===== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}
.modal-overlay.active { display: flex; }

.modal-card {
    background: var(--bg-space);
    border: 1px solid rgba(0,255,136,0.2);
    border-radius: var(--radius);
    width: 100%;
    max-width: 420px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 40px rgba(0,255,136,0.1);
}

.modal-checkout { max-width: 520px; }

.modal-header-client {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(0,255,136,0.1);
}
.modal-header-client h3 {
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    color: var(--neon-green);
}

.modal-close-client {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--text-dim);
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.modal-close-client:hover { color: var(--neon-pink); }

.variant-options { padding: 16px 20px; }

.variant-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(0,255,136,0.15);
    border-radius: 12px;
    background: rgba(255,255,255,0.03);
    color: var(--text-main);
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: all 0.3s;
}
.variant-btn:hover {
    border-color: var(--neon-green);
    background: rgba(0,255,136,0.08);
}
.variant-btn .v-name { font-weight: 600; }
.variant-btn .v-price {
    color: var(--neon-green);
    font-family: 'Orbitron', monospace;
    font-size: 14px;
}

/* ===== CHECKOUT ===== */
.checkout-body { padding: 20px; }

.form-group-client { margin-bottom: 16px; }
.form-group-client label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 6px;
}

.form-group-client input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,255,136,0.15);
    border-radius: 10px;
    background: rgba(255,255,255,0.05);
    color: var(--text-bright);
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-group-client input:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px rgba(0,255,136,0.15);
}
.form-group-client input::placeholder { color: rgba(255,255,255,0.2); }

.map-section { margin-bottom: 20px; }
.map-section label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.checkout-map {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    border: 1px solid rgba(0,255,136,0.15);
    overflow: hidden;
}

.map-hint {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    color: var(--text-dim);
}

.delivery-quote-panel {
    margin-top: 14px;
    margin-bottom: 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    padding: 14px;
    transition: border-color 0.2s, background 0.2s;
}

.delivery-quote-panel.is-loading {
    border-color: rgba(0,255,136,0.28);
    background: rgba(0,255,136,0.08);
}

.delivery-quote-panel.is-ready {
    border-color: rgba(0,255,136,0.32);
    background: rgba(0,255,136,0.1);
}

.delivery-quote-panel.is-error {
    border-color: rgba(255,107,107,0.3);
    background: rgba(255,107,107,0.08);
}

.delivery-quote-status {
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-main);
}

.delivery-quote-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.delivery-quote-item {
    border-radius: 10px;
    padding: 12px;
    background: rgba(0,0,0,0.18);
    border: 1px solid rgba(255,255,255,0.06);
}

.delivery-quote-item span {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dim);
}

.delivery-quote-item strong {
    display: block;
    color: var(--text-main);
    font-size: 15px;
}

.btn-send-order {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.btn-send-order:hover {
    box-shadow: 0 0 30px rgba(37,211,102,0.4);
    transform: translateY(-2px);
}

.btn-send-order:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    box-shadow: none;
    transform: none;
    background: linear-gradient(135deg, rgba(148,163,184,0.6), rgba(100,116,139,0.75));
}

/* ===== FOOTER ===== */
.site-footer {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid rgba(0,255,136,0.1);
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    color: var(--text-dim);
}

body.has-cart-float .site-footer {
    padding-bottom: 120px;
}

.footer-brand {
    justify-content: center;
    gap: 10px;
}

.footer-sub { font-size: 11px; margin-top: 6px; color: rgba(255,255,255,0.3); }

/* ===== TOAST ===== */
.toast-client {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--neon-green);
    color: var(--bg-deep);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    z-index: 200;
    animation: toastPop 0.3s, toastFade 0.3s 2s forwards;
    box-shadow: 0 4px 20px rgba(0,255,136,0.4);
    white-space: nowrap;
}

@keyframes toastPop {
    0%   { transform: translateX(-50%) scale(0.5); opacity: 0; }
    100% { transform: translateX(-50%) scale(1);   opacity: 1; }
}
@keyframes toastFade {
    from { opacity: 1; }
    to   { opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero { padding: 50px 20px 30px; }
    .hero-brand-icon { width: 60px; height: 60px; }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar { width: 100%; }

    .modal-checkout { max-width: 100%; }

    .checkout-map { height: 200px; }

    .cart-float {
        width: calc(100% - 20px);
        bottom: 10px;
        padding: 14px 16px;
        border-radius: 18px;
    }

    .cart-float-count {
        font-size: 16px;
    }

    .cart-float-total {
        font-size: 15px;
    }

    body.has-cart-float .site-footer {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title { letter-spacing: 0; }
    .hero-subtitle { letter-spacing: 2px; }

    .product-card { padding: 16px; }
    .product-name { font-size: 14px; }
    .product-price { font-size: 14px; }
}

/* ===== LEAFLET OVERRIDE ===== */
.leaflet-container {
    font-family: 'Inter', sans-serif;
}

/* ===== CHECKOUT STEPS ===== */
.checkout-steps {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0,255,136,0.1);
}

.checkout-step-ind {
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid rgba(255,255,255,0.15);
    color: var(--text-dim);
    transition: all 0.3s;
    flex-shrink: 0;
}

.step-label {
    font-size: 13px;
    color: var(--text-dim);
    font-weight: 500;
    transition: color 0.3s;
}

.checkout-step-ind.active .step-num {
    background: var(--neon-green);
    border-color: var(--neon-green);
    color: var(--bg-deep);
    box-shadow: 0 0 12px rgba(0,255,136,0.4);
}

.checkout-step-ind.active .step-label {
    color: var(--neon-green);
}

.steps-line {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 0 12px;
}

/* NEXT STEP BUTTON */
.btn-next-step {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--neon-green);
    border-radius: 12px;
    background: rgba(0,255,136,0.08);
    color: var(--neon-green);
    font-family: 'Orbitron', monospace;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    justify-content: center;
}
.btn-next-step:hover {
    background: var(--neon-green);
    color: var(--bg-deep);
    box-shadow: 0 0 25px rgba(0,255,136,0.4);
}

/* ADDRESS SUMMARY */
.address-summary { margin-bottom: 14px; }
.addr-summary-inner {
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(0,255,136,0.07);
    border: 1px solid rgba(0,255,136,0.15);
    font-size: 13px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.addr-summary-inner strong { color: var(--neon-green); }

/* MAP CONTROLS ROW */
.map-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 8px;
}
.map-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
}

/* LAYER TOGGLE */
.map-layer-toggle {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0,255,136,0.2);
}
.layer-btn {
    padding: 6px 14px;
    background: transparent;
    border: none;
    color: var(--text-dim);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.5px;
}
.layer-btn:first-child { border-right: 1px solid rgba(0,255,136,0.2); }
.layer-btn.active {
    background: rgba(0,255,136,0.15);
    color: var(--neon-green);
}
.layer-btn:hover:not(.active) {
    background: rgba(255,255,255,0.05);
    color: var(--text-main);
}

/* STEP ACTIONS: back + send */
.checkout-step-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.btn-back-step {
    padding: 14px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    background: transparent;
    color: var(--text-dim);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    justify-content: center;
}
.btn-back-step:hover {
    border-color: rgba(255,255,255,0.3);
    color: var(--text-main);
}
.checkout-step-actions .btn-send-order {
    flex: 1;
    margin-top: 0;
    padding: 14px 10px;
    font-size: 13px;
}

@media (max-width: 400px) {
    .checkout-step-actions { flex-direction: column; }
    .btn-back-step { width: 100%; text-align: center; }
    .delivery-quote-grid { grid-template-columns: 1fr; }
}
