/* ═══════════════════════════════════════════════════════════════════
   ORIYA LIQUID ACRYLIC DESIGN SYSTEM v3.0
   Premium Touchscreen — Apple Vision Pro / Luxury Automotive
   Primary: #0F2F6B  Accent: #D4AF37  Background: #F7F5F0
   ═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --navy:        #0F2F6B;
    --navy-mid:    #1a4a9e;
    --navy-light:  #2560c8;
    --gold:        #D4AF37;
    --gold-bright: #E8C84A;
    --gold-pale:   #FBF6E3;
    --bg:          #F7F5F0;
    --bg2:         #F2EFE8;
    --bg3:         #ECE8E0;
    --white:       #FFFFFF;
    --text:        #111111;
    --text2:       #4a5568;
    --text3:       #94a3b8;
    --font:        'Inter', sans-serif;
}

/* ── GLOBAL PAGE ─────────────────────────────────────────────────── */
html, body {
    font-family: var(--font);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    background-color: var(--bg);
    background-image:
        radial-gradient(ellipse at 0% 0%,   rgba(15,47,107,0.055) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(212,175,55,0.055) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%,  rgba(15,47,107,0.030) 0%, transparent 45%),
        radial-gradient(ellipse at 0% 100%,  rgba(212,175,55,0.030) 0%, transparent 45%),
        linear-gradient(160deg, #F7F5F0 0%, #F2EFE8 50%, #EDE9E0 100%);
}

/* ── SCROLLBAR ───────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(15,47,107,0.14); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15,47,107,0.24); }

/* ══════════════════════════════════════════════════════════════════
   TOP NAVIGATION BAR
   ══════════════════════════════════════════════════════════════════ */
.oriya-topbar {
    height: 58px;
    padding: 0 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    position: relative;
    z-index: 20;

    /* Warm frosted glass panel */
    background: linear-gradient(180deg,
        rgba(255,255,255,0.92) 0%,
        rgba(247,245,240,0.82) 100%
    );
    border-bottom: 1px solid rgba(255,255,255,0.85);

    /* Depth shadows */
    box-shadow:
        0 1px 0 rgba(212,175,55,0.12),
        0 4px 24px rgba(15,47,107,0.08),
        0 1px 3px rgba(0,0,0,0.04),
        inset 0 1px 0 rgba(255,255,255,0.98);

    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
}

/* Top gloss streak on navbar */
.oriya-topbar::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 40%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.70) 0%,
        rgba(255,255,255,0.0) 100%
    );
    pointer-events: none;
}

.oriya-brand {
    font-size: 20px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.4px;
}
.oriya-brand span { color: var(--gold); }
.oriya-divider { width: 1px; height: 20px; background: rgba(15,47,107,0.12); }
.oriya-biz { font-size: 12px; font-weight: 500; color: var(--text2); }
.oriya-clock {
    font-size: 12px; font-weight: 700; color: var(--text2);
    background: rgba(15,47,107,0.05);
    border: 1px solid rgba(255,255,255,0.7);
    padding: 5px 11px; border-radius: 9px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.9), 0 1px 4px rgba(0,0,0,0.04);
}

/* ── GOLD ACCENT LINE ────────────────────────────────────────────── */
.gold-line {
    height: 2px;
    flex-shrink: 0;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(212,175,55,0.25) 15%,
        rgba(212,175,55,0.75) 35%,
        var(--gold) 50%,
        rgba(212,175,55,0.75) 65%,
        rgba(212,175,55,0.25) 85%,
        transparent 100%
    );
}

/* ══════════════════════════════════════════════════════════════════
   ACRYLIC GLASS BUTTONS
   ══════════════════════════════════════════════════════════════════ */
.btn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    padding: 10px 20px; border-radius: 13px; border: none;
    font-family: var(--font); font-size: 13px; font-weight: 700;
    cursor: pointer; text-decoration: none; color: white;
    position: relative; overflow: hidden;
    transition: all 0.22s cubic-bezier(0.34,1.4,0.64,1);

    background: linear-gradient(160deg,
        #1a4fb8 0%,
        var(--navy) 50%,
        #0a2558 100%
    );
    box-shadow:
        0 8px 28px rgba(15,47,107,0.38),
        0 3px 8px rgba(15,47,107,0.22),
        0 1px 2px rgba(0,0,0,0.15),
        inset 0 1px 3px rgba(255,255,255,0.18),
        inset 0 -2px 4px rgba(0,0,0,0.15);
    border: 1px solid rgba(255,255,255,0.12);
}
/* Top gloss reflection on button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 50%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.0) 100%
    );
    border-radius: 13px 13px 0 0;
    pointer-events: none;
}
/* Crystal edge highlight */
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 13px;
    background: linear-gradient(135deg,
        rgba(255,255,255,0.15) 0%,
        transparent 40%,
        transparent 60%,
        rgba(212,175,55,0.08) 100%
    );
    pointer-events: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 14px 36px rgba(15,47,107,0.45),
        0 5px 12px rgba(15,47,107,0.28),
        0 1px 3px rgba(0,0,0,0.15),
        inset 0 1px 3px rgba(255,255,255,0.22),
        inset 0 -2px 4px rgba(0,0,0,0.15);
}
.btn-primary:active {
    transform: translateY(0) scale(0.97);
    box-shadow:
        0 4px 14px rgba(15,47,107,0.35),
        inset 0 2px 6px rgba(0,0,0,0.18),
        inset 0 1px 2px rgba(255,255,255,0.1);
}
.btn-primary:disabled {
    background: linear-gradient(160deg, #b0b8cc, #8a94a8);
    box-shadow: 0 3px 10px rgba(0,0,0,0.1), inset 0 1px 2px rgba(255,255,255,0.1);
    cursor: not-allowed; transform: none; opacity: 0.7;
}

/* GOLD BUTTON */
.btn-gold {
    background: linear-gradient(160deg,
        var(--gold-bright) 0%,
        var(--gold) 45%,
        #a8881a 100%
    );
    box-shadow:
        0 8px 28px rgba(212,175,55,0.45),
        0 3px 8px rgba(212,175,55,0.28),
        inset 0 1px 3px rgba(255,255,255,0.28),
        inset 0 -2px 4px rgba(0,0,0,0.12);
    border-color: rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.96);
}
.btn-gold:hover {
    box-shadow:
        0 14px 36px rgba(212,175,55,0.52),
        0 5px 12px rgba(212,175,55,0.35),
        inset 0 1px 3px rgba(255,255,255,0.3),
        inset 0 -2px 4px rgba(0,0,0,0.1);
}

/* GLASS BUTTON (secondary) */
.btn-glass {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    padding: 8px 15px; border-radius: 11px;
    font-family: var(--font); font-size: 12px; font-weight: 600;
    cursor: pointer; text-decoration: none; color: var(--text2);
    position: relative; overflow: hidden;
    transition: all 0.2s ease;

    background: linear-gradient(160deg,
        rgba(255,255,255,0.82) 0%,
        rgba(247,245,240,0.68) 100%
    );
    border: 1px solid rgba(255,255,255,0.80);
    box-shadow:
        0 4px 14px rgba(15,47,107,0.07),
        0 1px 3px rgba(0,0,0,0.05),
        inset 0 1px 3px rgba(255,255,255,0.96),
        inset 0 -2px 4px rgba(0,0,0,0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.btn-glass::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.55) 0%, transparent 100%);
    border-radius: 11px 11px 0 0; pointer-events: none;
}
.btn-glass:hover {
    color: var(--navy);
    transform: translateY(-1px);
    box-shadow:
        0 6px 20px rgba(15,47,107,0.10),
        0 2px 5px rgba(0,0,0,0.06),
        inset 0 1px 3px rgba(255,255,255,0.98),
        inset 0 -2px 4px rgba(0,0,0,0.04);
}

