/* ================= RESET ================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ================= BODY ================= */
body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: linear-gradient(135deg, #e6f0ff, #f9fbff);
    min-height: 100vh;
    /* position: static !important; */
}

/* ================= HEADER ================= */
.header {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    text-align: center;
    padding: 18px 10px;
    height: 10rem;
}

.header h1 {
    font-size: 22px;
    margin-top: 3rem;
}

.tagline {
    font-size: 13px;
    margin-top: 4px;
}

/* ================= NAV ================= */
.nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #1f1f1f;
    padding: 10px 0;
    flex-wrap: wrap;
}

.nav a {
    text-decoration: none;
    color: white;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 6px;
    transition: 0.3s;
}

.nav a.active {
    background-color: #007bff;
}

.nav a:hover {
    background-color: #444;
}


/*
 * ══════════════════════════════════════════════════════════════
 *  SMART TROLLEY — About Page Redesign CSS
 *  Paste this block at the END of your existing style.css
 *  (after the last rule in the file).
 *  Nothing above this block is touched.
 * ══════════════════════════════════════════════════════════════
 */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  --ab-cyan:    #00c6ff;
  --ab-blue:    #0f62fe;
  --ab-purple:  #7c4dff;
  --ab-text:    #e8f4ff;
  --ab-muted:   rgba(232, 244, 255, 0.55);
  --ab-glass:   rgba(255, 255, 255, 0.04);
  --ab-border:  rgba(255, 255, 255, 0.10);
  --ab-shadow:  rgba(0, 0, 0, 0.45);
  --ab-radius:  20px;
  --ab-gap:     2rem;
}

/* ── Outer wrapper ───────────────────────────────────────── */
.about-wrapper {
  max-width: 820px;
  margin: 3rem auto 3rem;
  padding: 0 1rem 2rem;
  display: flex;
  flex-direction: column;
  gap: var(--ab-gap);
}

/* ── Each section card ───────────────────────────────────── */
.about-section {
  background: rgba(14, 22, 40, 0.72);
  border: 1px solid var(--ab-border);
  border-radius: var(--ab-radius);
  padding: clamp(1.4rem, 4vw, 2.2rem) clamp(1.4rem, 5vw, 2.6rem);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.05) inset,
    0 1px 0   rgba(255,255,255,0.09) inset,
    0 8px 32px var(--ab-shadow),
    0 0 60px  rgba(0, 198, 255, 0.03);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* subtle top-edge gradient accent */
.about-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 198, 255, 0.50) 40%,
    rgba(124, 77, 255, 0.40) 70%,
    transparent 100%
  );
  pointer-events: none;
}

.about-section:hover {
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07) inset,
    0 1px 0   rgba(255,255,255,0.12) inset,
    0 12px 48px rgba(0,0,0,0.55),
    0 0 80px  rgba(0, 198, 255, 0.07);
  transform: translateY(-2px);
}

/* ── Badge label ─────────────────────────────────────────── */
.about-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ab-muted);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ab-cyan);
  box-shadow: 0 0 6px var(--ab-cyan);
  flex-shrink: 0;
}
.badge-dot--blue   { background: var(--ab-blue);   box-shadow: 0 0 6px var(--ab-blue); }
.badge-dot--purple { background: var(--ab-purple); box-shadow: 0 0 6px var(--ab-purple); }

/* ── Headings ────────────────────────────────────────────── */
.about-heading {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(130deg, var(--ab-cyan) 0%, #a3d4ff 55%, var(--ab-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
  text-decoration: none !important;
}

.about-subheading {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 600;
  color: var(--ab-text);
  margin-bottom: 1.5rem;
  text-decoration: none !important;
}

/* ── Divider ─────────────────────────────────────────────── */
.about-divider {
  width: 48px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ab-cyan), var(--ab-purple));
  margin: 0.8rem 0 1.4rem;
}

/* ── Paragraphs ──────────────────────────────────────────── */
.about-para {
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.75;
  color: var(--ab-muted);
  margin-bottom: 0.85rem;
}
.about-para:last-of-type { margin-bottom: 0; }

