/* ============================================================
   Black Foodies Week — Shared Stylesheet
   Design system: dark slate + competition red + amber
   Mobile-first, no frameworks
   ============================================================ */

/* --- Google Fonts (loaded in HTML head) --- */

/* --- CSS Custom Properties --- */
:root {
  --primary: #dc2626;
  --primary-hover: #b91c1c;
  --accent: #f59e0b;
  --accent-hover: #d97706;
  --bg: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #263348;
  --border: #334155;
  --text: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --success: #22c55e;
  --radius: 4px;
  --radius-sm: 2px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.6);
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1100px;
  --nav-height: 64px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* --- Skip Navigation (accessibility) --- */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}

.skip-nav:focus {
  top: 0;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.15;
}

h1 { font-size: clamp(2rem, 7vw, 4rem); }
h2 { font-size: clamp(1.5rem, 5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 3vw, 1.5rem); }

p {
  line-height: 1.7;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}

.section--tight {
  padding: 40px 0;
}

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* --- Navigation --- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: var(--nav-height);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.nav__brand {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.05em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.nav__brand-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

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

.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.25s ease;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile-menu {
  display: none;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  right: 0;
  background: rgba(15, 23, 42, 0.99);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px;
}

.nav__mobile-menu.is-open {
  display: block;
}

.nav__mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
}

.nav__mobile-menu a:last-child {
  border-bottom: none;
}

.nav__mobile-menu a:hover {
  color: var(--accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.12s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
}

.btn--primary:hover {
  background: var(--accent);
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.4);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn--full {
  width: 100%;
}

.btn--lg {
  font-size: 1.15rem;
  padding: 16px 36px;
  min-height: 56px;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      160deg,
      rgba(220, 38, 38, 0.18) 0%,
      rgba(15, 23, 42, 0.92) 40%,
      rgba(15, 23, 42, 0.97) 100%
    ),
    linear-gradient(
      to bottom right,
      #1e293b 0%,
      #0f172a 50%,
      #1a0a0a 100%
    );
  z-index: 0;
}

/* Decorative bracket lines in hero */
.hero__bg::before {
  content: '';
  position: absolute;
  top: 20%;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 3px solid rgba(220, 38, 38, 0.15);
  border-radius: var(--radius);
  transform: rotate(15deg);
}

.hero__bg::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -60px;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(245, 158, 11, 0.12);
  border-radius: var(--radius);
  transform: rotate(-10deg);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px 20px 60px;
  width: 100%;
}

.hero__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero__title {
  font-size: clamp(2.2rem, 8vw, 5rem);
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--primary);
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  color: var(--primary);
  margin-top: 20px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
}

/* --- Section Headers --- */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin-bottom: 16px;
}

.section-desc {
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}

/* --- Benefit Cards --- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 40px;
}

.benefit-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.benefit-card:hover {
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.benefit-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(220, 38, 38, 0.15);
  border: 1px solid rgba(220, 38, 38, 0.3);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  font-weight: 900;
}

.benefit-card__title {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text);
}

.benefit-card__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- How It Works Steps --- */
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.steps-list::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
  position: relative;
}

.step__num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step:last-child .step__num {
  background: var(--accent);
  color: #0f172a;
}

.step__text {
  padding-top: 8px;
}

.step__title {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 4px;
}

.step__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Bracket Section --- */
.bracket-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.bracket-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 40px;
}

.bracket-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.bracket-stat {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
}

.bracket-stat__num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
}

.bracket-stat__label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.prizes {
  margin-top: 24px;
}

.prize {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.prize:last-child {
  border-bottom: none;
}

.prize__medal {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.prize__medal--gold {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid var(--accent);
  color: var(--accent);
}

.prize__medal--silver {
  background: rgba(148, 163, 184, 0.15);
  border: 1px solid var(--text-muted);
  color: var(--text-muted);
}

.prize__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.prize__value {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
}

.voting-rules {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 24px;
}

.voting-rules h3 {
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.vote-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(51, 65, 85, 0.5);
  font-size: 0.9rem;
}

.vote-row:last-child {
  border-bottom: none;
}

.vote-row__action {
  color: var(--text-muted);
}

.vote-row__points {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--primary);
}

/* --- Footer --- */
.footer {
  background: #080e1a;
  border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}

.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 8px;
}

.footer__tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.footer__powered {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__powered a {
  color: var(--text-muted);
}

.footer__powered a:hover {
  color: var(--accent);
}

.footer__links-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  margin-bottom: 12px;
}

.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
}

.footer__links a:hover {
  color: var(--text);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.footer__social a:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer__bottom {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__parent {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer__parent a {
  color: var(--text-muted);
}

/* --- Forms --- */
.form-section {
  max-width: 640px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-label .required-star {
  color: var(--primary);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 12px 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-dim);
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Honeypot (anti-spam hidden field) */
.honeypot-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  tab-index: -1;
}

.form-fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.form-fieldset legend {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  padding: 0 8px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 4px;
}

.form-error {
  font-size: 0.8rem;
  color: var(--primary);
  margin-top: 4px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

/* Submit button state */
.btn--submit {
  position: relative;
  overflow: hidden;
}

.btn--submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn--submit .btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-right: 8px;
}

.btn--submit.is-loading .btn-spinner {
  display: inline-block;
}

.btn--submit.is-loading .btn-text {
  /* text stays, spinner appears beside it */
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
}

.form-success.is-visible {
  display: block;
}

.form-success__icon {
  width: 56px;
  height: 56px;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success__check {
  width: 22px;
  height: 22px;
  stroke: var(--success);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.form-success__title {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text);
}

.form-success__body {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.form-success__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
  text-decoration: none;
}

.form-success__phone:hover {
  text-decoration: underline;
}

/* --- Apply Page --- */
.apply-header {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 56px 20px 48px;
  text-align: center;
}

.apply-header h1 {
  margin-bottom: 12px;
}

.apply-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.apply-spots {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.apply-spots strong {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--primary);
}

/* --- Alert Banner --- */
.alert-banner {
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.alert-banner__icon {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  padding-top: 1px;
  letter-spacing: 0.05em;
}

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 48px 0;
}

/* --- Responsive — Tablet (768px+) --- */
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .bracket-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .hero__cta-group {
    flex-direction: row;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__links {
    display: flex;
    align-items: center;
    gap: 24px;
  }

  .nav__links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
  }

  .nav__links a:hover {
    color: var(--text);
  }
}

/* --- Responsive — Desktop (1024px+) --- */
@media (min-width: 1024px) {
  .hero {
    min-height: 88vh;
  }

  .steps-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }

  .steps-list::before {
    top: 19px;
    bottom: auto;
    left: 20px;
    right: 20px;
    width: auto;
    height: 2px;
  }

  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 8px;
  }

  .step__text {
    padding-top: 14px;
  }

  .step__num {
    position: relative;
    z-index: 1;
  }

  .bracket-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* --- Utility: visually hidden (for accessibility) --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* --- Input number without spinner arrows --- */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}
input[type="number"] {
  -moz-appearance: textfield;
}
