/* ============================================
   Bloom & Charm Boutique — Design Tokens
   ============================================ */
:root {
  --linen: #FDF5F3;
  --linen-card: #FFFFFF;
  --ink: #4A3740;
  --ink-soft: #8C7680;
  --sage: #E5A0B7;        /* primary pastel pink accent */
  --sage-dark: #CD7F98;   /* hover state for the accent */
  --brass: #F6CFDC;       /* soft secondary pink */
  --brass-light: #FCE8EF; /* palest pink, backgrounds/placeholders */
  --terracotta: #C6607F;  /* deeper rose, used for price/emphasis */
  --stock-green: #6FBE8D;
  --stock-red: #E0847E;
  --line: rgba(74, 55, 64, 0.1);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, sans-serif;

  --radius: 3px;
  --shadow-soft: 0 2px 12px rgba(74, 55, 64, 0.06);
  --shadow-lift: 0 8px 24px rgba(74, 55, 64, 0.12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* ============================================
   Nav Bar
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 2rem;
  background: rgba(246, 241, 231, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  line-height: 1;
}

.brand-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.brand-main em {
  font-style: italic;
  color: var(--sage);
  font-weight: 500;
}

.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--terracotta);
  padding-left: 3rem;
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.nav-cart:hover { background: rgba(43, 38, 32, 0.06); }

.nav-cart svg { width: 20px; height: 20px; stroke: var(--ink); }

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--terracotta);
  color: var(--linen-card);
  font-size: 0.68rem;
  font-weight: 600;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.cart-count.visible { transform: scale(1); }

/* ============================================
   Hero
   ============================================ */
.hero {
  max-width: 720px;
  margin: 0 auto;
  padding: 5rem 1.5rem 3.5rem;
  text-align: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 500;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.hero p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ============================================
   Product Grid — with charm-chain motif
   ============================================ */
.shop {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem 6rem;
  position: relative;
}

.shop-heading {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.shop-heading h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
}

.shop-heading .thread {
  flex: 1;
  height: 1px;
  background: repeating-linear-gradient(
    to right,
    var(--brass) 0, var(--brass) 4px,
    transparent 4px, transparent 10px
  );
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 1.75rem;
  position: relative;
}

/* the charm-link connectors between cards, desktop only */
.grid::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle 3px at 33.33% 50%, var(--brass) 98%, transparent),
    radial-gradient(circle 3px at 66.66% 50%, var(--brass) 98%, transparent);
  opacity: 0.35;
  display: none;
}

@media (min-width: 721px) {
  .grid::before { display: block; }
}