/* ── Feature grid ────────────────────────────────────────── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}

.feature-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: var(--ab-glass);
  border: 1px solid var(--ab-border);
  border-radius: 14px;
  cursor: default;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.feature-card:hover {
  background: rgba(0, 198, 255, 0.07);
  border-color: rgba(0, 198, 255, 0.30);
  transform: translateY(-3px);
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(0, 198, 255, 0.10);
  border: 1px solid rgba(0, 198, 255, 0.20);
  color: var(--ab-cyan);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}

.feature-text strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 0.97rem;
  font-weight: 700;
  color: var(--ab-text);
  letter-spacing: 0.02em;
}

.feature-text span {
  font-size: 0.83rem;
  color: var(--ab-muted);
  line-height: 1.45;
}

/* ── Steps list ──────────────────────────────────────────── */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.1rem 0;
  position: relative;
}

/* vertical connector line between steps */
.step-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: calc(1.1rem + 40px);
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    180deg,
    rgba(0, 198, 255, 0.35) 0%,
    rgba(124, 77, 255, 0.15) 100%
  );
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Orbitron", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ab-cyan);
  background: rgba(0, 198, 255, 0.08);
  border: 1.5px solid rgba(0, 198, 255, 0.30);
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

.step-body {
  padding-top: 0.5rem;
}

.step-body strong {
  display: block;
  font-family: "Rajdhani", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--ab-text);
  margin-bottom: 0.25rem;
}

.step-body p {
  font-size: 0.88rem;
  color: var(--ab-muted);
  line-height: 1.6;
  margin: 0;
}

.step-body em {
  color: var(--ab-cyan);
  font-style: normal;
}

/* ── Footer line ─────────────────────────────────────────── */
.about-footer {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(232, 244, 255, 0.28);
  letter-spacing: 0.06em;
  padding-top: 0.5rem;
}

/* ── Responsive tweaks ───────────────────────────────────── */
@media (max-width: 520px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .about-wrapper {
    gap: 1.4rem;
  }
}
/* ================= CONTAINER ================= */
.container {
    max-width: 750px;
    margin: 120px auto 40px auto;
    padding: 25px;
    background: #9abaff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(20,30,50,0.85);
    border-radius:16px;

    box-shadow:
    0 0 8px rgba(255,255,255,0.15),
    0 0 25px rgba(255,255,255,0.05),
    0 10px 40px rgba(0,0,0,0.6);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(10px);
}

.container1{
    max-width: 750px;
    margin: 120px auto 40px auto;
    padding: 25px;
    background: #111827;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(20,30,50,0.85);
    border-radius:16px;

    box-shadow:
    0 0 8px rgba(255,255,255,0.15),
    0 0 25px rgba(255,255,255,0.05),
    0 10px 40px rgba(0,0,0,0.6);

    border:1px solid rgba(255,255,255,0.15);

    backdrop-filter: blur(10px);

}
/* ================= TITLES ================= */
h2 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 18px;
}

/* ================= TABLE ================= */
.table-wrapper {
    overflow-x: auto;
}

#cartTable {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #f1f5f9;
}

#cartTable th {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    color: white;
    padding: 12px;
    font-weight: 600;
}

#cartTable td {
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

#cartTable tr:hover {
    background: rgba(255,255,255,0.05);
}
/* ================= ACTION BUTTONS ================= */
#cartTable td:last-child button {
    width: 28px;
    height: 28px;
    font-size: 14px;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.btn-decrease {
    background: #ff9800;
    color: white;
}

.btn-remove {
    background: #f44336;
    color: white;
    margin-left: 4px;
}

/* ================= TOTAL ================= */
#total {
    font-size: 20px;
    text-align: right;
    margin-top: 20px;
    font-weight: bold;
    color: #22c55e;
}

/* ================= BUTTONS ================= */
button {
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

/* Checkout */
#checkoutBtn {
    width: 100%;
    margin-top: 15px;
    background: #28a745;
    color: white;
}

/* Payment Buttons */
#paymentSection button {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
}

#onlineBtn {
    background: #007bff;
    color: white;
}

#qrSection{
    margin-top: 20px;
    text-align: center;
}

#qrSection img {
    width: 220px;
    max-width: 80%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4 );
}

#offlineBtn {
    background: #6c757d;
    color: white;
}

/* Finish */
#finishBtn {
    width: 100%;
    margin-top: 15px;
    background:linear-gradient(
        135deg,#000000,#1e293b
    );
    color: white;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px;
    
}

