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

:root {
  --bg-body: #f0f2f5;
  --bg-app: #ffffff;
  --primary: #9b62d9; /* Purple like ESB */
  --text-main: #212529;
  --text-muted: #6c757d;
  --border-color: #f1f3f5;
  --shadow-app: 0 0 20px rgba(0,0,0,0.05);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Outfit', sans-serif;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  display: flex;
  justify-content: center;
}

#app-container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  background-color: var(--bg-app);
  box-shadow: var(--shadow-app);
  position: relative;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

/* Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  position: sticky;
  top: 0;
  background: var(--bg-app);
  z-index: 100;
  border-bottom: 1px solid var(--border-color);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-icon {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.header-title {
  font-size: 16px;
  font-weight: 700;
}

/* Views */
.view-section {
  display: none;
  flex-direction: column;
  padding-bottom: 100px; /* space for cart */
}

.view-section.active {
  display: flex;
}

/* Section Titles */
.section-title {
  font-size: 14px;
  font-weight: 700;
  padding: 20px 20px 12px;
}

/* Recommendation Horizontal Scroll */
.recommendation-container {
  display: flex;
  overflow-x: auto;
  gap: 16px;
  padding: 0 20px 10px;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  cursor: grab;
  user-select: none;
}
.recommendation-container:active {
  cursor: grabbing;
}
.recommendation-container::-webkit-scrollbar { display: none; }

.rec-card {
  min-width: 160px;
  width: 160px;
  flex-shrink: 0;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: white;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.rec-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rec-img {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  object-fit: cover;
}

.rec-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  height: 36px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rec-price {
  font-size: 13px;
  font-weight: 700;
}

.btn-add-outline {
  width: 100%;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-add-outline:active {
  background: var(--primary);
  color: white;
}

/* Category List */
.category-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px;
}

.cat-banner {
  width: 100%;
  height: 90px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Dummy blue pattern bg */
  background: linear-gradient(135deg, #0052D4, #4364F7, #6FB1FC);
}

.cat-banner-title {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
}

/* Detail Tabs */
.detail-tabs {
  display: flex;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-app);
  position: sticky;
  top: 57px;
  z-index: 90;
}
.tab-item {
  flex: 1;
  text-align: center;
  padding: 14px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  text-transform: uppercase;
  transition: 0.2s;
}
.tab-item.active {
  color: var(--primary);
}
.tab-item.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px 3px 0 0;
}

.how-to-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 20px;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
}
.step-icon {
  font-size: 24px;
  margin-bottom: 4px;
}
.step-arrow {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.subcategory-title {
  font-size: 13px;
  font-weight: 800;
  padding: 24px 20px 8px;
  color: var(--text-main);
  text-transform: uppercase;
}

/* Detail List (Category Items) */
.detail-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.detail-item {
  display: flex;
  padding: 16px 20px;
  gap: 16px;
  border-bottom: 1px solid var(--border-color);
  align-items: flex-start;
}

.detail-img {
  width: 76px;
  height: 76px;
  border-radius: 10px;
  object-fit: cover;
}

.detail-info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.detail-title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.detail-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.detail-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
}

/* Quantity Control */
.qty-ctrl {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--primary);
  padding: 4px 10px;
  border-radius: 20px;
}

.qty-btn {
  background: none; border: none;
  color: var(--primary);
  font-size: 20px; font-weight: 500;
  cursor: pointer;
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
}

.qty-val {
  font-size: 14px; font-weight: 600;
  min-width: 16px; text-align: center;
}

/* Floating Cart */
.floating-cart {
  position: fixed;
  bottom: 20px;
  left: 50%;
  width: calc(100% - 40px);
  max-width: 440px;
  background: var(--primary);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 8px 20px rgba(155, 98, 217, 0.4);
  transform: translate(-50%, 150%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 200;
  color: white;
  cursor: pointer;
}

.floating-cart.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.cart-items { font-size: 12px; font-weight: 500; opacity: 0.9; }
.cart-total { font-size: 16px; font-weight: 700; }
.checkout-text { font-size: 14px; font-weight: 700; }

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.active {
  opacity: 1; pointer-events: all;
}

.modal-content {
  background: var(--bg-app);
  width: 100%;
  max-width: 480px;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px;
  transform: translateY(100%);
  transition: transform 0.3s;
  max-height: 85vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}

.modal-title { font-size: 18px; font-weight: 700; }

/* Existing Modal Form Styles */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.form-input {
  width: 100%; padding: 14px; border-radius: 8px; border: 1px solid var(--border-color);
  font-size: 14px; outline: none;
}
.form-input:focus { border-color: var(--primary); }


/* Premium Cart Checkout Styles */
.cart-list { display: flex; flex-direction: column; margin-bottom: 30px; gap: 12px; }
.cart-item { 
  display: flex; 
  flex-direction: column; 
  padding: 16px; 
  background: #ffffff; 
  border-radius: 14px; 
  border: 1px solid rgba(0,0,0,0.04); 
  box-shadow: 0 4px 15px rgba(0,0,0,0.03); 
  position: relative;
  overflow: hidden;
}
.cart-item::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0; width: 4px;
  background: var(--primary);
  opacity: 0.8;
  border-radius: 4px 0 0 4px;
}
.ci-info { display: flex; flex-direction: column; flex: 1; margin-right: 12px; }
.ci-name { font-size: 15px; font-weight: 800; color: #2d3436; margin-bottom: 4px; line-height: 1.3; }
.ci-price { font-size: 14px; color: var(--primary); font-weight: 800; }

.cart-item .qty-ctrl {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 4px 8px;
  border-radius: 20px;
  gap: 10px;
}
.cart-item .qty-btn { font-size: 16px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.cart-item .qty-val { font-size: 13px; font-weight: 700; color: #2d3436; }

.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  padding: 2px 4px;
  margin-top: 4px;
  border-top: 1px solid #f1f2f6;
}
.addon-row span { font-size: 11px; font-weight: 600; color: #636e72; display: flex; align-items: center; gap: 6px; }
.addon-row .qty-ctrl { background: transparent; border: none; padding: 0; gap: 8px; }
.addon-row .qty-btn { box-shadow: none; background: #e2e8f0; color: #475569; width: 22px; height: 22px; }

.form-input-note {
  width: 100%;
  padding: 8px 10px;
  margin-top: 6px;
  font-size: 13px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid transparent;
  color: #2d3436;
  outline: none;
  transition: all 0.2s;
  margin-top: 10px;
}
.form-input-note:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(155, 98, 217, 0.1);
}

.seg-control {
  display: flex;
  background: #f1f2f6;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 10px;
}
.seg-control label {
  flex: 1; text-align: center; font-size: 12px; font-weight: 700; color: #a4b0be; cursor: pointer; transition: all 0.2s; position: relative;
}
.seg-control input { display: none; }
.seg-control .seg-btn { display: block; padding: 10px 0; }
.seg-control input:checked + .seg-btn { background: var(--primary); color: white; box-shadow: 0 2px 5px rgba(0,0,0,0.1); border-radius: 8px; }

.checkout-footer {
  position: sticky;
  bottom: 0;
  background: var(--bg-app);
  padding: 16px 0 0;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.05);
}


.btn-block {
  width: 100%; padding: 14px; border-radius: 8px; background: var(--primary);
  color: white; border: none; font-size: 15px; font-weight: 700; cursor: pointer;
}

#qris-container { display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 10px 0 20px; }
#qrcode { padding: 16px; border-radius: 12px; border: 1px solid var(--border-color); }
.qris-instruction { text-align: center; color: var(--text-muted); font-size: 13px; line-height: 1.5; }

/* Onboarding Styles */
.landing-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-color);
}
.landing-banner {
  position: relative;
  margin: 20px 20px 0 20px;
  height: 220px;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.landing-banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.text-banner {
  background: radial-gradient(circle at center 60%, rgba(0, 92, 255, 0.5) 0%, #040b16 70%);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  padding: 20px;
  z-index: 1;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(0,0,0,0.8);
}
/* Moving 3D Grid Floor (Synthwave Style) */
.text-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: -50%; right: -50%; height: 60%;
  background-image: 
    linear-gradient(rgba(0, 255, 255, 0.4) 2px, transparent 2px),
    linear-gradient(90deg, rgba(0, 255, 255, 0.4) 2px, transparent 2px);
  background-size: 40px 40px;
  z-index: -2;
  transform-origin: top center;
  transform: perspective(300px) rotateX(75deg);
  animation: moveGrid 1.5s linear infinite;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
}
@keyframes moveGrid {
  from { background-position: 0 0; }
  to { background-position: 0 40px; }
}

/* CRT Scanlines */
.text-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.25) 50%);
  background-size: 100% 4px;
  z-index: -1;
  pointer-events: none;
}

