html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.app-logo {
  display: block;
  height: 34px;
  width: auto;
  max-width: min(44vw, 180px);
  object-fit: contain;
}

.app-logo-text {
  font-weight: 700;
  white-space: nowrap;
}

.app-cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(0,0,0,0.02);
  color: inherit;
  text-decoration: none;
}

.app-cart-btn:hover {
  background: rgba(0,0,0,0.04);
}

.app-cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #134e83;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.14);
}

@media (max-width: 420px) {
  .app-logo-text { display: none; }
  .app-logo { max-width: 60vw; }
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}