#suggestionBox{
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 220px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    padding: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    pointer-events: none;
}

#suggestionBox.show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.suggestion-card{
    background:#f4f4f4;
    padding:10px;
    border-radius:8px;
    margin:6px 0;
    cursor:pointer;
    transition:0.2s;
}

.suggestion-card:hover{
    background:#e6e6e6;
}

.suggest-title{
    font-weight:600;
    color: #000000;
}

.suggest-price{
    font-size:13px;
    color:#666;
}
/* ================= QR ================= */
#qrcode {
    margin: 15px auto;
}

.notice-bar {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #0f2027, #203a43, #2c5364);
  color: #ffffff;
  padding: 12px 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Soft fade on edges */
.notice-bar::before,
.notice-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
}

.notice-bar::before {
  left: 0;
  background: linear-gradient(to right, #0f2027, transparent);
}

.notice-bar::after {
  right: 0;
  background: linear-gradient(to left, #2c5364, transparent);
}

.notice-track {
  display: flex;
  width: max-content;
  animation: scrollLoop 30s linear infinite;
}

.notice-track span {
  white-space: nowrap;
  padding-right: 120px;
}

/* Smooth infinite loop */
@keyframes scrollLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* ================= CONTACT PAGE STRUCTURE ================= */


.contact-card {
    max-width: 420px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}


.contact-card h2 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}


.contact-card p {
    font-size: 14px;
    text-align: center;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.4;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}


.form-group {
    display: flex;
    flex-direction: column;
}


.form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}


.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: border 0.2s ease;
}


.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}


.contact-form button {
    margin-top: 10px;
    padding: 12px;
    border-radius: 8px;
    background: #007bff;
    color: white;
    font-weight: 600;
    transition: 0.2s ease;
}

.contact-form button:hover {
    background: #0066cc;
}


.map-container {
    width: 100%;
    margin: 15px auto;
    text-align: center;
}

.map-container img {
    width: 100%;
    max-width: 600px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.map-info {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #555;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.category-list button {
    padding: 10px 14px;
    border-radius: 8px;
    background: #007bff;
    color: white;
    font-size: 14px;
}

.category-list button:hover {
    background: #005ecb;
}


/* ================= MODAL ================= */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 300px;
    text-align: center;
    color: #000000;
}

#modalOkBtn {
    margin-top: 10px;
    background: #007bff;
    color: white;
}

/* ---------------suggestion section for increasing the sales ---------------*/


#suggestionSection {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
}

#suggestionList div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

#suggestionList button {
    padding: 6px 10px;
    font-size: 13px;
    background: #007bff;
    color: white;
    border-radius: 6px;
}

/* language Changer CSS styling ---------------------------*/

#languageModal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

#languageModal .modal-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
}

#languageModal button {
    margin: 8px;
    padding: 12px 18px;
    font-size: 14px;
}


/* ==== REMOVE GOOGLE TOP BANNER ==== */

.goog-te-banner-frame {
    display: none !important;
}

.goog-te-gadget {
    display: none !important;
}

body {
    top: 0px !important;
}

/* Remove highlight border Google adds */
.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}

/* ================= TABLET (768px+) ================= */
@media (min-width: 768px) {

    .container {
        max-width: 700px;
    }

    .header h1 {
        font-size: 26px;
    }

    #cartTable {
        font-size: 14px;
    }

    #total {
        font-size: 20px;
        text-align: right;
    }

    #paymentSection button {
        width: 48%;
        margin: 10px 1%;
    }
}

/* ================= DESKTOP (1024px+) ================= */
@media (min-width: 1024px) {

    .container {
        max-width: 1000px;
        padding: 25px;
    }

    .header h1 {
        font-size: 30px;
    }

    #cartTable th,
    #cartTable td {
        padding: 14px;
        font-size: 15px;
    }

    #total {
        font-size: 24px;
    }
}





/* ================= VERIFICATION PAGE ================= */

.verification-container {
    max-width: 500px;
    margin: 60px auto;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.verification-container h2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: 600;
    color: #222;
}

#billInput {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    outline: none;
}

#billInput:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.verify-btn {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    background: #007bff;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s ease;
}

.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}