.text-banner h2 { 
  font-family: 'Inter', sans-serif;
  font-size: 13px; 
  font-weight: 800; 
  margin-bottom: -5px; 
  color: white; 
  letter-spacing: 2px; 
  text-transform: uppercase;
  background: #001144;
  padding: 4px 12px;
  transform: skew(-15deg);
  border: 1px solid #0055ff;
  z-index: 2;
  box-shadow: 2px 2px 0 rgba(0,0,0,0.5);
}

.text-banner h1 { 
  font-family: 'Oswald', sans-serif;
  font-size: 52px; 
  font-weight: 700; 
  margin: 0; 
  text-transform: uppercase; 
  letter-spacing: 1px; 
  color: white;
  transform: scaleY(1.1) skew(-5deg) rotate(-2deg);
  text-shadow: 
    3px 3px 0 #005cff,
    6px 6px 0 #002288,
    0 0 20px rgba(0, 92, 255, 0.8);
  z-index: 2;
  line-height: 1;
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow: 0 0 10px #00ffff, 0 0 20px #005cff;
    opacity: 1;
  }
  20%, 24%, 55% {
    text-shadow: none;
    opacity: 0.5;
  }
}

.text-banner h3 { 
  font-family: 'Yellowtail', cursive;
  font-size: 28px; 
  font-weight: 400; 
  color: #00ffff; 
  text-transform: none; 
  letter-spacing: 1px;
  transform: rotate(-5deg) translateY(-10px) translateX(20px);
  text-shadow: 0 0 10px #00ffff, 0 0 20px #005cff;
  z-index: 2;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  animation: neonFlicker 4s infinite alternate;
}

.landing-banner-text {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}

.how-to-use-section {
  padding: 0 40px;
  margin-bottom: 20px;
}
.how-to-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}
.step-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #f8f9fa;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.step-item p {
  font-size: 11px;
  font-weight: 500;
  text-align: center;
  color: #555;
  margin: 0;
}
.step-arrow {
  color: #bbb;
  font-size: 16px;
  margin-bottom: 20px;
}
.landing-banner-text h2 { font-size: 16px; margin: 0; font-weight: 600; }
.landing-banner-text h1 { font-size: 32px; margin: 0; font-weight: 800; text-transform: uppercase; }
.landing-banner-text h3 { font-size: 14px; margin: 0; color: #ffeb3b; }

.outlet-card {
  margin: 20px;
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}
.outlet-card.top-overlap {
  margin-top: -30px;
  position: relative;
  z-index: 5;
}
.outlet-icon {
  width: 48px; height: 48px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: #1976d2;
}
.outlet-info { flex-grow: 1; }
.outlet-info h3 { font-size: 15px; margin-bottom: 4px; }
.outlet-info p { font-size: 12px; color: var(--text-muted); }

.master-outlet-card {
  margin: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  z-index: 5;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
  animation: pulseMasterCard 2s infinite;
}
@keyframes pulseMasterCard {
  0% { transform: scale(1); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
  50% { transform: scale(1.015); box-shadow: 0 8px 24px rgba(155, 98, 217, 0.3); }
  100% { transform: scale(1); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
}
.master-outlet-card:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.master-outlet-card.top-overlap {
  margin-top: -30px;
}
.outlet-order-section {
  padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; background: white; transition: all 0.3s ease;
}
.outlet-brand { display: flex; align-items: center; gap: 16px; }
.outlet-logo {
  width: 64px; height: 64px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.outlet-texts h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: var(--text-main); letter-spacing: -0.2px; transition: color 0.3s ease; }
.outlet-texts p { font-size: 13px; font-weight: 600; color: var(--text-muted); transition: color 0.3s ease; }
.outlet-action-arrow { color: #ccc; display: flex; transition: color 0.3s ease; }
.outlet-action-arrow svg { width: 24px; height: 24px; animation: bounceArrow 1.5s infinite ease-in-out; }

.outlet-order-section:hover, .outlet-order-section:active {
  background: var(--primary);
}
.outlet-order-section:hover .outlet-texts h3, .outlet-order-section:active .outlet-texts h3 {
  color: white;
}
.outlet-order-section:hover .outlet-texts p, .outlet-order-section:active .outlet-texts p {
  color: rgba(255,255,255,0.85);
}
.outlet-order-section:hover .outlet-action-arrow, .outlet-order-section:active .outlet-action-arrow {
  color: rgba(255,255,255,0.7);
}
.outlet-order-section:hover .outlet-action-arrow svg, .outlet-order-section:active .outlet-action-arrow svg {
  animation: bounceArrowWhite 1.5s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); color: var(--primary); }
}
@keyframes bounceArrowWhite {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); color: white; }
}
.outlet-divider { height: 1px; background: var(--border-color); margin: 0 20px; }
.outlet-info-section {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fdfcff; cursor: pointer; transition: background 0.2s;
}
.outlet-info-section:active { background: #f3e5f5; }

.ordertype-header {
  position: relative;
}
.btn-ordertype {
  width: 100%;
  padding: 16px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(90, 42, 130, 0.2);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: pulseButton 2s infinite;
  position: relative;
  overflow: hidden;
}
@keyframes pulseButton {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(90, 42, 130, 0.2); }
  50% { transform: scale(1.02); box-shadow: 0 8px 20px rgba(90, 42, 130, 0.4); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(90, 42, 130, 0.2); }
}
.btn-ordertype:hover {
  background: var(--primary);
  color: white;
  animation: none;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(90, 42, 130, 0.5);
}
.btn-ordertype:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(90, 42, 130, 0.3);
}

