/* ============================================================
   VIP HUP MOBILE — Brand Style (Kanit + Bootstrap Icons)
   Primary: #ED1C24  (red)
   Black:   #000000  | White: #FFFFFF
   ============================================================ */

:root {
  --brand: #ED1C24;
  --brand-dark: #c5161d;
  --black: #000000;
  --white: #ffffff;
  --bg: #f7f7f8;
  --text: #1a1a1a;
  --muted: #6b7280;
  --border: #e5e7eb;
  --soft: #fff5f5;
  --shadow: 0 8px 24px rgba(0,0,0,.06);
  --radius: 12px;
}

* {
  box-sizing: border-box;
}

html, body, button, input, select, textarea, h1, h2, h3, h4, h5, h6, table, th, td, blockquote, q, cite {
  font-family: 'Kanit', sans-serif !important;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand); text-decoration: none; }
a:hover { text-decoration: underline; }

.bi { font-size: 1.05em; vertical-align: -0.05em; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Top Bar (Shopee Red/White Style) ---------- */
.topbar {
  background: var(--brand); /* Red #ED1C24 */
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky; top: 0; z-index: 50;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.topbar-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 24px; gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 10px;
}
.logo:hover {
  text-decoration: none;
  opacity: 0.9;
}
.logo-img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
  background: white;
  padding: 4px;
  box-sizing: border-box;
  object-fit: contain;
}
.logo-text {
  font-family: 'Prompt', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.5px;
  color: white;
}
.logo-icon {
  font-size: 26px; color: var(--brand);
  background: white;
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.2s;
}
.logo-icon:hover {
  transform: scale(1.05);
}

/* Shopee-like Search Box */
.header-search {
  position: relative;
  flex: 1;
  max-width: 540px;
  display: flex;
  align-items: center;
}
.header-search input {
  width: 100%;
  padding: 8px 12px 8px 36px;
  border-radius: 6px;
  border: 0;
  background: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  color: #1a1a1a !important;
  font-family: 'Kanit', sans-serif;
  transition: all 0.15s;
}
.header-search input:focus {
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.3) !important;
}
.header-search .search-icon {
  position: absolute;
  left: 12px;
  color: #888888;
  font-size: 16px;
  pointer-events: none;
}

/* Top Nav Links and Cart */
.topnav {
  display: flex; align-items: center; gap: 16px;
}
.topnav a.nav-link-desktop {
  color: white; font-weight: 500; font-size: 14px;
  padding: 6px 10px; border-radius: 6px; display: inline-flex; align-items: center; gap: 6px;
  transition: background 0.15s;
}
.topnav a.nav-link-desktop:hover {
  color: white; text-decoration: none; background: rgba(255, 255, 255, 0.15);
}

.cart-icon-btn {
  position: relative;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cart-icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
}
.cart-badge {
  position: absolute;
  top: 0px; right: -2px;
  background: white;
  color: var(--brand); /* Red text */
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--brand);
  line-height: 1;
}

.profile-btn {
  color: white;
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background 0.15s;
}
.profile-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  text-decoration: none;
}