.verify-btn:hover {
    background: #0056d2;
}

.result-box {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
}

/* STATUS COLORS */

.status-approved {
    background: #e8f9f0;
    color: #1e7e34;
    border: 1px solid #c3e6cb;
}

.status-already {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.status-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}




/* preloader------------------ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
      --bg:         #050a12;
      --surface:    #0b1424;
      --cyan:       #00e5ff;
      --blue:       #2979ff;
      --purple:     #7c4dff;
      --white:      #e8f4ff;
      --dim:        rgba(0,229,255,0.08);
      --glow-cyan:  0 0 12px #00e5ff, 0 0 40px rgba(0,229,255,0.4);
      --glow-blue:  0 0 12px #2979ff, 0 0 40px rgba(41,121,255,0.4);
      --glow-soft:  0 0 6px rgba(0,229,255,0.3);
    }

    body {
      font-family: 'Rajdhani', sans-serif;
      background: var(--bg);
      color: var(--white);
      min-height: 100vh;
      
    }

    /* ── PRELOADER WRAPPER ── */
    #preloader {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: var(--bg);
      transition: opacity 0.9s ease, visibility 0.9s ease;
    }

    #preloader.fade-out {
      opacity: 0;
      visibility: hidden;
    }

    /* scanline overlay */
    #preloader::before {
      content: '';
      position: absolute;
      inset: 0;
      background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(0,229,255,0.018) 3px,
        rgba(0,229,255,0.018) 4px
      );
      pointer-events: none;
    }

    /* corner brackets */
    .corner { position: absolute; width: 48px; height: 48px; opacity: 0; transition: opacity 0.6s; }
    .corner--tl { top: 24px; left: 24px; border-top: 2px solid var(--cyan); border-left:  2px solid var(--cyan); }
    .corner--tr { top: 24px; right: 24px; border-top: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
    .corner--bl { bottom: 24px; left: 24px; border-bottom: 2px solid var(--cyan); border-left:  2px solid var(--cyan); }
    .corner--br { bottom: 24px; right: 24px; border-bottom: 2px solid var(--cyan); border-right: 2px solid var(--cyan); }
    .corner.visible { opacity: 0.6; }

    /* ── STAGE ── */
    .stage {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 40px;
      width: min(520px, 90vw);
    }

    /* ── TITLE ── */
    .title-block {
      text-align: center;
      opacity: 0;
      transform: translateY(-16px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }
    .title-block.visible { opacity: 1; transform: translateY(0); }

    .title-eyebrow {
      font-family: 'Rajdhani', sans-serif;
      font-size: 11px;
      letter-spacing: 6px;
      color: var(--cyan);
      text-transform: uppercase;
      margin-bottom: 6px;
      opacity: 0.7;
    }

    .title-main {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2rem, 8vw, 3.6rem);
      font-weight: 900;
      letter-spacing: 6px;
      text-transform: uppercase;
      background: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 60%, var(--purple) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      filter: drop-shadow(0 0 14px rgba(0,229,255,0.55));
    }

    .title-sub {
      font-size: 12px;
      letter-spacing: 3px;
      color: rgba(232,244,255,0.4);
      margin-top: 8px;
    }

    /* ── BARCODE ── */
    .barcode-wrap {
      position: relative;
      opacity: 0;
      transform: scale(0.88);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .barcode-wrap.visible { opacity: 1; transform: scale(1); }

    .barcode-svg {
      display: block;
      filter: drop-shadow(0 0 8px rgba(0,229,255,0.3));
    }

    /* scanner laser */
    .laser {
      position: absolute;
      left: -6px; right: -6px;
      top: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), var(--cyan), transparent);
      box-shadow: 0 0 10px var(--cyan), 0 0 24px rgba(0,229,255,0.7);
      opacity: 0;
      border-radius: 2px;
    }
    .laser.scanning {
      animation: scanDown 1.2s cubic-bezier(0.4,0,0.6,1) forwards;
    }
    @keyframes scanDown {
      0%   { top: 0%;   opacity: 1; }
      90%  { top: 100%; opacity: 1; }
      100% { top: 100%; opacity: 0; }
    }

    /* ── PRODUCT ICON (box) ── */
    .product-icon {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.7);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .product-icon.visible { opacity: 1; transform: scale(1); }

    .product-icon svg { filter: drop-shadow(0 0 12px var(--cyan)); }

    /* ── CART AREA ── */
    .cart-area {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      height: 80px;
      width: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .cart-area.visible { opacity: 1; }

    .cart-svg { filter: drop-shadow(0 0 10px rgba(41,121,255,0.6)); }

    /* flying product */
    .fly-item {
      position: absolute;
      top: 0; left: 50%;
      transform: translateX(-50%);
      opacity: 0;
    }
    .fly-item.fly-animate {
      animation: flyIntoCart 0.7s cubic-bezier(0.6,0,0.4,1) forwards;
    }
    @keyframes flyIntoCart {
      0%   { top: 0;   left: 50%; transform: translateX(-50%) scale(1);   opacity: 1; }
      60%  { opacity: 1; }
      100% { top: 48px; left: 58%; transform: translateX(-50%) scale(0.3); opacity: 0; }
    }

    /* ── PROGRESS BAR ── */
    .progress-wrap {
      width: 100%;
      opacity: 0;
      transition: opacity 0.5s ease;
    }
    .progress-wrap.visible { opacity: 1; }

    .progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 10px;
      letter-spacing: 3px;
      color: rgba(232,244,255,0.4);
      margin-bottom: 6px;
    }

    .progress-track {
      height: 3px;
      background: rgba(255,255,255,0.06);
      border-radius: 99px;
      overflow: hidden;
      position: relative;
    }
    .progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--purple), var(--blue), var(--cyan));
      border-radius: 99px;
      box-shadow: 0 0 8px var(--cyan);
      transition: width 1.6s cubic-bezier(0.2,0.8,0.4,1);
    }
    .progress-fill.filled { width: 100%; }

    /* shimmer sweep */
    .progress-track::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 30%, rgba(255,255,255,0.25) 50%, transparent 70%);
      transform: translateX(-100%);
      animation: shimmer 2.4s 1.2s infinite;
    }
    @keyframes shimmer {
      to { transform: translateX(300%); }
    }

    /* ── READY TEXT ── */
    .ready-text {
      text-align: center;
      opacity: 0;
      transform: translateY(10px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .ready-text.visible { opacity: 1; transform: translateY(0); }

    .ready-main {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(0.9rem, 3vw, 1.15rem);
      font-weight: 700;
      letter-spacing: 4px;
      color: var(--cyan);
      text-shadow: var(--glow-cyan);
    }
    .ready-sub {
      font-size: 10px;
      letter-spacing: 4px;
      color: rgba(232,244,255,0.3);
      margin-top: 5px;
    }

    /* pulse ring on ready */
    .pulse-ring {
      position: absolute;
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 6px var(--cyan);
      top: 50%; left: -18px;
      transform: translateY(-50%);
      opacity: 0;
    }
    .pulse-ring.active {
      opacity: 1;
      animation: pulse 1.4s ease-out infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(0,229,255,0.7); }
      70%  { box-shadow: 0 0 0 8px rgba(0,229,255,0); }
      100% { box-shadow: 0 0 0 0 rgba(0,229,255,0); }
    }

    /* grid particle background */
    .grid-bg {
      position: fixed;
      inset: 0;
      z-index: -1;
      background-image:
        linear-gradient(rgba(0,229,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,229,255,0.04) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black, transparent);
    }

    /* ── MAIN CONTENT (behind preloader) ── */
    #main-content {
      display: none;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      opacity: 0;
      transition: opacity 1s ease 0.3s;
    }
    #main-content.visible { opacity: 1; }

    .hero-title {
      font-family: 'Orbitron', sans-serif;
      font-size: clamp(2rem, 8vw, 4rem);
      font-weight: 900;
      letter-spacing: 4px;
      background: linear-gradient(135deg, var(--cyan), var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-align: center;
      margin-bottom: 16px;
    }
    .hero-sub {
      color: rgba(232,244,255,0.5);
      font-size: 1rem;
      letter-spacing: 2px;
      text-align: center;
    }

/* ------ k   ------------- */




/* Confirm button inside result */

.confirm-btn {
    margin-top: 10px;
    padding: 10px 14px;
    background: #28a745;
    border: none;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

.confirm-btn:hover {
    background: #218838;
}

/* Responsive */

@media (max-width: 600px) {
    .verification-container {
        margin: 30px 15px;
        padding: 20px;
    }
}

/* ================= THERMAL PRINT STYLE ================= */

@page {
    size: 58mm auto;
    margin: 0;
}

@media print {

    html, body {
        margin: 0;
        padding: 0;
        background: white;
    }

    body * {
        visibility: hidden;
        display: none;
    }

    #printArea, #printArea * {
        visibility: visible;
        display: block;
    }

    #printArea {
        position: absolute;
        left: 0;
        top: 0;
        width: 58mm;
        font-family: monospace;
        font-size: 12px;
        line-height: 1.4;
   
    }


    #printArea hr {
        border: none;
        border-top: 1px dashed black;
        margin: 4px 0;
    }

    #printArea .center {
        text-align: center;
    }

    #printArea .right {
        text-align: right;
    }

    #printArea .bold {
        font-weight: bold;
    }

}