.home-banner-container {
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-banner-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: contain;
  background: #000;
  display: block;
}
.home-branch-card {
  padding: 16px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}
.home-ordertype-card {
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Custom Toast Notification */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}
.toast-msg {
  background: rgba(33, 37, 41, 0.95);
  backdrop-filter: blur(5px);
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: slideDownFade 0.3s ease-out forwards;
  pointer-events: all;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.toast-msg.error {
  background: rgba(211, 47, 47, 0.95);
}
.toast-msg.success {
  background: rgba(39, 174, 96, 0.95);
}
@keyframes slideDownFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Animations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
}
.outlet-info { flex-grow: 1; }
.outlet-info h3 { font-size: 15px; margin-bottom: 4px; }
.outlet-info p { font-size: 12px; color: var(--text-muted); }

.master-outlet-card {
  margin: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  overflow: hidden;
  position: relative;
  z-index: 5;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
  animation: pulseMasterCard 2s infinite;
}
@keyframes pulseMasterCard {
  0% { transform: scale(1); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
  50% { transform: scale(1.015); box-shadow: 0 8px 24px rgba(155, 98, 217, 0.3); }
  100% { transform: scale(1); box-shadow: 0 6px 24px rgba(0,0,0,0.06); }
}
.master-outlet-card:active {
  transform: scale(0.97);
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.master-outlet-card.top-overlap {
  margin-top: -30px;
}
.outlet-order-section {
  padding: 20px;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; background: white; transition: all 0.3s ease;
}
.outlet-brand { display: flex; align-items: center; gap: 16px; }
.outlet-logo {
  width: 64px; height: 64px;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.outlet-texts h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; color: var(--text-main); letter-spacing: -0.2px; transition: color 0.3s ease; }
.outlet-texts p { font-size: 13px; font-weight: 600; color: var(--text-muted); transition: color 0.3s ease; }
.outlet-action-arrow { color: #ccc; display: flex; transition: color 0.3s ease; }
.outlet-action-arrow svg { width: 24px; height: 24px; animation: bounceArrow 1.5s infinite ease-in-out; }

.outlet-order-section:hover, .outlet-order-section:active {
  background: var(--primary);
}
.outlet-order-section:hover .outlet-texts h3, .outlet-order-section:active .outlet-texts h3 {
  color: white;
}
.outlet-order-section:hover .outlet-texts p, .outlet-order-section:active .outlet-texts p {
  color: rgba(255,255,255,0.85);
}
.outlet-order-section:hover .outlet-action-arrow, .outlet-order-section:active .outlet-action-arrow {
  color: rgba(255,255,255,0.7);
}
.outlet-order-section:hover .outlet-action-arrow svg, .outlet-order-section:active .outlet-action-arrow svg {
  animation: bounceArrowWhite 1.5s infinite ease-in-out;
}

@keyframes bounceArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); color: var(--primary); }
}
@keyframes bounceArrowWhite {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); color: white; }
}
.outlet-divider { height: 1px; background: var(--border-color); margin: 0 20px; }
.outlet-info-section {
  padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  background: #fdfcff; cursor: pointer; transition: background 0.2s;
}
.outlet-info-section:active { background: #f3e5f5; }

.ordertype-header {
  position: relative;
}
.btn-ordertype {
  width: 100%;
  padding: 16px;
  background: white;
  border: 2px solid var(--primary);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(90, 42, 130, 0.2);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  animation: pulseButton 2s infinite;
  position: relative;
  overflow: hidden;
}
@keyframes pulseButton {
  0% { transform: scale(1); box-shadow: 0 4px 15px rgba(90, 42, 130, 0.2); }
  50% { transform: scale(1.02); box-shadow: 0 8px 20px rgba(90, 42, 130, 0.4); }
  100% { transform: scale(1); box-shadow: 0 4px 15px rgba(90, 42, 130, 0.2); }
}
.btn-ordertype:hover {
  background: var(--primary);
  color: white;
  animation: none;
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(90, 42, 130, 0.5);
}
.btn-ordertype:active {
  transform: scale(0.96);
  box-shadow: 0 2px 8px rgba(90, 42, 130, 0.3);
}

.home-banner-container {
  padding: 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.home-banner-img {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  object-fit: contain;
  background: #000;
  display: block;
}
.home-branch-card {
  padding: 14px 18px;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.status-dot-blink {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  display: inline-block;
  animation: dotBlinkPulse 1.2s infinite ease-in-out;
  flex-shrink: 0;
}

@keyframes dotBlinkPulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 10px #2ecc71;
  }
  50% {
    opacity: 0.25;
    transform: scale(0.85);
    box-shadow: 0 0 2px #2ecc71;
  }
}

.banner-24jam-text {
  margin: 0;
  font-size: 15px;
  color: var(--text-main);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.2px;
}

.blink-gaming-text {
  color: var(--primary);
  font-weight: 800;
  animation: textBlinkGlow 1.8s infinite ease-in-out;
}

@keyframes textBlinkGlow {
  0%, 100% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(155, 98, 217, 0.5);
  }
  50% {
    opacity: 0.35;
    text-shadow: none;
  }
}
.home-ordertype-card {
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

/* Custom Toast Notification */
.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  width: 90%;
  max-width: 400px;
}
.toast-msg {
  background: rgba(33, 37, 41, 0.95);
  backdrop-filter: blur(5px);
  color: white;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  animation: slideDownFade 0.3s ease-out forwards;
  pointer-events: all;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}