.card {
  background: var(--linen-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}

.card-image {
  aspect-ratio: 1 / 1;
  width: 100%;
  background: linear-gradient(135deg, var(--brass-light), var(--sage));
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-image .placeholder-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
}

.card-body {
  padding: 1.1rem 1.1rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.card-body h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.card-body .price {
  color: var(--terracotta);
  font-weight: 600;
  font-size: 0.95rem;
}

.card-body .desc {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.add-btn {
  margin-top: auto;
  padding: 0.65rem 1rem;
  background: var(--sage);
  color: var(--linen-card);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  transition: background 0.2s ease;
}

.add-btn:hover { background: var(--sage-dark); }

.add-btn.added { background: var(--terracotta); }

/* ============================================
   Cart Drawer
   ============================================ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(43, 38, 32, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
}

.overlay.open { opacity: 1; pointer-events: auto; }

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: min(400px, 92vw);
  background: var(--linen);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 40px rgba(0,0,0,0.15);
}

.drawer.open { transform: translateX(0); }

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

.drawer-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.drawer-close svg { width: 22px; height: 22px; stroke: var(--ink); }

.drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.drawer-empty {
  color: var(--ink-soft);
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.9rem;
}

.drawer-item {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.drawer-item .thumb {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--brass-light), var(--sage));
  flex-shrink: 0;
}

.drawer-item .thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); }

.drawer-item .info { flex: 1; min-width: 0; }

.drawer-item .info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.drawer-item .info .price { color: var(--ink-soft); font-size: 0.82rem; }

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.2rem 0.4rem;
}

.qty-controls button {
  width: 20px; height: 20px;
  font-size: 1rem;
  color: var(--sage);
}

.remove-btn {
  color: var(--terracotta);
  font-size: 0.75rem;
  text-decoration: underline;
  margin-left: 0.5rem;
}

.drawer-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--line);
}

.drawer-total {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.checkout-btn {
  width: 100%;
  padding: 0.9rem;
  background: var(--ink);
  color: var(--linen-card);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease;
}

.checkout-btn:hover:not(:disabled) { background: var(--sage-dark); }
.checkout-btn:disabled { opacity: 0.5; cursor: not-allowed; }

.checkout-error {
  color: var(--terracotta);
  font-size: 0.82rem;
  margin-top: 0.7rem;
  text-align: center;
  display: none;
}

/* ============================================
   Footer
   ============================================ */
.site-footer {
  text-align: center;
  padding: 2.5rem 1.5rem 3rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
  border-top: 1px solid var(--line);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 720px) {
  .grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 420px) {
  .nav { padding: 1rem 1.25rem; }
  .hero { padding: 3.5rem 1.25rem 2.5rem; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ============================================
   Stock status dot
   ============================================ */
.stock-row {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.1rem;
}

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

.stock-dot.in-stock {
  background: var(--stock-green);
  box-shadow: 0 0 0 3px rgba(111, 190, 141, 0.25);
}

.stock-dot.out-of-stock {
  background: var(--stock-red);
  box-shadow: 0 0 0 3px rgba(224, 132, 126, 0.25);
}

.add-btn.out-of-stock,
.add-btn.out-of-stock:hover {
  background: var(--ink-soft);
  opacity: 0.55;
  cursor: not-allowed;
}

/* ============================================
   Product configuration fields (size, colour, charm)
   ============================================ */
.field-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.6rem;
}

.field-group label {
  font-size: 0.75rem;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.charm-select {
  width: 100%;
  padding: 0.5rem 0.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--linen-card);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.required-mark {
  color: var(--terracotta);
}

.optional-mark {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.9em;
}

.included-badge {
  display: inline-block;
  background: var(--brass-light);
  color: var(--sage-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
}

.hidden {
  display: none !important;
}

.charm-select.field-invalid {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 2px rgba(198, 96, 127, 0.15);
}

.field-error {
  display: none;
  color: var(--terracotta);
  font-size: 0.72rem;
  margin: -0.1rem 0 0;
}

.field-error.visible {
  display: block;
}

.terms-check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
  cursor: pointer;
  line-height: 1.4;
}

.terms-check input {
  margin-top: 0.2rem;
  accent-color: var(--sage);
  flex-shrink: 0;
}

.terms-check a {
  color: var(--terracotta);
  text-decoration: underline;
}

#termsError {
  margin-bottom: 0.6rem;
}

/* ============================================
   Drawer additions: charm line, note field, postage row
   ============================================ */
.drawer-item .info .charm-tag {
  color: var(--terracotta);
  font-size: 0.78rem;
  font-weight: 600;
}

.note-field {
  margin-bottom: 1rem;
}

.note-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.note-field textarea {
  width: 100%;
  min-height: 64px;
  resize: vertical;
  padding: 0.6rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--linen-card);
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink);
}

.note-field .hint {
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 0.35rem;
  font-style: italic;
}

.drawer-subrow {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

/* ============================================
   Loading spinner
   ============================================ */
.spinner {
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}

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

/* ============================================
   Empty basket state
   ============================================ */
.drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 3.5rem 1rem 2.5rem;
}

.drawer-empty .empty-icon {
  font-size: 2.2rem;
}

.drawer-empty p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.drawer-empty .continue-btn {
  padding: 0.6rem 1.2rem;
  background: var(--sage);
  color: #fff;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 600;
}

.drawer-empty .continue-btn:hover { background: var(--sage-dark); }

/* ============================================
   Checkout error (multi-line)
   ============================================ */
.checkout-error {
  text-align: left;
  background: var(--brass-light);
  border-radius: var(--radius);
  padding: 0.7rem 0.9rem;
  line-height: 1.4;
}

.checkout-error strong {
  display: block;
  color: var(--terracotta);
  margin-bottom: 0.15rem;
}

/* ============================================
   Size & Colours section
   ============================================ */
.info-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem 5rem;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

@media (max-width: 640px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-card {
  background: var(--linen-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.info-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--ink);
}

.size-guide-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--brass-light);
}

.size-guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.size-guide-note {
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 0.8rem;
}

.swatch-group {
  margin-bottom: 1.4rem;
}

.swatch-group:last-child { margin-bottom: 0; }

.swatch-group h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 0.7rem;
}