/* ===== Confirmation Modal ===== */

.confirm-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.confirm-box {
    width: 90%;
    max-width: 380px;
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: popIn 0.25s ease;
}

.confirm-box h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.confirm-box p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #444;
}

.confirm-buttons {
    display: flex;
    gap: 12px;
}

.confirm-buttons button {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.btn-increase{
    background:#22c55e;
    color: white;
}
.btn-decrease{
    background:#ff0606;
    color: white;
}
.btn-cancel {
    background: #e0e0e0;
}

.btn-cancel:hover {
    background: #d5d5d5;
}

.btn-confirm {
    background: #28a745;
    color: white;
}

.btn-confirm:hover {
    background: #218838;
}

#ordersTableBody tr {
    cursor: pointer;

}

#ordersTableBody tr:hover {
    background: #1c2330;
}

#activityTimerBox{
    position:fixed;
    top:15px;
    right:15px;

    background:rgba(22,27,34,0.9);
    border:1px solid #30363d;

    padding:8px 14px;
    border-radius:8px;

    display:flex;
    gap:8px;
    align-items:center;

    font-family:Orbitron;
    font-size:13px;

    color:#8b949e;
}

#activityTimer{
    font-size:16px;
    color:#ffffff;
    font-weight:700;
}



/* ================= GLOBAL MODERN THEME (ALL PAGES) ================= */