.toast-msg.error {
  background: rgba(211, 47, 47, 0.95);
}
.toast-msg.success {
  background: rgba(39, 174, 96, 0.95);
}
@keyframes slideDownFade {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Animations */
@keyframes pulse-dot {
  0% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
  100% { transform: scale(0.95); opacity: 0.7; box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #00e676;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes shimmer {
  0% { background-position: -468px 0; }
  100% { background-position: 468px 0; }
}
.skeleton-box {
  background: #f6f7f8;
  background-image: linear-gradient(to right, #f6f7f8 0%, #edeef1 20%, #f6f7f8 40%, #f6f7f8 100%);
  background-repeat: no-repeat;
  background-size: 800px 100%; 
  animation-duration: 1.5s;
  animation-fill-mode: forwards; 
  animation-iteration-count: infinite;
  animation-name: shimmer;
  animation-timing-function: linear;
  border-radius: 8px;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.marquee-text-greeting {
  display: inline-block;
  animation: marquee 12s linear infinite;
}
.cursor {
  display: inline-block;
  width: 2px;
  background-color: var(--primary);
  margin-left: 2px;
  animation: blink-cursor 0.75s step-end infinite;
}
@keyframes blink-cursor {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Cyber/Gaming Font Styles for Typed Elements */
#dynamic-greeting, #dynamic-subgreeting, #typing-24jam {
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: 0.5px;
}
#dynamic-greeting {
  font-size: 22px; 
}
#dynamic-subgreeting {
  font-size: 15px;
}
#typing-24jam {
  font-size: 14px;
  letter-spacing: 1px;
}
.ci-price, .detail-price {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Profile Modern Components */
.profile-header-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: white;
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  margin-bottom: 16px;
}

.profile-avatar-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b62d9, #6a1b9a);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(155, 98, 217, 0.35);
  flex-shrink: 0;
}

.btn-edit-name {
  background: #f1f3f5;
  border: none;
  border-radius: 6px;
  padding: 3px 6px;
  font-size: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.btn-edit-name:hover {
  background: #e9ecef;
}

.profile-section-card {
  background: white;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  padding: 16px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.card-section-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.card-section-title .icon {
  font-size: 16px;
}

.pc-status-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px 16px;
  border-radius: 12px;
}

.pc-badge-display {
  display: flex;
  align-items: center;
  gap: 8px;
}

.dot-online {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  display: inline-block;
  animation: dotBlinkPulse 1.2s infinite ease-in-out;
}

.btn-change-pc {
  background: var(--primary);
  color: white;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-change-pc:hover {
  background: #8447c6;
  transform: scale(1.02);
}

.btn-call-op {
  background: #e67e22;
  color: white;
  border: none;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.4);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn-call-op:hover {
  background: #d35400;
  transform: translateY(-1px);
}

.order-history-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
}

.history-order-card {
  padding: 12px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.history-order-items {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.history-order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  border-top: 1px dashed #ddd;
  padding-top: 6px;
  margin-top: 2px;
}

.info-arena-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.info-arena-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #eee;
}

.info-arena-item .info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-arena-item .info-label {
  font-size: 10px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-arena-item .info-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 2px;
}


/* LIVE CHAT FAB & MODAL */
#chat-fab {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(155, 98, 217, 0.4);
  cursor: pointer;
  z-index: 150;
  transition: transform 0.2s;
}
#chat-fab:active { transform: scale(0.9); }
#chat-unread-badge {
  position: absolute;
  top: 0; right: 0;
  background: #e74c3c;
  color: white;
  font-size: 11px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex; justify-content: center; align-items: center;
  border: 2px solid var(--bg-app);
}

.chat-content {
  background: #f8f9fa;
  width: 100%;
  max-width: 480px;
  height: 85vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.modal-overlay.active .chat-content { transform: translateY(0); }

.chat-header {
  background: var(--primary);
  color: white;
  padding: 16px 20px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-title { font-size: 16px; font-weight: 700; margin: 0; }
.chat-subtitle { font-size: 11px; opacity: 0.8; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}
.chat-bubble.left {
  background: white;
  color: #2d3436;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.chat-bubble.right {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 5px rgba(155, 98, 217, 0.2);
}
.chat-time {
  font-size: 10px;
  opacity: 0.7;
  display: block;
  text-align: right;
  margin-top: 4px;
}

.chat-footer {
  background: white;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}
#chat-input-text {
  flex: 1;
  background: #f1f2f6;
  border: none;
}
.btn-call-op:hover {
  background: #d35400;
  transform: translateY(-1px);
}

.order-history-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-height: 240px;
  overflow-y: auto;
}

.history-order-card {
  padding: 12px;
  border-radius: 10px;
  background: #f8f9fa;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.history-order-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
}

.history-order-items {
  font-size: 12px;
  color: #555;
  line-height: 1.4;
}

.history-order-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  border-top: 1px dashed #ddd;
  padding-top: 6px;
  margin-top: 2px;
}

.info-arena-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.info-arena-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 10px;
  border: 1px solid #eee;
}

.info-arena-item .info-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.info-arena-item .info-label {
  font-size: 10px;
  font-weight: 700;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.info-arena-item .info-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 2px;
}


/* LIVE CHAT FAB & MODAL */

.chat-content {
  background: #f8f9fa;
  width: 100%;
  max-width: 480px;
  height: 85vh;
  border-radius: 20px 20px 0 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.modal-overlay.active .chat-content { transform: translateY(0); }

.chat-header {
  background: var(--primary);
  color: white;
  padding: 16px 20px;
  border-radius: 20px 20px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-title { font-size: 16px; font-weight: 700; margin: 0; }
.chat-subtitle { font-size: 11px; opacity: 0.8; }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
}
.chat-bubble.left {
  background: white;
  color: #2d3436;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.chat-bubble.right {
  background: var(--primary);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 5px rgba(155, 98, 217, 0.2);
}
.chat-time {
  font-size: 10px;
  opacity: 0.7;
  display: block;
  text-align: right;
  margin-top: 4px;
}

.chat-footer {
  background: white;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(0,0,0,0.05);
}
#chat-input-text {
  flex: 1;
  background: #f1f2f6;
  border: none;
  padding: 12px 16px;
  border-radius: 24px;
  font-size: 14px;
  outline: none;
}
.chat-send-btn {
  background: var(--primary);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

#chat-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(155, 98, 217, 0.4);
  cursor: pointer;
  z-index: 1000;
  transition: transform 0.2s;
}
#chat-fab:active { transform: scale(0.95); }