.swatch-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.1rem;
}

.swatch-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.swatch-dot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1px solid rgba(74, 55, 64, 0.15);
}

.charm-shape {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.charm-shape svg { width: 100%; height: 100%; }

/* ============================================
   Legal / policy pages
   ============================================ */
.legal-nav {
  padding: 1.1rem 2rem;
  border-bottom: 1px solid var(--line);
}

.legal-nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink);
}

.legal-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.legal-wrap .updated {
  color: var(--ink-soft);
  font-size: 0.82rem;
  margin-bottom: 2.5rem;
}

.legal-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.8rem;
  color: var(--terracotta);
}

.legal-wrap p, .legal-wrap li {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.65;
  margin-bottom: 0.8rem;
}

.legal-wrap ul, .legal-wrap ol {
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}

.legal-wrap .placeholder {
  background: var(--brass-light);
  color: var(--terracotta);
  padding: 0.05rem 0.35rem;
  border-radius: 2px;
  font-weight: 600;
  font-size: 0.88em;
}

.legal-wrap .callout {
  background: var(--linen-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
  font-size: 0.88rem;
}

.legal-wrap .callout strong { color: var(--sage-dark); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1rem;
  margin-bottom: 0.6rem;
  font-size: 0.78rem;
}

.footer-links a { color: var(--ink-soft); }
.footer-links a:hover { color: var(--terracotta); }

/* ============================================
   Inspiration callout
   ============================================ */
.inspiration-callout {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  background: var(--brass-light);
  padding: 0.6rem 1rem;
  border-radius: 999px;
  max-width: fit-content;
  margin: 0 auto 2rem;
}

.inspiration-callout a {
  color: var(--terracotta);
  font-weight: 600;
  text-decoration: none;
}

/* ============================================
   Gallery section
   ============================================ */
.gallery-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem 1.5rem 6rem;
}

.gallery-intro {
  color: var(--ink-soft);
  font-size: 0.9rem;
  max-width: 520px;
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 1.25rem;
}

@media (max-width: 900px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 420px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  cursor: zoom-in;
  transition: transform 0.2s ease;
}

.gallery-item img:hover { transform: scale(1.02); }

.gallery-caption {
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ============================================
   Lightbox (Gallery + Styles/Care images)
   ============================================ */
.lightbox-trigger { cursor: zoom-in; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 22, 26, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 2rem;
}

.lightbox-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-overlay img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.75rem;
  color: #fff;
  font-size: 1.4rem;
  opacity: 0.85;
  background: rgba(255,255,255,0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover { opacity: 1; background: rgba(255,255,255,0.18); }

/* ============================================
   Section navigation — desktop curved sidebar
   ============================================ */
.section-nav {
  display: none;
}

@media (min-width: 1400px) {
  .section-nav {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    position: fixed;
    left: 1.75rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 45;
  }

  .section-nav-item {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 500;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    transition: all 0.25s ease;
    max-width: 130px;
  }

  /* gentle arc: the middle item sits forward, the outer two sit back */
  .section-nav-item:nth-child(1) { margin-left: 0; }
  .section-nav-item:nth-child(2) { margin-left: 0; }
  .section-nav-item:nth-child(3) { margin-left: 0; }

  .section-nav-item.active {
    background: var(--linen-card);
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 600;
    box-shadow: var(--shadow-lift);
    margin-left: 32px;
    max-width: 200px;
  }
}

/* ============================================
   Section navigation — mobile progress bar
   ============================================ */
.mobile-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--line);
  z-index: 55;
}

.mobile-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--sage);
  transition: width 0.08s linear;
}

@media (min-width: 1400px) {
  .mobile-progress-bar { display: none; }
}