/* ══════════════════════════════════════════════════════════════════
   GLASS INPUT FIELDS
   ══════════════════════════════════════════════════════════════════ */
.glass-input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 13px;
    font-family: var(--font); font-size: 14px; color: var(--text);
    outline: none;
    -webkit-appearance: none;
    transition: all 0.2s ease;

    background: linear-gradient(160deg,
        rgba(255,255,255,0.88) 0%,
        rgba(247,245,240,0.72) 100%
    );
    border: 1px solid rgba(255,255,255,0.82);
    box-shadow:
        0 3px 12px rgba(15,47,107,0.06),
        0 1px 3px rgba(0,0,0,0.04),
        inset 0 2px 6px rgba(255,255,255,0.95),
        inset 0 -2px 4px rgba(0,0,0,0.03),
        inset 2px 0 4px rgba(255,255,255,0.6),
        inset -2px 0 4px rgba(255,255,255,0.6);
    backdrop-filter: blur(12px);
}
.glass-input:focus {
    border-color: rgba(15,47,107,0.28);
    box-shadow:
        0 0 0 3px rgba(15,47,107,0.09),
        0 3px 12px rgba(15,47,107,0.08),
        inset 0 2px 6px rgba(255,255,255,0.98),
        inset 0 -2px 4px rgba(0,0,0,0.03);
}
.glass-input::placeholder { color: var(--text3); font-size: 13px; }

/* ══════════════════════════════════════════════════════════════════
   VEHICLE TOGGLE
   ══════════════════════════════════════════════════════════════════ */
.veh-toggle {
    display: flex;
    background: linear-gradient(160deg, rgba(247,245,240,0.9), rgba(236,232,224,0.8));
    border: 1px solid rgba(255,255,255,0.80);
    border-radius: 13px;
    padding: 3px;
    flex-shrink: 0;
    box-shadow:
        0 3px 12px rgba(15,47,107,0.07),
        inset 0 1px 3px rgba(255,255,255,0.9),
        inset 0 -1px 3px rgba(0,0,0,0.06);
    backdrop-filter: blur(12px);
}
.veh-opt {
    padding: 7px 14px; border-radius: 10px; border: none; background: none;
    font-family: var(--font); font-size: 12px; font-weight: 600; color: var(--text2);
    cursor: pointer; display: flex; align-items: center; gap: 5px;
    white-space: nowrap; transition: all 0.2s cubic-bezier(0.34,1.4,0.64,1);
    position: relative; overflow: hidden;
}
.veh-opt.active {
    color: white;
    background: linear-gradient(160deg, #1a4fb8 0%, var(--navy) 60%, #0a2558 100%);
    box-shadow:
        0 4px 14px rgba(15,47,107,0.35),
        0 1px 3px rgba(15,47,107,0.2),
        inset 0 1px 2px rgba(255,255,255,0.18),
        inset 0 -1px 3px rgba(0,0,0,0.12);
    border: 1px solid rgba(255,255,255,0.1);
}
.veh-opt.active::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 45%;
    background: linear-gradient(180deg, rgba(255,255,255,0.18) 0%, transparent 100%);
    border-radius: 10px 10px 0 0; pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════════
   SEARCH REG INPUT (special luxury treatment)
   ══════════════════════════════════════════════════════════════════ */
.reg-inp {
    flex: 1; padding: 11px 16px;
    border-radius: 14px;
    font-size: 22px; font-weight: 900; letter-spacing: 6px;
    text-transform: uppercase; font-family: 'Courier New', monospace;
    color: var(--navy); outline: none; -webkit-appearance: none;
    transition: all 0.2s ease;

    background: linear-gradient(160deg,
        rgba(255,255,255,0.92) 0%,
        rgba(247,245,240,0.78) 100%
    );
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow:
        0 4px 16px rgba(15,47,107,0.08),
        0 1px 4px rgba(0,0,0,0.05),
        inset 0 2px 8px rgba(255,255,255,0.98),
        inset 0 -3px 6px rgba(0,0,0,0.04),
        inset 3px 0 6px rgba(255,255,255,0.7),
        inset -3px 0 6px rgba(255,255,255,0.7);
    backdrop-filter: blur(16px);
}
.reg-inp:focus {
    border-color: rgba(15,47,107,0.30);
    box-shadow:
        0 0 0 3px rgba(15,47,107,0.10),
        0 4px 16px rgba(15,47,107,0.10),
        inset 0 2px 8px rgba(255,255,255,0.98),
        inset 0 -3px 6px rgba(0,0,0,0.04);
}
.reg-inp::placeholder {
    font-size: 13px; letter-spacing: 1px; font-weight: 500;
    color: var(--text3); font-family: var(--font);
}

/* SEARCH BUTTON — circular acrylic */
.btn-search {
    width: 46px; height: 46px; border-radius: 50%;
    border: none; cursor: pointer; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: white;
    position: relative; overflow: hidden;
    transition: all 0.22s cubic-bezier(0.34,1.4,0.64,1);

    background: linear-gradient(160deg, #1a4fb8 0%, var(--navy) 55%, #0a2558 100%);
    box-shadow:
        0 8px 24px rgba(15,47,107,0.40),
        0 3px 8px rgba(15,47,107,0.24),
        inset 0 1px 3px rgba(255,255,255,0.20),
        inset 0 -2px 4px rgba(0,0,0,0.16);
    border: 1px solid rgba(255,255,255,0.12);
}
.btn-search::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, transparent 100%);
    border-radius: 50% 50% 0 0; pointer-events: none;
}
.btn-search:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 12px 30px rgba(15,47,107,0.46),
        0 5px 10px rgba(15,47,107,0.28),
        inset 0 1px 3px rgba(255,255,255,0.22),
        inset 0 -2px 4px rgba(0,0,0,0.16);
}
.btn-search:active { transform: scale(0.95); box-shadow: 0 4px 14px rgba(15,47,107,0.35), inset 0 3px 7px rgba(0,0,0,0.2); }

/* ══════════════════════════════════════════════════════════════════
   CUSTOMER STRIP
   ══════════════════════════════════════════════════════════════════ */
