/* ==========================================================================
   BOBA FOOD VLM - COZY DESIGN SYSTEM & RESPONSIVE STYLES
   Aesthetic: Warm, minimalist, tactile, cozy café / kitchen vibes
   Zero-overflow mobile-first responsive architecture
   ========================================================================== */

:root {
  /* Color Palette - Warm earthy pastels */
  --bg-main: #FBF8F2;
  --bg-surface: #FFFFFF;
  --bg-card: #FAF6EF;
  --bg-card-hover: #F4EDE0;
  --bg-elevated: #FFFFFF;
  
  /* Brand Accents */
  --primary: #D97D64;        /* Warm Terracotta */
  --primary-hover: #C56A52;
  --primary-light: #F9ECE8;
  --primary-subtle: rgba(217, 125, 100, 0.12);

  --matcha: #5B8266;         /* Matcha Green (Health/Protein) */
  --matcha-light: #EBF2ED;
  --matcha-text: #3D5A45;

  --honey: #E69D45;          /* Honey Gold (Carbs/Energy) */
  --honey-light: #FAF3E6;
  --honey-text: #965F1D;

  --cocoa: #70584B;          /* Soft Cocoa (Fats/Lipids) */
  --cocoa-light: #F2ECE8;
  --cocoa-text: #4E3C32;

  --berry: #B85B6B;          /* Berry Red / Highlights */
  --berry-light: #F7EAED;

  /* Neutrals & Text */
  --text-title: #2B2520;
  --text-body: #594F47;
  --text-muted: #8F8278;
  --text-subtle: #B8ADA4;
  --border-light: #EFE8DE;
  --border-subtle: #F5EFE6;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(67, 49, 36, 0.04);
  --shadow-md: 0 8px 20px rgba(67, 49, 36, 0.06);
  --shadow-lg: 0 16px 36px rgba(67, 49, 36, 0.09);
  --shadow-warm: 0 10px 25px rgba(217, 125, 100, 0.18);

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.18s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-bounce: 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Strict Overflow Containment */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  min-width: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  max-width: 100vw;
  min-height: 100%;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--text-body);
  line-height: 1.5;
  letter-spacing: -0.01em;
  overflow-x: hidden;
  position: relative;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
}

/* Anti auto-zoom rule for mobile */
input, select, textarea, button {
  touch-action: manipulation;
  font-size: 16px;
}

/* Layout App Container */
.app-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  padding: 12px 14px 88px 14px;
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .app-container {
    padding: 24px 24px 40px 24px;
  }
}

/* Header */
.app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0 14px 0;
  width: 100%;
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #FDECE7 0%, #F5D7CE 100%);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.brand-info h1 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: -0.03em;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}

.brand-info .brand-tagline {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 500;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.icon-btn {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.icon-btn:hover {
  background: var(--bg-card-hover);
  color: var(--primary);
}

/* Hardware Status Pill */
.webgpu-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--matcha-text);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
  align-self: flex-start;
}

.webgpu-badge.gpu-ready .status-dot {
  background-color: var(--matcha);
  box-shadow: 0 0 0 3px rgba(91, 130, 102, 0.2);
}

.webgpu-badge.gpu-fallback .status-dot {
  background-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(230, 157, 69, 0.2);
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Main Workspace Grid */
.main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 860px) {
  .main-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: start;
    gap: 20px;
  }
}

/* Scanner Card */
.card-scanner {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 14px;
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.scanner-viewfinder {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4/3;
  background: #25201D;
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.25);
}

.scanner-viewfinder video {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
}

.scanner-viewfinder img.preview-img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: cover;
  display: none;
}

.viewfinder-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #E2D9D2;
  gap: 6px;
  padding: 16px;
}

.placeholder-art {
  font-size: 36px;
}

.placeholder-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #FFFFFF;
}

.placeholder-hint {
  font-size: 0.76rem;
  color: #A89D95;
  max-width: 220px;
}

.viewfinder-overlay {
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1.5px dashed rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.viewfinder-overlay.scanning {
  border-color: var(--primary);
  animation: pulse-border 1.8s infinite ease-in-out;
}

.scan-laser-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--honey), transparent);
  box-shadow: 0 0 12px var(--primary);
  top: 0;
  display: none;
}

.scanning .scan-laser-line {
  display: block;
  animation: scan-move 2.2s infinite ease-in-out;
}

@keyframes scan-move {
  0% { top: 5%; opacity: 0; }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { top: 95%; opacity: 0; }
}

@keyframes pulse-border {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.02); opacity: 1; }
}

/* Scanner Action Controls */
.scanner-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  width: 100%;
}

.btn-primary {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  transition: all var(--transition-fast);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--bg-card);
  color: var(--text-body);
  border: 1px solid var(--border-light);
  padding: 12px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
}

/* Samples Carousel */
.sample-section {
  margin-top: 16px;
  width: 100%;
  max-width: 100%;
}

.sample-title {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sample-carousel {
  display: flex;
  gap: 8px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
}

.sample-carousel::-webkit-scrollbar {
  height: 4px;
}

.sample-carousel::-webkit-scrollbar-thumb {
  background: var(--border-light);
  border-radius: 4px;
}

.sample-chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.sample-chip .chip-emoji {
  font-size: 1.2rem;
}

.sample-chip .chip-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-title);
}