:root {
    --modern-bg-top: #f6f9ff;
    --modern-bg-bottom: #e6efff;
    --modern-primary: #0f62fe;
    --modern-primary-soft: #3579ff;
    --modern-text: #101828;
    --modern-muted: #475467;
}

body {
    font-family: "Rajdhani", sans-serif !important;
    color: var(--modern-text) !important;
    background:
        radial-gradient(circle at 10% 20%, #d3e3ff 0%, transparent 42%),
        radial-gradient(circle at 85% 15%, #b6d7ff 0%, transparent 38%),
        linear-gradient(180deg, var(--modern-bg-top), var(--modern-bg-bottom)) !important;
    min-height: 100vh !important;
}

.header {
    background: transparent !important;
    color: var(--modern-text) !important;
    text-align: center;
    padding: 3rem 1rem 1.2rem !important;
    height: auto !important;
}

.header h1 {
    margin: 0 !important;
    font-family: "Orbitron", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem) !important;
    letter-spacing: 0.03em;
}

.tagline {
    margin-top: 0.45rem !important;
    color: var(--modern-muted) !important;
    letter-spacing: 0.08em;
    font-size: 1rem !important;
}

.nav {
    width: min(1020px, 92vw);
    margin: 0 auto !important;
    padding: 0.55rem !important;
    display: flex;
    flex-wrap: wrap;
    justify-content: center !important;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(15, 98, 254, 0.1);
}

.nav a {
    text-decoration: none;
    color: #344054 !important;
    font-weight: 600;
    font-size: 1.02rem !important;
    padding: 0.52rem 1rem !important;
    border-radius: 999px;
    transition: all 0.25s ease;
}

.nav a:hover {
    color: var(--modern-primary) !important;
    background: rgba(15, 98, 254, 0.09) !important;
}

.nav a.active {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--modern-primary), var(--modern-primary-soft)) !important;
    box-shadow: 0 8px 20px rgba(15, 98, 254, 0.35);
}