.customer-strip {
    border-radius: 18px;
    padding: 12px 16px;
    position: relative; overflow: hidden;
    transition: all 0.2s ease;

    background: linear-gradient(160deg,
        rgba(255,255,255,0.88) 0%,
        rgba(247,245,240,0.72) 100%
    );
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow:
        0 8px 28px rgba(15,47,107,0.07),
        0 2px 6px rgba(0,0,0,0.04),
        inset 0 2px 5px rgba(255,255,255,0.96),
        inset 0 -4px 8px rgba(0,0,0,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    animation: glassSlide 0.25s ease;
}
.customer-strip::after {
    content: '';
    position: absolute; top: 0; left: 5%; right: 5%; height: 38%;
    background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
@keyframes glassSlide { from{opacity:0;transform:translateY(-5px);} to{opacity:1;transform:translateY(0);} }

.customer-strip.returning { border-color: rgba(22,163,74,0.22); box-shadow: 0 8px 28px rgba(22,163,74,0.08), 0 2px 6px rgba(0,0,0,0.04), inset 0 2px 5px rgba(255,255,255,0.96), 0 0 0 1px rgba(22,163,74,0.10); }
.customer-strip.new-c { border-color: rgba(212,175,55,0.28); box-shadow: 0 8px 28px rgba(212,175,55,0.09), 0 2px 6px rgba(0,0,0,0.04), inset 0 2px 5px rgba(255,255,255,0.96), 0 0 0 1px rgba(212,175,55,0.12); }
.customer-strip.free-c { border-color: rgba(212,175,55,0.40); box-shadow: 0 8px 28px rgba(212,175,55,0.14), 0 2px 6px rgba(212,175,55,0.08), inset 0 2px 5px rgba(255,255,255,0.96), 0 0 0 2px rgba(212,175,55,0.18); }

.customer-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 800; color: white; flex-shrink: 0;
    background: linear-gradient(160deg, #1a4fb8, var(--navy));
    box-shadow: 0 4px 14px rgba(15,47,107,0.35), inset 0 1px 2px rgba(255,255,255,0.18);
    position: relative; overflow: hidden;
}
.customer-avatar::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.20) 0%, transparent 100%);
    border-radius: 50% 50% 0 0; pointer-events: none;
}

.loyalty-tag {
    border-radius: 20px; padding: 5px 13px;
    font-size: 11px; font-weight: 700; white-space: nowrap;
    position: relative; overflow: hidden;
}
.loyalty-tag.normal {
    background: linear-gradient(160deg, #1a4fb8 0%, var(--navy) 100%);
    color: white;
    box-shadow: 0 3px 12px rgba(15,47,107,0.30), inset 0 1px 2px rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.10);
}
.loyalty-tag.free {
    background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 50%, #a8881a 100%);
    color: white;
    box-shadow: 0 3px 12px rgba(212,175,55,0.40), inset 0 1px 2px rgba(255,255,255,0.20);
    animation: goldGlow 1.5s infinite;
}
@keyframes goldGlow { 0%,100%{box-shadow:0 3px 12px rgba(212,175,55,0.40),inset 0 1px 2px rgba(255,255,255,0.20);} 50%{box-shadow:0 3px 20px rgba(212,175,55,0.62),inset 0 1px 2px rgba(255,255,255,0.25);} }

/* ══════════════════════════════════════════════════════════════════
   NEW CUSTOMER PANEL
   ══════════════════════════════════════════════════════════════════ */
.new-customer-panel {
    border-radius: 22px; padding: 17px 19px;
    position: relative; overflow: hidden;
    animation: glassSlide 0.25s ease;

    background: linear-gradient(160deg,
        rgba(255,255,255,0.88) 0%,
        rgba(247,245,240,0.72) 100%
    );
    border: 1px solid rgba(212,175,55,0.22);
    box-shadow:
        0 10px 32px rgba(15,47,107,0.07),
        0 3px 8px rgba(0,0,0,0.04),
        inset 0 2px 5px rgba(255,255,255,0.96),
        inset 0 -4px 8px rgba(0,0,0,0.03),
        0 0 0 1px rgba(212,175,55,0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.new-customer-panel::after {
    content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 38%;
    background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
.new-panel-title {
    font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--gold);
    display: flex; align-items: center; gap: 6px; margin-bottom: 13px;
    position: relative; z-index: 1;
}
.btn-save-customer {
    width: 100%; padding: 12px; border-radius: 13px; border: none;
    font-family: var(--font); font-size: 13px; font-weight: 700;
    cursor: pointer; color: white; position: relative; overflow: hidden;
    transition: all 0.22s cubic-bezier(0.34,1.4,0.64,1);

    background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 45%, #a8881a 100%);
    box-shadow:
        0 6px 22px rgba(212,175,55,0.42),
        0 2px 6px rgba(212,175,55,0.25),
        inset 0 1px 3px rgba(255,255,255,0.26),
        inset 0 -2px 4px rgba(0,0,0,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    margin-top: 4px;
}
.btn-save-customer::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 48%;
    background: linear-gradient(180deg, rgba(255,255,255,0.20) 0%, transparent 100%);
    border-radius: 13px 13px 0 0; pointer-events: none;
}
.btn-save-customer:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(212,175,55,0.50), 0 4px 10px rgba(212,175,55,0.28), inset 0 1px 3px rgba(255,255,255,0.28), inset 0 -2px 4px rgba(0,0,0,0.10); }

/* ══════════════════════════════════════════════════════════════════
   CATEGORY TABS — Molded Acrylic Pills
   ══════════════════════════════════════════════════════════════════ */
.cat-tab {
    padding: 7px 16px; border-radius: 22px;
    font-family: var(--font); font-size: 12px; font-weight: 600;
    cursor: pointer; color: var(--text2);
    position: relative; overflow: hidden;
    transition: all 0.22s cubic-bezier(0.34,1.4,0.64,1);

    background: linear-gradient(160deg,
        rgba(255,255,255,0.78) 0%,
        rgba(247,245,240,0.60) 100%
    );
    border: 1px solid rgba(255,255,255,0.78);
    box-shadow:
        0 3px 10px rgba(15,47,107,0.06),
        0 1px 3px rgba(0,0,0,0.04),
        inset 0 1px 3px rgba(255,255,255,0.92),
        inset 0 -1px 3px rgba(0,0,0,0.04);
    backdrop-filter: blur(10px);
}
.cat-tab::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 48%;
    background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, transparent 100%);
    border-radius: 22px 22px 0 0; pointer-events: none;
}
.cat-tab:hover { color: var(--navy); transform: translateY(-1px); box-shadow: 0 5px 14px rgba(15,47,107,0.09), 0 1px 4px rgba(0,0,0,0.05), inset 0 1px 3px rgba(255,255,255,0.95), inset 0 -1px 3px rgba(0,0,0,0.04); }