.sample-chip .chip-kcal {
  font-size: 0.68rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Nutrition Analysis Card */
.card-results {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 18px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 100%;
  min-height: 440px;
  box-sizing: border-box;
  overflow: hidden;
}

.results-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  padding: 30px 16px;
  color: var(--text-muted);
  gap: 10px;
}

.empty-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 4px;
  border: 1px dashed var(--border-light);
}

.empty-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-title);
}

.empty-desc {
  font-size: 0.82rem;
  max-width: 260px;
  line-height: 1.4;
}

.results-content {
  display: none;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  max-width: 100%;
}

.dish-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 10px;
  width: 100%;
}

.dish-name-group h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-title);
  letter-spacing: -0.02em;
}

.dish-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

.badge-vlm {
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  padding: 2px 7px;
  border-radius: var(--radius-pill);
}

.badge-portion {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Quick Types Correction */
.quick-types-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: var(--bg-card);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  width: 100%;
  max-width: 100%;
}

.quick-types-row {
  display: flex;
  gap: 6px;
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.type-pill {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-pill);
  padding: 4px 9px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-body);
  white-space: nowrap;
  cursor: pointer;
  flex-shrink: 0;
}

.type-pill:hover, .type-pill.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
}

/* Nutrition Hero Grid */
.nutrition-hero {
  display: grid;
  grid-template-columns: 95px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  background: var(--bg-card);
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .nutrition-hero {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    gap: 14px;
    text-align: center;
  }
}

.calorie-ring-container {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.calorie-svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.calorie-bg-circle {
  fill: none;
  stroke: #EAE2D5;
  stroke-width: 8;
}

.calorie-progress-circle {
  fill: none;
  stroke: var(--primary);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 60;
  transition: stroke-dashoffset 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.calorie-text-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.calorie-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-title);
  line-height: 1;
}

.calorie-unit {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
}

/* Macros Grid */
.macros-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  max-width: 100%;
}

.macro-box {
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 8px 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  overflow: hidden;
  text-align: left;
}

.macro-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.macro-box.protein .macro-label { color: var(--matcha-text); }
.macro-box.carbs .macro-label { color: var(--honey-text); }
.macro-box.fat .macro-label { color: var(--cocoa-text); }

.macro-value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-title);
}

.macro-bar-track {
  width: 100%;
  height: 4px;
  background: #EFE8DE;
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}

.macro-bar-fill {
  height: 100%;
  border-radius: 2px;
  transition: width 0.6s ease-out;
}

.protein .macro-bar-fill { background: var(--matcha); }
.carbs .macro-bar-fill { background: var(--honey); }
.fat .macro-bar-fill { background: var(--cocoa); }

/* Ingredients List */
.ingredients-section {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 100%;
}

.section-subtitle {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-title);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ingredients-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
  width: 100%;
  max-width: 100%;
  padding-right: 2px;
}

.ingredient-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 7px 10px;
  font-size: 0.82rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.ing-name-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--text-title);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex: 1;
}

.ing-bullet {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.ing-metrics {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.78rem;
  flex-shrink: 0;
}

.ing-grams-input {
  width: 48px;
  padding: 2px 4px;
  border: 1px solid var(--border-light);
  border-radius: 4px;
  background: var(--bg-surface);
  font-size: 16px !important;
  font-weight: 600;
  text-align: right;
  color: var(--text-title);
  font-family: inherit;
  transform: scale(0.85);
  transform-origin: right center;
}

/* Chef Insight Box */
.chef-insight-box {
  background: linear-gradient(135deg, #FAF4EB 0%, #F5ECDD 100%);
  border: 1px solid #EBE0D0;
  border-radius: var(--radius-md);
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.78rem;
  color: var(--text-body);
  width: 100%;
  box-sizing: border-box;
}

.insight-icon {
  font-size: 1rem;
  line-height: 1;
}

.results-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
  width: 100%;
}

/* Bottom Navigation (Mobile PWA) */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-around;
  padding: 8px 12px env(safe-area-inset-bottom, 10px) 12px;
  z-index: 100;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.03);
}

@media (min-width: 768px) {
  .bottom-nav {
    display: none;
  }
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.nav-item.active {
  color: var(--primary);
}

.nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

/* Drawer / Modals */
.drawer-modal {
  position: fixed;
  inset: 0;
  background: rgba(43, 37, 32, 0.45);
  backdrop-filter: blur(4px);
  display: none;
  align-items: flex-end;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

@media (min-width: 640px) {
  .drawer-modal {
    align-items: center;
    padding: 20px;
  }
}

.drawer-modal.open {
  display: flex;
  opacity: 1;
}

.drawer-content {
  background: var(--bg-surface);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  padding: 20px 16px;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .drawer-content {
    border-radius: var(--radius-xl);
  }
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 10px;
}

.drawer-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-title);
}

.diary-summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.diary-items-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.diary-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 10px 12px;
}

.diary-item-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.diary-thumb {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: #EBE1D3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  overflow: hidden;
  flex-shrink: 0;
}

.diary-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.diary-item-info h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-title);
}

.diary-item-info span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.setting-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.setting-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-title);
}

.setting-input, .setting-select {
  padding: 8px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  font-family: inherit;
  font-size: 16px;
  color: var(--text-title);
}

.toast-container {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 300;
  pointer-events: none;
  width: 90%;
  max-width: 360px;
}

.toast {
  background: #2B2520;
  color: #FFFFFF;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.pwa-banner {
  background: var(--primary-light);
  border: 1px solid rgba(217, 125, 100, 0.25);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.pwa-banner-text {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-hover);
}