.topnav a.login-btn {
  background: white;
  color: var(--brand);
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: background 0.15s, transform 0.1s;
}
.topnav a.login-btn:hover {
  background: #fce4e5;
  color: var(--brand);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ---------- Buttons ---------- */
.btn-primary, .btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 18px; border-radius: 8px;
  font-family: 'Kanit'; font-weight: 400; font-size: 14px;
  cursor: pointer; border: 0; gap: 6px; transition: .15s;
  text-decoration: none;
}
.btn-primary { background: var(--brand); color: white; }
.btn-primary:hover { background: var(--brand-dark); text-decoration: none; color: white; }
.btn-ghost {
  background: white; color: var(--text); border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.btn-ghost.danger { color:#c0392b; border-color:#fab; }
.btn-ghost.danger:hover { background: #fff0f0; }
.btn-primary.block, .btn-ghost.block { display: flex; width: 100%; }
.btn-primary.lg, .btn-ghost.lg { padding: 14px 24px; font-size: 16px; }
.btn-primary.xs, .btn-ghost.xs { padding: 5px 10px; font-size: 12px; }

/* ---------- Sections / Layout ---------- */
main.container { padding-top: 24px; padding-bottom: 64px; min-height: 60vh; }

.section { margin: 48px 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px;
}
.section-head h2 { margin: 0; }
.link { color: var(--brand); font-weight: 500; }

.page-head {
  display: flex; justify-content: space-between; align-items: center;
  margin: 8px 0 18px;
  flex-wrap: wrap; gap: 12px;
}
.page-head h2 { display: inline-flex; align-items: center; gap: 10px; margin: 0; }
.page-head h2 .bi { color: var(--brand); }

.grid { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.span-2 { grid-column: span 2; }
@media (max-width: 900px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .span-2 { grid-column: span 1; }
}
@media (max-width: 560px) {
  .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--brand), #b00b13);
  color: white; border-radius: var(--radius); margin-top: 24px;
  overflow: hidden; position: relative;
}
.hero::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,.07);
}
.hero-inner {
  display: grid; grid-template-columns: 1.4fr 1fr;
  padding: 56px 48px; gap: 24px; align-items: center;
}
.hero-text h1 { font-size: 40px; font-weight: 700; line-height: 1.2; margin: 0 0 12px; }
.hero-text p { opacity: .92; font-size: 18px; }
.hero-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-cta .btn-primary { background: white; color: var(--brand); }
.hero-cta .btn-primary:hover { background: #fce4e5; }
.hero-cta .btn-ghost { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.hero-cta .btn-ghost:hover { background: rgba(255,255,255,.12); color: white; }

.hero-icon {
  width: 240px; height: 240px; margin: 0 auto; position: relative;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hero-icon .bi {
  font-size: 130px; color: var(--brand);
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 32px; }
  .hero-icon { width: 180px; height: 180px; }
  .hero-icon .bi { font-size: 90px; }
  .hero-text h1 { font-size: 30px; }
}

/* ---------- Cards / Stats ---------- */
.cards .card {
  display: block;
  background: white; border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow); border-left: 4px solid var(--brand);
  transition: .15s; color: var(--text);
}
.cards .card:hover {
  transform: translateY(-2px); text-decoration: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.cards .card .ic {
  font-size: 32px; margin-bottom: 8px; color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; background: var(--soft); border-radius: 12px;
}
.cards .card h3 { margin: 4px 0; color: var(--brand); font-weight: 600; }
.cards .card p { margin: 0; color: var(--muted); font-size: 14px; }

.stat {
  background: white; border-radius: var(--radius); padding: 18px;
  text-align: center; box-shadow: var(--shadow);
}
.stat .num { font-size: 28px; font-weight: 700; color: var(--brand); }
.stat .lbl {
  color: var(--muted); font-size: 13px; margin-top: 4px;
  display: inline-flex; align-items: center; gap: 5px;
}
.stat.hl { background: var(--brand); color: white; }
.stat.hl .num, .stat.hl .lbl { color: white; }
.stat.hl.green { background: #16a34a; }
.stat.hl.red   { background: #dc2626; }

/* ---------- Forms ---------- */
.form, .card-form {
  background: white; padding: 24px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form label, .card-form label {
  display: block; margin-bottom: 12px; font-size: 14px; color: var(--text);
}
input, select, textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--border);
  border-radius: 8px; font-family: 'Kanit'; font-size: 14px;
  background: white; transition: .15s;
}
input:focus, select:focus, textarea:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(237,28,36,.1);
}
textarea { resize: vertical; }

.input-with-btn { display: flex; gap: 8px; }
.input-with-btn input { flex: 1; }

.vat-toggle {
  display: flex; align-items: center; gap: 10px;
  padding: 12px; background: var(--soft); border: 2px dashed var(--brand);
  border-radius: 8px; cursor: pointer;
}
.vat-toggle input { width: auto; }
.vat-toggle span { font-weight: 500; color: var(--brand); }

.total-cost-box {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--soft); padding: 16px; border-radius: 8px;
  border: 2px solid var(--brand);
}
.total-cost-box strong { color: var(--brand); font-size: 24px; }

.form-actions { display: flex; gap: 10px; margin-top: 24px; }

.filter-bar {
  display: flex; gap: 10px; margin-bottom: 18px; flex-wrap: wrap;
  background: white; padding: 14px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.filter-bar input, .filter-bar select { flex: 1; min-width: 160px; }

/* ---------- Auth ---------- */
.auth-card {
  max-width: 420px; margin: 48px auto;
  background: white; padding: 32px; border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.auth-card h2 {
  margin-top: 0; color: var(--brand);
  display: inline-flex; align-items: center; gap: 10px;
}
.hint { margin-top: 16px; padding: 12px; background: var(--soft); border-radius: 8px; font-size: 13px; }
.hint summary { cursor: pointer; font-weight: 500; }
.hint ul { margin: 8px 0 0 16px; padding: 0; }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); }
.data-table {
  width: 100%; background: white; border-radius: var(--radius);
  border-collapse: collapse; box-shadow: var(--shadow); overflow: hidden;
}
.data-table th, .data-table td {
  padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.data-table thead { background: var(--soft); }
.data-table thead th { color: var(--brand); font-weight: 600; }
.data-table tbody tr:hover { background: #fafafa; }
.data-table tfoot { background: var(--soft); }
.data-table .right { text-align: right; }
.data-table .center { text-align: center; }
.data-table code {
  font-family: 'Courier New', monospace; background: #f4f4f5; padding: 2px 6px; border-radius: 4px;
  font-size: 12px;
}

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
}
.badge.green  { background: #dcfce7; color: #166534; }
.badge.red    { background: #fee2e2; color: #991b1b; }
.badge.yellow { background: #fef9c3; color: #854d0e; }
.badge.orange { background: #ffedd5; color: #9a3412; }
.badge.blue   { background: #fff5f5; color: var(--brand); }
.badge.gray   { background: #e5e7eb; color: #374151; }

/* ---------- Product Cards ---------- */
.product-card {
  display: block; background: white; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  color: var(--text); transition: .15s;
}
.product-card:hover {
  transform: translateY(-3px); text-decoration: none;
  box-shadow: 0 14px 36px rgba(0,0,0,.12);
}
.product-img {
  height: 250px; background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--brand); padding: 10px;
}
/* แสดงทั้งเครื่อง ไม่ครอบตัด · กรอบขนาดเท่ากันทุกใบ (มาตรฐานเดียวกัน) */
.product-img img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; }
.product-img .placeholder { font-size: 64px; opacity: .3; color: var(--brand); }
.product-img .placeholder.big { font-size: 120px; }
.product-info { padding: 14px 18px; }
.product-info .brand { color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .5px; }
.product-info .model { font-weight: 600; font-size: 16px; margin: 4px 0; }
.product-info .meta { font-size: 13px; color: var(--muted); }
.product-info .price {
  margin-top: 10px; font-size: 20px; font-weight: 700; color: var(--brand);
}

.product-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  background: white; border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 32px; margin: 24px 0;
}
.product-detail-img {
  background: #ffffff; border: 1px solid #eef0f2; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  min-height: 360px; max-height: 520px; overflow: hidden; color: var(--brand); padding: 14px;
}
.product-detail-img img { max-width: 100%; max-height: 490px; object-fit: contain; }
.product-detail-info .brand { color: var(--muted); text-transform: uppercase; letter-spacing: 1px; }
.product-detail-info .model { font-size: 28px; margin: 8px 0; font-weight: 600; }
.product-detail-info .meta { color: var(--muted); margin: 4px 0; }
.product-detail-info .price-big {
  font-size: 36px; font-weight: 700; color: var(--brand); margin: 24px 0;
}
.cta-row { display: flex; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.info-block { background: var(--soft); padding: 16px; border-radius: 8px; font-size: 14px; }
.info-block p { margin: 4px 0; }
@media (max-width: 900px) { .product-detail { grid-template-columns: 1fr; padding: 20px; } }

/* ---------- Receipt / Print ---------- */
.receipt {
  background: white; padding: 36px; border-radius: var(--radius);
  box-shadow: var(--shadow); margin: 24px 0;
}
.receipt-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 18px; border-bottom: 2px solid var(--brand); margin-bottom: 18px;
}
.brand-block { display: flex; gap: 14px; align-items: center; }
.brand-icon {
  width: 60px; height: 60px; background: var(--soft); border-radius: 50%;
  color: var(--brand); display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}
.receipt-head h1 { margin: 0; color: var(--brand); font-weight: 700; }
.receipt-meta { text-align: right; font-size: 14px; }
.receipt-customer { background: var(--soft); padding: 16px; border-radius: 8px; margin-bottom: 18px; }
.receipt-foot { margin-top: 16px; padding: 12px; background: #f0fdf4; border-radius: 8px; color: #166534; }

.action-bar { margin: 24px 0; display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Flash ---------- */
.flash {
  padding: 12px 16px; border-radius: 8px; margin-bottom: 16px; font-size: 14px;
  display: flex; align-items: center; gap: 8px;
}
.flash .bi { font-size: 18px; }
.flash.success { background: #dcfce7; color: #166534; border-left: 4px solid #16a34a; }
.flash.error   { background: #fee2e2; color: #991b1b; border-left: 4px solid #dc2626; }
.flash.info    { background: #dbeafe; color: #1e40af; border-left: 4px solid #2563eb; }

/* ---------- Footer ---------- */
.footer {
  background: var(--black); color: white;
  padding: 24px 0; margin-top: 64px;
  text-align: center;
}
.footer .muted { color: rgba(255,255,255,.6); font-size: 12px; margin-top: 4px; }

/* ---------- Features ---------- */
.features .feature {
  background: white; padding: 24px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow);
}
.feature .ic {
  font-size: 36px; margin-bottom: 12px; color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; background: var(--soft); border-radius: 50%;
}
.feature h4 { margin: 8px 0; color: var(--brand); font-weight: 600; }
.feature p { margin: 0; color: var(--muted); font-size: 14px; }

.muted { color: var(--muted); }
.center { text-align: center; }
.right { text-align: right; }
.green { color: #16a34a; }
.red { color: #dc2626; }

/* ---------- Dialog ---------- */
dialog.dialog {
  border: 0; border-radius: var(--radius); padding: 0;
  width: 90%; max-width: 480px; box-shadow: 0 24px 64px rgba(0,0,0,.2);
}
.dialog-body { padding: 24px; }
dialog.dialog::backdrop { background: rgba(0,0,0,.5); }

/* ---------- Barcode print ---------- */
.barcode-sheet { padding: 24px; }
.barcode-card {
  background: white; padding: 18px; border-radius: 8px;
  border: 1px dashed var(--border);
  width: 320px; text-align: center;
  box-shadow: var(--shadow);
}
.barcode-brand { font-weight: 700; color: var(--brand); font-size: 14px; }
.barcode-model { font-weight: 600; margin: 4px 0; }
.barcode-meta { color: var(--muted); font-size: 12px; margin-bottom: 10px; }
.barcode-imei { font-family: 'Courier New', monospace; font-size: 14px; margin-top: 6px; }
.barcode-price { font-weight: 700; color: var(--brand); font-size: 22px; margin-top: 10px; }

.bank-card {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 12px 16px; margin-bottom: 10px; background: white;
}
.bank-card .bank-name {
  font-weight: 600; color: var(--brand);
  display: flex; align-items: center; gap: 6px;
}
.bank-card .bank-acc { font-family: 'Courier New', monospace; font-size: 20px; font-weight: 700; }

.order-card { margin-bottom: 16px; }

.items-table tbody tr td { padding: 6px; }

/* ---------- Print Mode ---------- */
@media print {
  .topbar, .footer, .noprint, .topnav, .action-bar { display: none !important; }
  body, main.container { background: white !important; padding: 0 !important; }
  .receipt, .printable { box-shadow: none; border-radius: 0; }
}

/* ---------- Shopee Mobile Bottom Nav & Style Adjustments ---------- */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #ffffff;
  display: none;
  justify-content: space-around;
  align-items: center;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  z-index: 9999;
}
.mobile-bottom-nav a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  text-decoration: none;
  font-size: 11px;
  flex: 1;
  height: 100%;
  gap: 2px;
  transition: color 0.15s;
}
.mobile-bottom-nav a i {
  font-size: 20px;
}
.mobile-bottom-nav a.active {
  color: var(--brand); /* Red active */
}
.mobile-bottom-nav a.position-relative {
  position: relative;
}
.mobile-bottom-nav .cart-badge {
  top: 4px;
  right: 18px;
  background: var(--brand);
  color: white;
  border: 1px solid white;
}

@media (max-width: 768px) {
  /* Show mobile bottom nav */
  .mobile-bottom-nav {
    display: flex;
  }
  
  /* Add padding to prevent bottom nav from covering content */
  body {
    padding-bottom: 70px !important;
  }
  
  .footer {
    margin-bottom: 60px !important;
  }

  /* Responsive header bar */
  .topbar-inner {
    padding: 10px 16px;
    gap: 8px;
  }
  .nav-link-desktop {
    display: none !important;
  }
  .profile-name {
    display: none !important;
  }
  .profile-btn {
    padding: 6px;
  }
  .logo-icon {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }
  .header-search input {
    padding: 8px 10px 8px 32px;
    font-size: 13px;
  }
  .header-search .search-icon {
    left: 10px;
    font-size: 14px;
  }
}

/* ---------- Brand Filter Chips ---------- */
.brand-filter-chips {
  display: flex;
  gap: 8px;
  margin: 16px 0 24px 0;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.brand-filter-chips::-webkit-scrollbar {
  display: none; /* Hide scrollbars */
}
.brand-filter-chips .chip {
  background: #ffffff;
  color: #475569;
  border: 1px solid #cbd5e1;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.15s ease-in-out;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.brand-filter-chips .chip:hover {
  background: #fff5f5;
  color: var(--brand);
  border-color: var(--brand);
  text-decoration: none;
}
.brand-filter-chips .chip.active {
  background: var(--brand);
  color: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 2px 8px rgba(237, 28, 36, 0.2);
}

/* ---------- Brand SVG Logo Style ---------- */
.brand-logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-circle-dots {
  fill: #ffffff; /* Default header is white circle/dots */
  transition: fill 0.2s ease;
}
.logo-v-cut {
  fill: #ED1C24; /* Default V is red */
  transition: fill 0.2s ease;
}

/* For light backgrounds (like admin sidebar or general white surface) */
body.admin-mode .brand-logo-svg .logo-circle-dots,
.brand-logo-svg.dark .logo-circle-dots {
  fill: #ED1C24; /* Red circle on white bg */
}
body.admin-mode .brand-logo-svg .logo-v-cut,
.brand-logo-svg.dark .logo-v-cut {
  fill: #ffffff; /* White V on white bg */
}