/* ACTIVE STATES */
.cat-tab.active {
    color: white;
    background: linear-gradient(160deg, #1a4fb8 0%, var(--navy) 55%, #0a2558 100%);
    border-color: rgba(255,255,255,0.12);
    box-shadow:
        0 6px 20px rgba(15,47,107,0.38),
        0 2px 6px rgba(15,47,107,0.22),
        inset 0 1px 3px rgba(255,255,255,0.18),
        inset 0 -2px 4px rgba(0,0,0,0.14);
}
.cat-tab.active::before { background: linear-gradient(180deg, rgba(255,255,255,0.20) 0%, transparent 100%); }
.cat-tab.cat-combo.active { background: linear-gradient(160deg, #22c55e 0%, #15803d 55%, #0d5c2a 100%); box-shadow: 0 6px 20px rgba(22,163,74,0.38), 0 2px 6px rgba(22,163,74,0.22), inset 0 1px 3px rgba(255,255,255,0.18), inset 0 -2px 4px rgba(0,0,0,0.12); border-color: rgba(255,255,255,0.12); }
.cat-tab.cat-extra.active { background: linear-gradient(160deg, #fb923c 0%, #ea580c 55%, #c2410c 100%); box-shadow: 0 6px 20px rgba(234,88,12,0.38), 0 2px 6px rgba(234,88,12,0.22), inset 0 1px 3px rgba(255,255,255,0.18), inset 0 -2px 4px rgba(0,0,0,0.12); border-color: rgba(255,255,255,0.12); }
.cat-tab.cat-special.active { background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 45%, #a8881a 100%); box-shadow: 0 6px 20px rgba(212,175,55,0.42), 0 2px 6px rgba(212,175,55,0.25), inset 0 1px 3px rgba(255,255,255,0.22), inset 0 -2px 4px rgba(0,0,0,0.10); border-color: rgba(255,255,255,0.18); }

/* ══════════════════════════════════════════════════════════════════
   SERVICE CARDS — Thick Acrylic Glass Tiles
   ══════════════════════════════════════════════════════════════════ */
.svc-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

.svc-card {
    border-radius: 30px;
    overflow: visible;
    cursor: pointer;
    position: relative;
    transition: all 0.28s cubic-bezier(0.34,1.5,0.64,1);
    -webkit-tap-highlight-color: transparent;

    /* Warm acrylic glass panel */
    background: linear-gradient(165deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,253,248,0.80) 30%,
        rgba(250,247,240,0.68) 65%,
        rgba(255,253,248,0.82) 100%
    );
    border: 1px solid rgba(255,255,255,0.90);

    /* Physical depth — 5 shadow layers */
    box-shadow:
        /* Far ambient */
        0 24px 56px rgba(15,47,107,0.08),
        /* Mid depth */
        0 10px 20px rgba(0,0,0,0.05),
        /* Close shadow */
        0 3px 6px rgba(0,0,0,0.04),
        /* Top inner highlight */
        inset 0 2px 6px rgba(255,255,255,0.98),
        /* Side inner highlights */
        inset 3px 0 6px rgba(255,255,255,0.60),
        inset -3px 0 6px rgba(255,255,255,0.55),
        /* Bottom inner depth */
        inset 0 -8px 16px rgba(0,0,0,0.04),
        /* Crystal edge */
        0 0 0 0.5px rgba(15,47,107,0.06);

    backdrop-filter: blur(28px) saturate(1.6);
    -webkit-backdrop-filter: blur(28px) saturate(1.6);
}

/* Blue + Gold crystal edge refraction */
.svc-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 31px;
    background: linear-gradient(135deg,
        rgba(15,47,107,0.14) 0%,
        rgba(255,255,255,0.0) 20%,
        rgba(255,255,255,0.0) 80%,
        rgba(212,175,55,0.12) 100%
    );
    z-index: 0;
    pointer-events: none;
}

/* Top gloss reflection — only on cards without photos */
.svc-card.no-photo::after {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 38%;
    border-radius: 30px 30px 55% 55%;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.72) 0%,
        rgba(255,255,255,0.28) 50%,
        rgba(255,255,255,0.0) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.svc-card:hover {
    transform: translateY(-7px) scale(1.02);
    box-shadow:
        0 36px 72px rgba(15,47,107,0.13),
        0 16px 32px rgba(0,0,0,0.07),
        0 5px 10px rgba(0,0,0,0.05),
        inset 0 2px 8px rgba(255,255,255,0.99),
        inset 3px 0 6px rgba(255,255,255,0.65),
        inset -3px 0 6px rgba(255,255,255,0.60),
        inset 0 -8px 16px rgba(0,0,0,0.04),
        0 0 0 1px rgba(15,47,107,0.08);
}
.svc-card:active { transform: scale(0.97) translateY(-2px); }
.svc-card.hidden { display: none; }

/* SELECTED STATES */
.svc-card.selected {
    border-color: rgba(15,47,107,0.32);
    box-shadow:
        0 28px 60px rgba(15,47,107,0.16),
        0 10px 22px rgba(15,47,107,0.10),
        0 3px 6px rgba(15,47,107,0.06),
        inset 0 2px 6px rgba(255,255,255,0.98),
        inset 3px 0 6px rgba(255,255,255,0.60),
        inset -3px 0 6px rgba(255,255,255,0.55),
        inset 0 -8px 16px rgba(15,47,107,0.05),
        0 0 0 2.5px rgba(15,47,107,0.16),
        0 0 24px rgba(15,47,107,0.10);
}
.svc-card.cat-combo.selected { border-color: rgba(22,163,74,0.32); box-shadow: 0 28px 60px rgba(22,163,74,0.14), 0 10px 22px rgba(22,163,74,0.08), inset 0 2px 6px rgba(255,255,255,0.98), inset 0 -8px 16px rgba(22,163,74,0.04), 0 0 0 2.5px rgba(22,163,74,0.16), 0 0 24px rgba(22,163,74,0.09); }
.svc-card.cat-extra.selected { border-color: rgba(234,88,12,0.30); box-shadow: 0 28px 60px rgba(234,88,12,0.12), 0 10px 22px rgba(234,88,12,0.07), inset 0 2px 6px rgba(255,255,255,0.98), inset 0 -8px 16px rgba(234,88,12,0.04), 0 0 0 2.5px rgba(234,88,12,0.15), 0 0 24px rgba(234,88,12,0.08); }
.svc-card.cat-special.selected { border-color: rgba(212,175,55,0.42); box-shadow: 0 28px 60px rgba(212,175,55,0.16), 0 10px 22px rgba(212,175,55,0.10), inset 0 2px 6px rgba(255,255,255,0.98), inset 0 -8px 16px rgba(212,175,55,0.06), 0 0 0 2.5px rgba(212,175,55,0.22), 0 0 24px rgba(212,175,55,0.12); }

/* CHECK BADGE */
.svc-check {
    display: none; position: absolute; top: 11px; right: 11px;
    width: 26px; height: 26px; border-radius: 50%;
    align-items: center; justify-content: center;
    font-size: 12px; color: white; font-weight: 900; z-index: 10;
    background: linear-gradient(160deg, #1a4fb8 0%, var(--navy) 100%);
    box-shadow: 0 4px 12px rgba(15,47,107,0.45), inset 0 1px 2px rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.15);
}
.svc-card.selected .svc-check { display: flex; }
.svc-card.cat-combo.selected .svc-check { background: linear-gradient(160deg, #22c55e, #15803d); box-shadow: 0 4px 12px rgba(22,163,74,0.45), inset 0 1px 2px rgba(255,255,255,0.22); }
.svc-card.cat-extra.selected .svc-check { background: linear-gradient(160deg, #fb923c, #ea580c); box-shadow: 0 4px 12px rgba(234,88,12,0.45), inset 0 1px 2px rgba(255,255,255,0.22); }
.svc-card.cat-special.selected .svc-check { background: linear-gradient(160deg, var(--gold-bright), var(--gold)); box-shadow: 0 4px 12px rgba(212,175,55,0.45), inset 0 1px 2px rgba(255,255,255,0.22); }

/* IMAGE WRAP */
.svc-img-wrap {
    width: 100%; height: 118px;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 2; background: transparent;
    overflow: hidden;
    border-radius: 28px 28px 0 0;
}

/* ── CRYSTAL GLASS ICON BUBBLE ────────────────────────────────────
   This is the floating crystal orb that the icon lives inside.
   It must look like a separate physical glass object.
   ─────────────────────────────────────────────────────────────── */
.svc-img-ph {
    width: 82px; height: 82px;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; border-radius: 50%;
    position: relative; z-index: 4;
    transition: all 0.28s cubic-bezier(0.34,1.5,0.64,1);
    overflow: hidden;

    /* Crystal glass base */
    background: linear-gradient(145deg,
        rgba(255,255,255,0.96) 0%,
        rgba(255,252,245,0.78) 30%,
        rgba(250,246,238,0.54) 60%,
        rgba(255,253,248,0.72) 100%
    );
    border: 1px solid rgba(255,255,255,0.94);

    /* Crystal bubble physical depth */
    box-shadow:
        /* Outer ambient glow */
        0 14px 36px rgba(15,47,107,0.13),
        0 5px 12px rgba(0,0,0,0.07),
        /* Top specular highlight */
        inset 0 4px 12px rgba(255,255,255,0.99),
        /* Side rim highlights */
        inset 4px 0 8px rgba(255,255,255,0.65),
        inset -4px 0 8px rgba(255,255,255,0.58),
        /* Bottom inner depth shadow */
        inset 0 -5px 14px rgba(0,0,0,0.07),
        /* Crystal edge ring */
        0 0 0 1px rgba(15,47,107,0.06);

    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
}

/* Primary top shine arc — the brightest reflection */
.svc-img-ph::before {
    content: '';
    position: absolute; top: 6px; left: 10px;
    width: 42%; height: 22%;
    background: linear-gradient(130deg,
        rgba(255,255,255,0.98) 0%,
        rgba(255,255,255,0.50) 45%,
        rgba(255,255,255,0.0) 100%
    );
    border-radius: 50%; transform: rotate(-18deg); filter: blur(0.5px);
    z-index: 5;
}
/* Secondary bottom micro-shine */
.svc-img-ph::after {
    content: '';
    position: absolute; bottom: 9px; right: 10px;
    width: 20%; height: 11%;
    background: rgba(255,255,255,0.38);
    border-radius: 50%; filter: blur(2.5px); z-index: 5;
}

/* Per-category crystal tints */
.svc-img-ph.cat-bg-wash {
    background: linear-gradient(145deg, rgba(219,234,254,0.96) 0%, rgba(191,219,254,0.78) 30%, rgba(147,197,253,0.54) 60%, rgba(219,234,254,0.72) 100%);
    box-shadow: 0 14px 36px rgba(15,47,107,0.16), 0 5px 12px rgba(15,47,107,0.09), inset 0 4px 12px rgba(255,255,255,0.99), inset 4px 0 8px rgba(255,255,255,0.65), inset -4px 0 8px rgba(255,255,255,0.58), inset 0 -5px 14px rgba(15,47,107,0.07), 0 0 0 1px rgba(15,47,107,0.07);
}
.svc-img-ph.cat-bg-combo {
    background: linear-gradient(145deg, rgba(220,252,231,0.96) 0%, rgba(187,247,208,0.78) 30%, rgba(134,239,172,0.54) 60%, rgba(220,252,231,0.72) 100%);
    box-shadow: 0 14px 36px rgba(22,163,74,0.15), 0 5px 12px rgba(22,163,74,0.08), inset 0 4px 12px rgba(255,255,255,0.99), inset 4px 0 8px rgba(255,255,255,0.65), inset -4px 0 8px rgba(255,255,255,0.58), inset 0 -5px 14px rgba(22,163,74,0.06), 0 0 0 1px rgba(22,163,74,0.07);
}
.svc-img-ph.cat-bg-extra {
    background: linear-gradient(145deg, rgba(255,237,213,0.96) 0%, rgba(254,215,170,0.78) 30%, rgba(253,186,116,0.54) 60%, rgba(255,237,213,0.72) 100%);
    box-shadow: 0 14px 36px rgba(234,88,12,0.14), 0 5px 12px rgba(234,88,12,0.08), inset 0 4px 12px rgba(255,255,255,0.99), inset 4px 0 8px rgba(255,255,255,0.65), inset -4px 0 8px rgba(255,255,255,0.58), inset 0 -5px 14px rgba(234,88,12,0.06), 0 0 0 1px rgba(234,88,12,0.06);
}
.svc-img-ph.cat-bg-special {
    background: linear-gradient(145deg, rgba(254,243,199,0.96) 0%, rgba(253,230,138,0.78) 30%, rgba(252,211,77,0.54) 60%, rgba(254,243,199,0.72) 100%);
    box-shadow: 0 14px 36px rgba(212,175,55,0.18), 0 5px 12px rgba(212,175,55,0.10), inset 0 4px 12px rgba(255,255,255,0.99), inset 4px 0 8px rgba(255,255,255,0.65), inset -4px 0 8px rgba(255,255,255,0.58), inset 0 -5px 14px rgba(212,175,55,0.08), 0 0 0 1px rgba(212,175,55,0.08);
}

.svc-card:hover .svc-img-ph { transform: scale(1.10) translateY(-4px); }

/* CARD BODY */
.svc-body { padding: 4px 13px 16px; text-align: center; position: relative; z-index: 2; }
.svc-nm { font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 4px; line-height: 1.3; }
.svc-pr { font-size: 16px; font-weight: 800; color: var(--navy); }
.svc-card.cat-combo .svc-pr { color: #166534; }
.svc-card.cat-extra .svc-pr { color: #9a3412; }
.svc-card.cat-special .svc-pr { color: #78350f; }

/* ══════════════════════════════════════════════════════════════════
   PENSIONER CARD
   ══════════════════════════════════════════════════════════════════ */
.pens-row { margin-top: 16px; }
.pens-card {
    border-radius: 22px; padding: 14px 19px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; position: relative; overflow: hidden;
    transition: all 0.24s cubic-bezier(0.34,1.4,0.64,1);
    -webkit-tap-highlight-color: transparent;

    background: linear-gradient(160deg, rgba(255,255,255,0.86) 0%, rgba(247,245,240,0.70) 100%);
    border: 1px solid rgba(212,175,55,0.18);
    outline: 1.5px dashed rgba(212,175,55,0.28);
    outline-offset: -3px;
    box-shadow:
        0 8px 26px rgba(15,47,107,0.06),
        0 2px 6px rgba(0,0,0,0.04),
        inset 0 2px 5px rgba(255,255,255,0.96),
        inset 0 -4px 8px rgba(0,0,0,0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.pens-card::after {
    content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
.pens-card:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(212,175,55,0.10), 0 4px 10px rgba(0,0,0,0.05), inset 0 2px 5px rgba(255,255,255,0.98), inset 0 -4px 8px rgba(212,175,55,0.04); }
.pens-card.active {
    border-color: rgba(212,175,55,0.40); outline-color: rgba(212,175,55,0.35);
    box-shadow: 0 10px 30px rgba(212,175,55,0.16), 0 4px 10px rgba(212,175,55,0.08), inset 0 2px 5px rgba(255,255,255,0.98), inset 0 -4px 8px rgba(212,175,55,0.05), 0 0 0 2px rgba(212,175,55,0.14);
}
.pens-lbl { font-size: 13px; font-weight: 600; color: var(--text2); display: flex; align-items: center; gap: 8px; position: relative; z-index: 1; }
.pens-card.active .pens-lbl { color: #78350f; }
.pens-badge {
    background: linear-gradient(160deg, var(--gold-bright), var(--gold), #a8881a);
    color: white; border-radius: 12px; padding: 3px 11px;
    font-size: 11px; font-weight: 800; display: none;
    box-shadow: 0 3px 10px rgba(212,175,55,0.35), inset 0 1px 2px rgba(255,255,255,0.22);
    position: relative; z-index: 1;
}
.pens-card.active .pens-badge { display: block; }

/* ══════════════════════════════════════════════════════════════════
   RIGHT ORDER SIDEBAR — Premium Automotive Dashboard
   ══════════════════════════════════════════════════════════════════ */
.oriya-sidebar {
    background:
        linear-gradient(180deg,
            rgba(12,35,82,0.98) 0%,
            rgba(8,24,62,0.99) 60%,
            rgba(6,18,50,1.0) 100%
        );
    border-left: 1px solid rgba(255,255,255,0.07);

    /* Automotive panel depth */
    box-shadow:
        -6px 0 32px rgba(0,0,0,0.18),
        -2px 0 8px rgba(0,0,0,0.10),
        inset 1px 0 0 rgba(255,255,255,0.05),
        inset 4px 0 16px rgba(15,47,107,0.15);

    position: relative;
}
/* Subtle vertical gradient overlay for depth */
.oriya-sidebar::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg,
        rgba(255,255,255,0.03) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0,0,0,0.06) 100%
    );
    pointer-events: none; z-index: 0;
}
.oriya-sidebar > * { position: relative; z-index: 1; }

.sidebar-reg-display {
    font-family: 'Courier New', monospace;
    font-size: 22px; font-weight: 900; letter-spacing: 4px; color: white;
    text-shadow: 0 0 20px rgba(15,47,107,0.4);
}

.sidebar-order-item {
    background: linear-gradient(160deg,
        rgba(255,255,255,0.07) 0%,
        rgba(255,255,255,0.04) 100%
    );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 13px;
    padding: 11px 13px;
    margin-bottom: 8px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
    backdrop-filter: blur(8px);
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.06), inset 0 -2px 4px rgba(0,0,0,0.08);
    animation: slideOrder 0.2s ease;
}
@keyframes slideOrder { from{opacity:0;transform:translateX(8px);} to{opacity:1;transform:translateX(0);} }
.sidebar-order-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 40%;
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 100%);
    pointer-events: none;
}
.sidebar-item-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.82); position: relative; z-index: 1; }
.sidebar-item-price { font-size: 14px; font-weight: 800; color: var(--gold); position: relative; z-index: 1; text-shadow: 0 0 12px rgba(212,175,55,0.3); }
.sidebar-item-price.free { color: #86efac; text-shadow: 0 0 12px rgba(134,239,172,0.3); }

.sidebar-total { font-size: 32px; font-weight: 900; color: white; letter-spacing: -0.5px; text-shadow: 0 2px 12px rgba(255,255,255,0.1); }
.sidebar-total.free { color: var(--gold); text-shadow: 0 0 20px rgba(212,175,55,0.4); }

/* ══ SIDEBAR — Matches Oriya POS Design ══════════════════════ */
.sb-top {
    padding:13px 14px;
    border-bottom:1px solid rgba(255,255,255,0.07);
    flex-shrink:0;
}
.sb-lbl {
    font-size:14px; font-weight:700; color:white; margin-bottom:0;
    letter-spacing:-0.2px;
}
.sb-name { font-size:12px; color:rgba(255,255,255,0.4); margin-top:4px; }
.sb-veh  { font-size:11px; color:rgba(255,255,255,0.25); margin-top:2px; }

/* ORDER ITEMS */
.sb-body { flex:1; overflow-y:auto; padding:8px 10px; }
.sb-body::-webkit-scrollbar { display:none; }
.sb-empty {
    display:flex; flex-direction:column; align-items:center;
    justify-content:center; height:100%; gap:10px;
    color:rgba(255,255,255,0.15); font-size:13px;
}
.sb-empty-icon { font-size:38px; opacity:0.3; }
.sb-empty-text { font-size:12px; color:rgba(255,255,255,0.15); text-align:center; }

/* ORDER ITEM ROWS */
.sidebar-order-item {
    background:rgba(255,255,255,0.04);
    border-radius:10px; padding:9px 10px; margin-bottom:7px;
    display:flex; align-items:center; justify-content:space-between;
    border:none; animation:slideOrder 0.2s ease;
}
@keyframes slideOrder { from{opacity:0;transform:translateX(8px);}to{opacity:1;transform:translateX(0);} }
.sidebar-item-name { font-size:12px; font-weight:600; color:rgba(255,255,255,0.85); }
.sidebar-item-price { font-size:13px; font-weight:700; color:#c9a84c; }
.sidebar-item-price.free { color:#86efac; }

/* LOYALTY */
.sb-loyalty {
    padding:8px 12px 4px;
    border-top:1px solid rgba(255,255,255,0.06);
    flex-shrink:0;
}
.ldots { display:flex; gap:4px; flex-wrap:wrap; justify-content:center; margin-bottom:4px; }
.loy-txt { font-size:10px; color:rgba(255,255,255,0.25); text-align:center; }

/* FREE VISIT */
.free-strip {
    margin:0 12px 8px; border-radius:10px; padding:8px 12px;
    text-align:center; display:none;
}
.free-strip.on { display:block; }

/* TOTAL LINE */
.sb-total-section {
    padding:8px 12px 10px;
    border-top:1px solid rgba(255,255,255,0.08);
    flex-shrink:0;
}
.tot-line {
    display:flex; justify-content:space-between;
    font-size:12px; color:rgba(255,255,255,0.4); margin-bottom:4px;
}
.tot-line.big {
    font-size:19px; font-weight:700; color:white;
    margin-top:8px; padding-top:8px;
    border-top:1px solid rgba(255,255,255,0.08);
}
.tot-line.big span:last-child { color:#c9a84c; }

/* PAYMENT METHOD — exact Oriya POS style */
.sb-payment {
    padding:10px 12px;
    border-top:1px solid rgba(255,255,255,0.07);
    flex-shrink:0;
}
.sb-payment-label {
    font-size:10px; font-weight:700; text-transform:uppercase;
    letter-spacing:0.5px; color:rgba(255,255,255,0.3); margin-bottom:7px;
}
.sb-pay-btns {
    display:grid; grid-template-columns:repeat(3,1fr);
    gap:6px; margin-bottom:9px;
}
.pay-btn {
    padding:9px 4px; border-radius:9px;
    border:1.5px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.04);
    color:rgba(255,255,255,0.45); font-size:11px; font-weight:600;
    cursor:pointer; text-align:center; transition:all 0.15s;
    font-family:var(--font);
    display:flex; flex-direction:column; align-items:center; gap:3px;
}
.pay-icon { font-size:16px; line-height:1; }
.pay-label { font-size:10px; font-weight:600; }
.pay-btn:hover { border-color:rgba(255,255,255,0.25); color:rgba(255,255,255,0.7); }
.pay-btn.active {
    background:rgba(201,168,76,0.12);
    border-color:#c9a84c;
    color:#c9a84c;
}
.pay-btn.active .pay-label { color:#c9a84c; }

/* CHANGE CALCULATOR */
.sb-change-calc { display:flex; flex-direction:column; gap:6px; }
.sb-cash-input {
    width:100%; padding:9px 11px; border-radius:9px;
    border:1px solid rgba(255,255,255,0.1);
    background:rgba(255,255,255,0.06);
    color:white; font-family:var(--font); font-size:14px; font-weight:700;
    outline:none; transition:border-color 0.15s;
}
.sb-cash-input:focus { border-color:#c9a84c; }
.sb-cash-input::placeholder { color:rgba(255,255,255,0.2); font-size:12px; font-weight:400; }
.sb-change-display {
    min-height:22px; text-align:center;
    font-size:15px; font-weight:700; line-height:1.4;
}

/* ── ON-SCREEN NUMPAD ── */
.sb-numpad-wrap { display:flex; flex-direction:column; gap:6px; }

.sb-numpad-display {
    display:flex; justify-content:space-between; align-items:baseline;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    border-radius:10px; padding:10px 13px;
}
.sb-numpad-label {
    font-size:10px; font-weight:600; color:rgba(255,255,255,0.25);
    text-transform:uppercase; letter-spacing:0.5px;
}
.sb-numpad-amount {
    font-size:20px; font-weight:800; color:white;
    font-family:'Courier New', monospace; letter-spacing:1px;
}

.sb-numpad-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:5px;
}

.npk {
    padding:0; height:44px;
    border-radius:9px; border:1px solid rgba(255,255,255,0.09);
    background:rgba(255,255,255,0.06);
    color:white; font-size:16px; font-weight:700;
    cursor:pointer; font-family:var(--font);
    transition:all 0.12s;
    -webkit-tap-highlight-color:transparent;
    display:flex; align-items:center; justify-content:center;
    user-select:none;
}
.npk:hover { background:rgba(255,255,255,0.12); border-color:rgba(255,255,255,0.18); }
.npk:active { transform:scale(0.92); background:rgba(201,168,76,0.18); border-color:#c9a84c; color:#c9a84c; }

.npk-back {
    background:rgba(255,100,100,0.08);
    border-color:rgba(255,100,100,0.15);
    color:rgba(255,150,150,0.8);
    font-size:18px;
}
.npk-back:active { background:rgba(220,38,38,0.2); border-color:rgba(220,38,38,0.4); color:#f87171; }

.npk-clear {
    background:rgba(255,100,100,0.08);
    border-color:rgba(255,100,100,0.15);
    color:rgba(255,150,150,0.8);
    font-size:13px; font-weight:800; letter-spacing:0.5px;
}
.npk-clear:active { background:rgba(220,38,38,0.2); border-color:rgba(220,38,38,0.4); color:#f87171; }

/* CONFIRM / CHARGE BUTTON — exact Oriya POS gold style */
.sb-foot { padding:10px 12px 12px; flex-shrink:0; }
.sb-confirm-btn {
    width:100%; padding:15px; border-radius:11px; border:none;
    background:linear-gradient(135deg, #c9a84c, #e8c96a);
    color:#1a2744; font-size:15px; font-weight:700;
    cursor:pointer; transition:all 0.2s; font-family:var(--font);
    letter-spacing:0.2px;
}
.sb-confirm-btn:hover { transform:translateY(-1px); box-shadow:0 6px 20px rgba(201,168,76,0.3); }
.sb-confirm-btn:active { transform:scale(0.98); }
.sb-confirm-btn:disabled {
    background:rgba(255,255,255,0.07); color:rgba(255,255,255,0.2);
    transform:none; box-shadow:none; cursor:not-allowed;
}
.sb-confirm-btn.free-btn {
    background:linear-gradient(135deg,#22c55e,#16a34a);
    color:white; box-shadow:0 6px 20px rgba(34,197,94,0.3);
}
.sb-clear-btn {
    width:100%; padding:9px; margin-top:7px; border-radius:9px;
    cursor:pointer; font-family:var(--font); font-size:11px; font-weight:600;
    color:rgba(255,255,255,0.2); background:transparent;
    border:1px solid rgba(255,255,255,0.07); transition:all 0.15s;
}
.sb-clear-btn:hover { color:rgba(220,38,38,0.6); border-color:rgba(220,38,38,0.25); }

/* ── LOYALTY DOTS ─────────────────────────────────────────────── */ ─────────────────────────────────────────────── */
.loyalty-dot {
    width: 19px; height: 19px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 8px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    transition: all 0.2s ease;
}
.loyalty-dot.active {
    background: linear-gradient(160deg, var(--navy-mid), var(--navy));
    border-color: rgba(37,96,200,0.6);
    box-shadow: 0 0 10px rgba(15,47,107,0.5), inset 0 1px 2px rgba(255,255,255,0.15);
}
.loyalty-dot.star {
    background: linear-gradient(160deg, var(--gold-bright), var(--gold));
    border-color: rgba(212,175,55,0.6);
    animation: goldGlow 1.5s infinite;
}

/* ── FREE BANNER ───────────────────────────────────────────────── */
.free-banner {
    background: linear-gradient(160deg,
        rgba(212,175,55,0.14) 0%,
        rgba(212,175,55,0.07) 100%
    );
    border: 1px solid rgba(212,175,55,0.32);
    border-radius: 13px; padding: 10px 15px;
    color: var(--gold); font-size: 12px; font-weight: 800; text-align: center;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.06), 0 0 16px rgba(212,175,55,0.12);
    animation: goldGlow 1.5s infinite;
}

/* ══════════════════════════════════════════════════════════════════
   SUCCESS OVERLAY
   ══════════════════════════════════════════════════════════════════ */
.success-overlay {
    display: none; position: fixed; inset: 0; z-index: 100;
    align-items: center; justify-content: center;
    background: rgba(15,47,107,0.22);
    backdrop-filter: blur(16px) saturate(1.4);
    -webkit-backdrop-filter: blur(16px) saturate(1.4);
}
.success-overlay.on { display: flex; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

.success-box {
    border-radius: 32px; padding: 48px 44px; text-align: center;
    max-width: 400px; width: 90%; position: relative; overflow: hidden;

    background: linear-gradient(165deg,
        rgba(255,255,255,0.95) 0%,
        rgba(255,253,248,0.85) 50%,
        rgba(250,247,240,0.78) 100%
    );
    border: 1px solid rgba(255,255,255,0.90);
    box-shadow:
        0 48px 96px rgba(15,47,107,0.20),
        0 20px 40px rgba(0,0,0,0.10),
        0 6px 12px rgba(0,0,0,0.06),
        inset 0 2px 8px rgba(255,255,255,0.99),
        inset 0 -10px 20px rgba(0,0,0,0.03);
    backdrop-filter: blur(28px);
    animation: popIn 0.38s cubic-bezier(0.34,1.56,0.64,1);
}
.success-box::after {
    content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 38%;
    background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
@keyframes popIn { from{opacity:0;transform:scale(0.82);} to{opacity:1;transform:scale(1);} }

.s-icon { font-size: 62px; margin-bottom: 14px; position: relative; z-index: 1; }
.s-title { font-size: 27px; font-weight: 900; color: var(--navy); margin-bottom: 7px; letter-spacing: -0.4px; position: relative; z-index: 1; }
.s-sub { font-size: 14px; color: var(--text2); position: relative; z-index: 1; }
.s-amount { font-size: 40px; font-weight: 900; color: var(--navy); margin-top: 16px; letter-spacing: -1px; position: relative; z-index: 1; }
.s-amount.free { color: var(--gold); text-shadow: 0 0 24px rgba(212,175,55,0.35); }

/* ══════════════════════════════════════════════════════════════════
   DASHBOARD — Glass Stat Cards
   ══════════════════════════════════════════════════════════════════ */
.stat-card {
    border-radius: 26px; padding: 22px 20px;
    position: relative; overflow: hidden;
    background: linear-gradient(165deg,
        rgba(255,255,255,0.92) 0%,
        rgba(255,253,248,0.78) 40%,
        rgba(250,247,240,0.66) 70%,
        rgba(255,253,248,0.80) 100%
    );
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow:
        0 20px 48px rgba(15,47,107,0.07),
        0 8px 16px rgba(0,0,0,0.04),
        0 2px 4px rgba(0,0,0,0.03),
        inset 0 2px 6px rgba(255,255,255,0.98),
        inset 0 -6px 12px rgba(0,0,0,0.03);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}
.stat-card::before {
    content: ''; position: absolute; inset: -1px; border-radius: 27px;
    background: linear-gradient(135deg, rgba(15,47,107,0.10) 0%, transparent 25%, transparent 75%, rgba(212,175,55,0.08) 100%);
    z-index: 0; pointer-events: none;
}
.stat-card::after {
    content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 38%;
    background: linear-gradient(180deg, rgba(255,255,255,0.58) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
.stat-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text2); margin-bottom: 10px; position: relative; z-index: 1; }
.stat-value { font-size: 36px; font-weight: 900; color: var(--navy); letter-spacing: -0.8px; position: relative; z-index: 1; }
.stat-value.gold { color: var(--gold); }
.stat-value.green { color: #15803d; }

/* LOG CARD */
.log-card {
    border-radius: 26px; padding: 24px;
    position: relative; overflow: hidden;
    background: linear-gradient(165deg, rgba(255,255,255,0.92) 0%, rgba(255,253,248,0.78) 50%, rgba(250,247,240,0.68) 100%);
    border: 1px solid rgba(255,255,255,0.88);
    box-shadow: 0 20px 48px rgba(15,47,107,0.07), 0 8px 16px rgba(0,0,0,0.04), inset 0 2px 6px rgba(255,255,255,0.98), inset 0 -6px 12px rgba(0,0,0,0.03);
    backdrop-filter: blur(24px);
}
.log-card::after {
    content: ''; position: absolute; top: 0; left: 5%; right: 5%; height: 32%;
    background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
.log-title { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 18px; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.log-table { width: 100%; border-collapse: collapse; position: relative; z-index: 1; }
.log-table th { text-align: left; font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase; color: var(--text3); padding: 8px 12px; border-bottom: 1.5px solid rgba(15,47,107,0.07); }
.log-table td { padding: 12px 12px; border-bottom: 1px solid rgba(15,47,107,0.04); font-size: 13px; }
.log-table tr:last-child td { border-bottom: none; }
.log-table tr:hover td { background: rgba(15,47,107,0.025); border-radius: 8px; }
.reg-badge { font-family: 'Courier New', monospace; font-weight: 900; font-size: 13px; letter-spacing: 1px; color: var(--navy); }
.badge-free { background: linear-gradient(135deg, #a8881a, var(--gold)); color: white; font-size: 10px; padding: 2px 9px; border-radius: 10px; font-weight: 700; box-shadow: 0 2px 8px rgba(212,175,55,0.3); }
.badge-sedan { background: rgba(15,47,107,0.07); color: var(--navy); font-size: 11px; padding: 2px 9px; border-radius: 9px; font-weight: 600; }
.badge-suv { background: rgba(22,163,74,0.08); color: #15803d; font-size: 11px; padding: 2px 9px; border-radius: 9px; font-weight: 600; }

/* ══════════════════════════════════════════════════════════════════
   LOGIN CARD
   ══════════════════════════════════════════════════════════════════ */
.login-glass {
    border-radius: 32px; padding: 46px 42px;
    position: relative; overflow: hidden;
    background: linear-gradient(165deg,
        rgba(255,255,255,0.94) 0%,
        rgba(255,253,248,0.82) 40%,
        rgba(250,247,240,0.72) 70%,
        rgba(255,253,248,0.84) 100%
    );
    border: 1px solid rgba(255,255,255,0.90);
    box-shadow:
        0 40px 80px rgba(15,47,107,0.12),
        0 16px 32px rgba(0,0,0,0.07),
        0 4px 8px rgba(0,0,0,0.04),
        inset 0 2px 8px rgba(255,255,255,0.99),
        inset 3px 0 8px rgba(255,255,255,0.65),
        inset -3px 0 8px rgba(255,255,255,0.58),
        inset 0 -10px 20px rgba(0,0,0,0.03);
    backdrop-filter: blur(32px) saturate(1.6);
    -webkit-backdrop-filter: blur(32px) saturate(1.6);
}
.login-glass::before {
    content: ''; position: absolute; inset: -1px; border-radius: 33px;
    background: linear-gradient(135deg, rgba(15,47,107,0.12) 0%, transparent 25%, transparent 75%, rgba(212,175,55,0.10) 100%);
    z-index: 0; pointer-events: none;
}
.login-glass::after {
    content: ''; position: absolute; top: 0; left: 8%; right: 8%; height: 36%;
    background: linear-gradient(180deg, rgba(255,255,255,0.65) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
.login-glass > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════════════
   DISPLAY SCREEN (customer facing)
   ══════════════════════════════════════════════════════════════════ */
.disp-glass-panel {
    border-radius: 26px; padding: 18px 22px;
    position: relative; overflow: hidden;
    background: linear-gradient(165deg, rgba(255,255,255,0.88) 0%, rgba(255,253,248,0.72) 50%, rgba(250,247,240,0.62) 100%);
    border: 1px solid rgba(255,255,255,0.85);
    box-shadow: 0 16px 40px rgba(15,47,107,0.08), 0 5px 12px rgba(0,0,0,0.05), inset 0 2px 5px rgba(255,255,255,0.96), inset 0 -5px 10px rgba(0,0,0,0.03);
    backdrop-filter: blur(20px);
}
.disp-glass-panel::after {
    content: ''; position: absolute; top: 0; left: 6%; right: 6%; height: 36%;
    background: linear-gradient(180deg, rgba(255,255,255,0.50) 0%, transparent 100%);
    border-radius: 0 0 60% 60%; pointer-events: none;
}
.disp-glass-panel > * { position: relative; z-index: 1; }

/* ══════════════════════════════════════════════════════════════════
   SCROLLBAR
   ══════════════════════════════════════════════════════════════════ */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(15,47,107,0.12); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: rgba(15,47,107,0.22); }

/* Touch scroll area — thick visible scrollbar */
.pos-scroll-area::-webkit-scrollbar { width: 12px; }
.pos-scroll-area::-webkit-scrollbar-track {
    background: rgba(15,47,107,0.08);
    border-radius: 6px;
    margin: 4px;
}
.pos-scroll-area::-webkit-scrollbar-thumb {
    background: #0F2F6B;
    border-radius: 6px;
    border: 2px solid #F7F5F0;
}
.pos-scroll-area::-webkit-scrollbar-thumb:hover {
    background: #1a4fb8;
}