#chat-unread-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #e74c3c;
  color: white;
  font-size: 12px;
  font-weight: 800;
  min-width: 20px;
  height: 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}



    /* GOOGLE TRANSLATE FIXES */
    iframe.goog-te-banner-frame { display: none !important; }
    .goog-te-banner-frame { display: none !important; }
    body { top: 0px !important; position: static !important; }
    html { top: 0px !important; position: static !important; }
    .goog-tooltip { display: none !important; }
    .goog-text-highlight { background-color: transparent !important; box-shadow: none !important; }
    #goog-gt-tt { display: none !important; }
    .skiptranslate iframe { display: none !important; }
    .VIpgJd-ZVi9od-aZ2wEe-wOHMyf { display: none !important; }

    /* LIVE CHAT FIX - INJECTED DIRECTLY TO BYPASS CACHE */
    .chat-content {
      background: #f8f9fa;
      width: 100%;
      max-width: 480px;
      height: 85vh;
      border-radius: 20px 20px 0 0;
      display: flex;
      flex-direction: column;
      transform: translateY(100%);
      transition: transform 0.3s;
    }

    .modal-overlay.active .chat-content {
      transform: translateY(0);
    }

    .chat-header {
      background: var(--primary);
      color: white;
      padding: 16px 20px;
      border-radius: 20px 20px 0 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .chat-header-info {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .chat-title {
      font-size: 16px;
      font-weight: 700;
      margin: 0;
    }

    .chat-subtitle {
      font-size: 11px;
      opacity: 0.8;
    }

    .chat-body {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .chat-bubble {
      max-width: 80%;
      padding: 10px 14px;
      border-radius: 14px;
      font-size: 14px;
      line-height: 1.4;
      position: relative;
    }

    .chat-bubble.left {
      background: white;
      color: #2d3436;
      align-self: flex-start;
      border-bottom-left-radius: 4px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }

    .chat-bubble.right {
      background: var(--primary);
      color: white;
      align-self: flex-end;
      border-bottom-right-radius: 4px;
      box-shadow: 0 2px 5px rgba(155, 98, 217, 0.2);
    }

    .chat-footer {
      background: white;
      padding: 12px 16px;
      display: flex;
      gap: 12px;
      align-items: center;
      border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    #chat-input-text {
      flex: 1;
      background: #f1f2f6;
      border: none;
      padding: 12px 16px;
      border-radius: 24px;
      font-size: 14px;
      outline: none;
    }

    .chat-send-btn {
      background: var(--primary);
      color: white;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
    }

    #chat-fab {
      position: fixed;
      bottom: 24px;
      right: 24px;
      width: 60px;
      height: 60px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      justify-content: center;
      align-items: center;
      box-shadow: 0 4px 15px rgba(155, 98, 217, 0.4);
      cursor: pointer;
      z-index: 1000;
      transition: transform 0.2s;
    }

    #chat-fab:active {
      transform: scale(0.95);
    }

    #chat-unread-badge {
      position: absolute;
      top: -4px;
      right: -4px;
      background: #e74c3c;
      color: white;
      font-size: 12px;
      font-weight: 800;
      min-width: 20px;
      height: 20px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 6px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .home-branch-card {
      padding: 14px 18px !important;
      background: white !important;
      border-radius: 12px !important;
      border: 1px solid #f1f3f5 !important;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      gap: 10px !important;
      min-height: 52px !important;
    }

    .status-dot-blink {
      width: 11px !important;
      height: 11px !important;
      border-radius: 50% !important;
      background-color: #2ecc71 !important;
      box-shadow: 0 0 10px #2ecc71 !important;
      display: inline-block !important;
      animation: dotBlinkPulse 1.2s infinite ease-in-out !important;
      flex-shrink: 0 !important;
    }

    @keyframes dotBlinkPulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 12px #2ecc71;
      }

      50% {
        opacity: 0.2;
        transform: scale(0.8);
        box-shadow: 0 0 2px #2ecc71;
      }
    }

    .banner-24jam-text {
      margin: 0 !important;
      font-size: 16px !important;
      color: #212529 !important;
      font-weight: 700 !important;
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      letter-spacing: 0.2px !important;
    }

    .blink-gaming-text {
      color: #9b62d9 !important;
      font-weight: 800 !important;
      animation: textBlinkGlow 1.6s infinite ease-in-out !important;
    }

    @keyframes textBlinkGlow {

      0%,
      100% {
        opacity: 1;
        text-shadow: 0 0 12px rgba(155, 98, 217, 0.6);
      }

      50% {
        opacity: 0.3;
        text-shadow: none;
      }
    }

    .cursor {
      display: inline-block;
      color: #9b62d9;
      font-weight: 600;
      animation: cursorBlink 0.8s infinite;
      margin-left: 2px;
    }

    @keyframes cursorBlink {

      0%,
      100% {
        opacity: 1;
      }

      50% {
        opacity: 0;
      }
    }

    /* ====================================================
       PREMIUM CYBER-LUXE PROFILE & GAMER HUB STYLING
       ==================================================== */
    .profile-gamer-pass {
      background: linear-gradient(135deg, #181528 0%, #281e42 50%, #131021 100%) !important;
      border: 1px solid rgba(155, 98, 217, 0.4) !important;
      border-radius: 18px !important;
      padding: 18px 20px !important;
      color: white !important;
      box-shadow: 0 10px 25px rgba(155, 98, 217, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
      margin-bottom: 16px !important;
      position: relative !important;
      overflow: hidden !important;
    }

    .profile-gamer-pass::before {
      content: '' !important;
      position: absolute !important;
      top: -40% !important;
      right: -20% !important;
      width: 150px !important;
      height: 150px !important;
      background: radial-gradient(circle, rgba(155, 98, 217, 0.3) 0%, rgba(0, 0, 0, 0) 70%) !important;
      pointer-events: none !important;
    }

    .gamer-pass-badge-row {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      margin-bottom: 12px !important;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
      padding-bottom: 8px !important;
    }

    .gamer-pass-title {
      font-size: 11px !important;
      font-weight: 800 !important;
      letter-spacing: 1.5px !important;
      color: #dfb3ff !important;
      text-transform: uppercase !important;
      display: flex !important;
      align-items: center !important;
      gap: 6px !important;
    }

    .gamer-pass-tier {
      background: rgba(155, 98, 217, 0.25) !important;
      border: 1px solid rgba(155, 98, 217, 0.5) !important;
      color: #dfb3ff !important;
      font-size: 10px !important;
      font-weight: 800 !important;
      padding: 3px 8px !important;
      border-radius: 20px !important;
      letter-spacing: 0.5px !important;
    }

    .gamer-pass-main {
      display: flex !important;
      align-items: center !important;
      gap: 14px !important;
    }

    .profile-avatar-box {
      width: 54px !important;
      height: 54px !important;
      border-radius: 50% !important;
      background: linear-gradient(135deg, #9b62d9 0%, #6a1b9a 100%) !important;
      color: white !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 22px !important;
      font-weight: 800 !important;
      border: 2px solid #dfb3ff !important;
      box-shadow: 0 0 15px rgba(155, 98, 217, 0.5) !important;
      flex-shrink: 0 !important;
    }

    .btn-edit-name {
      background: rgba(255, 255, 255, 0.12) !important;
      color: #fff !important;
      border: 1px solid rgba(255, 255, 255, 0.25) !important;
      border-radius: 20px !important;
      padding: 2px 8px !important;
      font-size: 11px !important;
      font-weight: 700 !important;
      cursor: pointer !important;
      transition: all 0.2s ease !important;
    }

    .btn-edit-name:hover {
      background: rgba(155, 98, 217, 0.4) !important;
      border-color: #9b62d9 !important;
    }

    .gamer-pass-pc-bar {
      margin-top: 14px !important;
      background: rgba(0, 0, 0, 0.35) !important;
      border: 1px solid rgba(255, 255, 255, 0.08) !important;
      border-radius: 10px !important;
      padding: 10px 14px !important;
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
    }

    .btn-change-pc {
      background: linear-gradient(135deg, #9b62d9, #7b32c6) !important;
      color: white !important;
      border: none !important;
      padding: 6px 12px !important;
      border-radius: 8px !important;
      font-weight: 800 !important;
      font-size: 11px !important;
      cursor: pointer !important;
      box-shadow: 0 2px 8px rgba(155, 98, 217, 0.4) !important;
      transition: all 0.2s ease !important;
    }

    .btn-change-pc:hover {
      transform: translateY(-1px) !important;
      box-shadow: 0 4px 12px rgba(155, 98, 217, 0.6) !important;
    }

    /* Stats Row */
    .profile-stats-row {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
      margin-bottom: 16px !important;
    }

    .profile-stat-box {
      background: white !important;
      border: 1px solid #e9ecef !important;
      border-radius: 14px !important;
      padding: 12px 14px !important;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03) !important;
      display: flex !important;
      align-items: center !important;
      gap: 10px !important;
    }

    .stat-icon-circle {
      width: 36px !important;
      height: 36px !important;
      border-radius: 10px !important;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      font-size: 18px !important;
      flex-shrink: 0 !important;
    }

    /* Section Cards */
    .profile-section-card {
      background: white !important;
      border-radius: 16px !important;
      border: 1px solid #eaedf0 !important;
      padding: 16px 18px !important;
      margin-bottom: 16px !important;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03) !important;
    }

    .card-section-title {
      font-size: 14px !important;
      font-weight: 800 !important;
      color: #212529 !important;
      display: flex !important;
      align-items: center !important;
      gap: 8px !important;
      margin-bottom: 12px !important;
    }

    /* Call OP Button */
    .profile-call-op-card {
      background: linear-gradient(135deg, #1c1924 0%, #291a10 100%) !important;
      border: 1.5px solid rgba(230, 126, 34, 0.4) !important;
      border-radius: 16px !important;
      padding: 14px 16px !important;
      margin-bottom: 16px !important;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.15) !important;
      display: flex !important;
      align-items: center !important;
      justify-content: space-between !important;
      gap: 12px !important;
    }

    .btn-call-op {
      background: linear-gradient(135deg, #f39c12 0%, #d35400 100%) !important;
      color: white !important;
      border: none !important;
      padding: 10px 16px !important;
      border-radius: 10px !important;
      font-weight: 800 !important;
      font-size: 12px !important;
      letter-spacing: 0.5px !important;
      cursor: pointer !important;
      box-shadow: 0 4px 15px rgba(230, 126, 34, 0.45) !important;
      transition: all 0.2s ease !important;
      white-space: nowrap !important;
    }

    .btn-call-op:hover {
      transform: translateY(-2px) !important;
      box-shadow: 0 6px 20px rgba(230, 126, 34, 0.6) !important;
    }

    /* History List */
    .order-history-container {
      display: flex !important;
      flex-direction: column !important;
      gap: 10px !important;
      max-height: 220px !important;
      overflow-y: auto !important;
    }

    .history-order-card {
      padding: 12px 14px !important;
      border-radius: 12px !important;
      background: #f8f9fa !important;
      border: 1px solid #e9ecef !important;
      display: flex !important;
      flex-direction: column !important;
      gap: 6px !important;
    }

    .history-order-header {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      font-size: 12px !important;
    }

    .history-order-items {
      font-size: 12px !important;
      color: #555 !important;
      line-height: 1.4 !important;
    }

    .history-order-footer {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      font-size: 12px !important;
      font-weight: 700 !important;
      border-top: 1px dashed #ddd !important;
      padding-top: 6px !important;
      margin-top: 2px !important;
    }

    /* Bento Info Grid */
    .info-arena-grid {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
    }

    .info-arena-item {
      display: flex !important;
      align-items: flex-start !important;
      gap: 10px !important;
      padding: 10px 12px !important;
      background: #f8f9fa !important;
      border-radius: 12px !important;
      border: 1px solid #e9ecef !important;
    }

    .info-arena-item .info-icon {
      font-size: 18px !important;
      flex-shrink: 0 !important;
      margin-top: 1px !important;
    }

    .info-arena-item .info-label {
      font-size: 10px !important;
      font-weight: 700 !important;
      color: #888 !important;
      text-transform: uppercase !important;
      letter-spacing: 0.5px !important;
    }

    .info-arena-item .info-val {
      font-size: 12px !important;
      font-weight: 700 !important;
      color: #212529 !important;
      margin-top: 2px !important;
    }


/* ====================================================
   EXTRACTED INLINE STYLES
   ==================================================== */
#app-body .pelanggan-style-1 {
    display:none;
}
#app-body .pelanggan-style-2 {
    display: none;
}
#app-body .pelanggan-style-3 {
    font-size: 14px; font-weight: 800; color: var(--primary); margin-left: auto;
}
#app-body .pelanggan-style-4 {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px;
}
#app-body .pelanggan-style-5 {
    display: flex; flex-direction: column; overflow: hidden; flex: 1; margin-right: 12px; position: relative; min-height: 48px; justify-content: center;
}
#app-body .pelanggan-style-6 {
    font-weight: 800; font-size: 18px; color: var(--text-main); white-space: nowrap;
}
#app-body .pelanggan-style-7 {
    font-size: 13px; color: var(--text-muted); margin-top: 4px; white-space: nowrap;
}
#app-body .pelanggan-style-8 {
    display: flex; gap: 8px; align-items: center;
}
#app-body .pelanggan-style-9 {
    background: white; border-radius: 50%; padding: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: #555; cursor: pointer; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 11px; width: 38px; height: 38px;
}
#app-body .pelanggan-style-10 {
    background: white; border-radius: 50%; padding: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: #f39c12; cursor: pointer; display: flex; align-items: center; justify-content: center;
}
#app-body .pelanggan-style-11 {
    background: white; border-radius: 50%; padding: 8px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); color: var(--primary);
}
#app-body .pelanggan-style-12 {
    display: flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px;
}
#app-body .pelanggan-style-13 {
    color: #ccc; font-weight: 400;
}
#app-body .pelanggan-style-14 {
    display: flex; flex-direction: column; gap: 12px; margin-top: 4px; padding-bottom: 24px;
}
#app-body .pelanggan-style-15 {
    margin-bottom: 0 !important;
}
#app-body .pelanggan-style-16 {
    font-weight: 800; font-size: 13px; color: #fff; display: flex; align-items: center; gap: 6px;
}
#app-body .pelanggan-style-17 {
    margin: 3px 0 0; font-size: 11px; color: #ccc;
}
#app-body .pelanggan-style-18 {
    background: linear-gradient(135deg, #9b62d9 0%, #764ba2 100%); margin-bottom: 0 !important;
}
#app-body .pelanggan-style-19 {
    margin: 3px 0 0; font-size: 11px; color: rgba(255,255,255,0.8);
}
#app-body .pelanggan-style-20 {
    position: relative; background: white; color: #9b62d9;
}
#app-body .pelanggan-style-21 {
    display:none; position:absolute; top:-6px; right:-6px; background:#e74c3c; color:white; font-size:11px; font-weight:bold; width:18px; height:18px; border-radius:50%; align-items:center; justify-content:center; box-shadow:0 2px 4px rgba(0,0,0,0.3);
}
#app-body .pelanggan-style-22 {
    display: flex; align-items: center; gap: 8px;
}
#app-body .pelanggan-style-23 {
    font-size: 18px;
}
#app-body .pelanggan-style-24 {
    background: linear-gradient(135deg, #0d47a1, #1976d2, #42a5f5);
}
#app-body .pelanggan-style-25 {
    display: flex; padding: 0 20px 10px; gap: 8px;
}
#app-body .pelanggan-style-26 {
    flex: 1; padding: 8px; border-radius: 8px; border: none; font-weight: 700; font-size: 12px; background: var(--primary); color: white; cursor: pointer;
}
#app-body .pelanggan-style-27 {
    flex: 1; padding: 8px; border-radius: 8px; border: 1px solid #ddd; font-weight: 700; font-size: 12px; background: white; color: var(--text-dark); cursor: pointer;
}
#app-body .pelanggan-style-28 {
    display: none; padding: 0 20px 10px; gap: 10px;
}
#app-body .pelanggan-style-29 {
    flex: 1; padding: 10px; border-radius: 8px; border: none; font-weight: 700; background: var(--primary); color: white; cursor: pointer;
}
#app-body .pelanggan-style-30 {
    flex: 1; padding: 10px; border-radius: 8px; border: 1px solid var(--primary); font-weight: 700; background: white; color: var(--primary); cursor: pointer;
}
#app-body .pelanggan-style-31 {
    padding: 0 20px 10px;
}
#app-body .pelanggan-style-32 {
    position: relative;
}
#app-body .pelanggan-style-33 {
    position: absolute; left: 12px; top: 10px;
}
#app-body .pelanggan-style-34 {
    padding-left: 38px; border-radius: 20px; font-size: 13px;
}
#app-body .pelanggan-style-35 {
    padding: 16px 20px 0;
}
#app-body .pelanggan-style-36 {
    display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
#app-body .pelanggan-style-37 {
    display: flex; align-items: center;
}
#app-body .pelanggan-style-38 {
    background: white; border-radius: 50%; padding: 6px; box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
#app-body .pelanggan-style-39 {
    margin-left: 12px; font-weight: 800; font-size: 16px; color: var(--text-main);
}
#app-body .pelanggan-style-40 {
    background: #e74c3c; color: white; border: none; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 800; display: flex; align-items: center; gap: 8px; cursor: pointer; box-shadow: 0 4px 10px rgba(231, 76, 60, 0.25);
}
#app-body .pelanggan-style-41 {
    padding: 10px 20px 40px;
}
#app-body .pelanggan-style-42 {
    flex: 1; overflow: hidden;
}
#app-body .pelanggan-style-43 {
    display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
#app-body .pelanggan-style-44 {
    margin: 0; font-size: 17px; font-weight: 800; color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
#app-body .pelanggan-style-45 {
    margin: 3px 0 0; color: #b39ddb; font-size: 11px; font-weight: 600;
}
#app-body .pelanggan-style-46 {
    font-weight: 800; font-size: 14px; color: #2ecc71;
}
#app-body .pelanggan-style-47 {
    background: rgba(155, 98, 217, 0.12); color: #9b62d9;
}
#app-body .pelanggan-style-48 {
    font-size: 10px; font-weight: 700; color: #888; text-transform: uppercase;
}
#app-body .pelanggan-style-49 {
    font-size: 14px; font-weight: 800; color: var(--text-main); font-family: 'Rajdhani', sans-serif;
}
#app-body .pelanggan-style-50 {
    background: rgba(46, 204, 113, 0.12); color: #2ecc71;
}
#app-body .pelanggan-style-51 {
    font-size: 13px; font-weight: 800; color: #2ecc71;
}
#app-body .pelanggan-style-52 {
    text-decoration: none; color: inherit; cursor: pointer;
}
#app-body .pelanggan-style-53 {
    color: #9b62d9;
}
#app-body .pelanggan-style-54 {
    color: #27ae60;
}
#app-body .pelanggan-style-55 {
    margin-top: 12px; padding: 10px 12px; background: #f8f9fa; border-radius: 8px; border: 1px solid #eee; font-size: 11px; color: #666; line-height: 1.4;
}
#app-body .pelanggan-style-56 {
    display:flex; justify-content:space-between; align-items:center; padding-bottom: 12px; margin-bottom: 0;
}
#app-body .pelanggan-style-57 {
    font-size: 15px; font-weight: 600;
}
#app-body .pelanggan-style-58 {
    font-size: 20px; font-weight: 800; color: var(--primary);
}
#app-body .pelanggan-style-59 {
    text-align: center;
}
#app-body .pelanggan-style-60 {
    background: white; padding: 10px; border-radius: 12px; display: inline-block; margin-bottom: 10px; border: 2px solid #3498db;
}
#app-body .pelanggan-style-61 {
    width: 100%; max-width: 260px; border-radius: 8px; display: block;
}
#app-body .pelanggan-style-62 {
    font-size: 14px; line-height: 1.5;
}
#app-body .pelanggan-style-63 {
    color: var(--primary); font-size: 1.2rem;
}
#app-body .pelanggan-style-64 {
    color: #e74c3c;
}
#app-body .pelanggan-style-65 {
    z-index: 99999;
}
#app-body .pelanggan-style-66 {
    text-align: center; max-width: 320px; padding: 25px 20px;
}
#app-body .pelanggan-style-67 {
    background: #fff0f0; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px;
}
#app-body .pelanggan-style-68 {
    font-size: 18px; font-weight: 800; color: #111; margin-bottom: 8px;
}
#app-body .pelanggan-style-69 {
    font-size: 13px; color: #666; margin-bottom: 20px;
}
#app-body .pelanggan-style-70 {
    display: flex; gap: 10px;
}
#app-body .pelanggan-style-71 {
    flex: 1; padding: 12px; border-radius: 8px; border: 1px solid #ddd; background: white; color: #555; font-weight: 700; cursor: pointer;
}
#app-body .pelanggan-style-72 {
    flex: 1; padding: 12px; border-radius: 8px; border: none; background: #e74c3c; color: white; font-weight: 700; cursor: pointer;
}
#app-body .pelanggan-style-73 {
    z-index: 9999;
}
#app-body .pelanggan-style-74 {
    max-width: 360px; text-align: center;
}
#app-body .pelanggan-style-75 {
    font-size: 40px; margin-bottom: 10px;
}
#app-body .pelanggan-style-76 {
    font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 8px;
}
#app-body .pelanggan-style-77 {
    text-align: left; margin-bottom: 14px;
}
#app-body .pelanggan-style-78 {
    font-weight: 700; font-size: 13px; margin-bottom: 8px; display: block;
}
#app-body .pelanggan-style-79 {
    flex: 1; padding: 10px; border-radius: 8px; border: 2px solid var(--primary); background: var(--primary); color: white; font-weight: bold; cursor: pointer;
}
#app-body .pelanggan-style-80 {
    flex: 1; padding: 10px; border-radius: 8px; border: 2px solid #ddd; background: white; color: #555; font-weight: bold; cursor: pointer;
}
#app-body .pelanggan-style-81 {
    color:red;
}
#app-body .pelanggan-style-82 {
    font-weight: 700; font-size: 13px; margin-bottom: 4px; display: block;
}
#app-body .pelanggan-style-83 {
    font-size: 12.5px; color: #f39c12; font-weight: 600; margin-bottom: 8px;
}
#app-body .pelanggan-style-84 {
    text-align: left; margin-bottom: 20px;
}
#app-body .pelanggan-style-85 {
    font-weight: 700; font-size: 13px;
}
#app-body .pelanggan-style-86 {
    background: linear-gradient(135deg, #9b62d9, #764ba2); color: white; font-weight: 800; border-radius: 10px;
}
#app-body .pelanggan-style-87 {
    opacity: 0.5; pointer-events: none;
}
#app-body .pelanggan-style-88 {
    display: flex; align-items: center; gap: 8px; font-size: 17px; font-weight: 800;
}
#app-body .pelanggan-style-89 {
    margin-bottom: 14px;
}
#app-body .pelanggan-style-90 {
    font-weight: 700; font-size: 13px; margin-bottom: 6px; display: block;
}
#app-body .pelanggan-style-91 {
    margin-bottom: 18px;
}
#app-body .pelanggan-style-92 {
    resize: none; font-family: inherit; font-size: 13px;
}
#app-body .pelanggan-style-93 {
    background: linear-gradient(135deg, #f39c12, #d35400); color: white; font-weight: 800; padding: 12px; border-radius: 10px;
}
#app-body .pelanggan-style-94 {
    font-size: 13px; color: #333; line-height: 1.6;
}
#app-body .pelanggan-style-95 {
    margin-bottom: 16px;
}
#app-body .pelanggan-style-96 {
    font-size: 14px; color: var(--primary); margin-bottom: 4px;
}
#app-body .pelanggan-style-97 {
    padding-left: 16px; margin: 0;
}
#app-body .pelanggan-style-98 {
    max-width: 360px; text-align: center; background: #181720; border: 1.5px solid rgba(243,156,18,0.4); border-radius: 20px; padding: 22px 20px; color: white; box-shadow: 0 10px 35px rgba(0,0,0,0.7);
}
#app-body .pelanggan-style-99 {
    display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px;
}
#app-body .pelanggan-style-100 {
    font-weight: 800; font-size: 16px; color: #f39c12; display: flex; align-items: center; gap: 6px;
}
#app-body .pelanggan-style-101 {
    background: rgba(255,255,255,0.1); border-radius: 50%; color: white; padding: 4px; border: none; cursor: pointer;
}
#app-body .pelanggan-style-102 {
    font-size: 12px; color: #aaa; margin: 0 0 16px; line-height: 1.4;
}
#app-body .pelanggan-style-103 {
    background: white; padding: 14px; border-radius: 16px; display: inline-block; box-shadow: 0 0 25px rgba(243,156,18,0.3); margin-bottom: 20px;
}
#app-body .pelanggan-style-104 {
    width: 200px; height: 200px; display: block; border-radius: 8px;
}
#app-body .pelanggan-style-105 {
    display: flex; gap: 8px;
}
#app-body .pelanggan-style-106 {
    background: #27ae60; color: white; font-size: 13px; padding: 12px; border-radius: 10px; border: none; font-weight: 800; cursor: pointer; flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; box-shadow: 0 3px 10px rgba(39,174,96,0.3);
}
#app-body .pelanggan-style-107 {
    color:white;
}
#app-body .pelanggan-style-108 {
    text-align:center; padding: 20px; color: #888; font-size: 13px;
}
