/* Noomarket design system — Premium Tech-Modernism */
:root {
  --nm-bg: #f7f9fb;
  --nm-primary: #000000;
  --nm-lime: #ceee93;
  --nm-lime-dim: #b3d17a;
  --nm-secondary: #4d661c;
  --nm-error: #ba1a1a;
  --nm-surface: #ffffff;
  --nm-muted: #45464d;
  --nm-outline: #c6c6cd;
  --font-display: "Vazirmatn", Tahoma, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--nm-bg);
}

.glass-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.glass-nav {
  background: rgba(247, 249, 251, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.nav-top-link {
  position: relative;
  padding: 0.25rem 0.5rem;
  color: #45464d;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-top-link::after {
  content: "";
  position: absolute;
  inset-inline: 0.35rem;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--nm-lime, #ceee93);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-top-link:hover {
  color: var(--nm-primary, #000);
}

.nav-top-link.is-active {
  color: var(--nm-primary, #000);
  font-weight: 700;
}

.nav-top-link.is-active::after {
  transform: scaleX(1);
}

.nm-icon {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
  vertical-align: middle;
  fill: currentColor;
  overflow: visible;
}

.nm-icon.text-sm { width: 1em; height: 1em; }
.nm-icon.text-lg { width: 1.35em; height: 1.35em; }
.nm-icon.text-xl { width: 1.4em; height: 1.4em; }
.nm-icon.text-2xl { width: 1.6em; height: 1.6em; }
.nm-icon.text-3xl { width: 1.9em; height: 1.9em; }
.nm-icon.text-4xl { width: 2.35em; height: 2.35em; }
.nm-icon.text-5xl { width: 3em; height: 3em; }
.nm-icon.text-\[14px\] { width: 14px; height: 14px; }
.nm-icon.text-\[18px\] { width: 18px; height: 18px; }
.nm-icon.text-\[20px\] { width: 20px; height: 20px; }

.rating-input {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  direction: ltr;
}

.rating-star-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0.15rem;
  cursor: pointer;
  line-height: 1;
  border-radius: 0.35rem;
  transition: transform 0.15s ease;
}

.rating-star-btn:hover {
  transform: scale(1.12);
}

.rating-star-btn .nm-icon {
  width: 1.75rem;
  height: 1.75rem;
  color: #d1d5db;
  transition: color 0.15s ease;
}

.rating-star-btn.is-on .nm-icon {
  color: #eab308;
}

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.btn-lime {
  background: var(--nm-lime);
  color: #131f00;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-lime:hover { background: var(--nm-lime-dim); }
.btn-lime:active { transform: scale(0.98); }

.btn-dark {
  background: var(--nm-primary);
  color: #fff;
  font-weight: 600;
  transition: opacity 0.2s ease, transform 0.15s ease;
}
.btn-dark:hover { opacity: 0.9; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fade-up 0.6s ease forwards;
}
.animate-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-delay-3 { animation-delay: 0.3s; opacity: 0; }

@keyframes pulse-soft {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}
.animate-pulse-soft { animation: pulse-soft 2.4s ease-in-out infinite; }

.hero-kenburns {
  animation: kenburns 18s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-slide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  width: 2.35rem;
  height: 3.5rem;
  padding: 0;
  border: none;
  color: rgba(26, 46, 53, 0.88);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  line-height: 0;
  transform: translateY(-50%);
}
.hero-slide-btn--end {
  right: 0;
  border-radius: 1.25rem 0 0 1.25rem;
}
.hero-slide-btn--start {
  left: 0;
  border-radius: 0 1.25rem 1.25rem 0;
}
.hero-slide-btn-icon {
  width: 1.4rem !important;
  height: 1.4rem !important;
  display: block;
}
@media (min-width: 768px) {
  .hero-slide-btn {
    width: 2.65rem;
    height: 4rem;
  }
}
.hero-slide-btn:hover {
  background: rgba(255, 255, 255, 0.62);
  color: rgba(26, 46, 53, 1);
}
.hero-slide-btn:active {
  background: rgba(255, 255, 255, 0.72);
}

/* Keep titles clear of edge-blended arrows; nudge copy toward center */
.hero-copy {
  right: 3.25rem;
  left: 3.25rem;
}
@media (min-width: 640px) {
  .hero-copy {
    right: 3.75rem;
    left: 3.75rem;
  }
}
@media (min-width: 1024px) {
  .hero-copy {
    right: 4.25rem;
    left: 4.25rem;
  }
}

.hero-dots {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.55rem;
  border-radius: 9999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-dots-dark {
  background: rgba(255, 255, 255, 0.55);
}

.hero-dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  overflow: hidden;
  transition:
    width 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}
.hero-dot.is-active {
  width: 1.65rem;
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}
.hero-dot-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #fff;
  transform: scaleX(0);
  transform-origin: right center;
  will-change: transform;
}
.hero-dot-fill-dark {
  background: var(--color-primary, #1a2e35);
}

.hero-dots-dark .hero-dot {
  background: rgba(26, 46, 53, 0.28);
}
.hero-dots-dark .hero-dot:hover {
  background: rgba(26, 46, 53, 0.45);
}
.hero-dots-dark .hero-dot.is-active {
  width: 1.65rem;
  background: rgba(26, 46, 53, 0.22);
}

.countdown-box {
  background: #ba1a1a;
  color: #fff;
  min-width: 2rem;
  border-radius: 0.375rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.cart-toast-enter { transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.cart-toast-enter-start { opacity: 0; transform: translateY(-1.25rem) scale(0.96); }
.cart-toast-enter-end { opacity: 1; transform: translateY(0) scale(1); }
.cart-toast-leave { transition: all 0.25s ease-in; }
.cart-toast-leave-start { opacity: 1; transform: translateY(0); }
.cart-toast-leave-end { opacity: 0; transform: translateY(-0.75rem); }

@keyframes cart-count-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.4); }
  100% { transform: scale(1); }
}
.cart-count-pop {
  animation: cart-count-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

[x-cloak] { display: none !important; }

.product-zoom-backdrop {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(206, 238, 147, 0.18), transparent 45%),
    radial-gradient(ellipse at 80% 90%, rgba(190, 198, 224, 0.22), transparent 40%),
    rgba(247, 249, 251, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.product-zoom-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 1.75rem;
  box-shadow:
    0 24px 60px rgba(25, 28, 30, 0.12),
    0 2px 8px rgba(25, 28, 30, 0.04);
}

.product-zoom-tool {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--nm-muted);
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.product-zoom-tool:hover {
  background: rgba(230, 232, 234, 0.9);
  color: var(--nm-primary);
}

.product-zoom-tool:active {
  transform: scale(0.95);
}

.product-zoom-close {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 232, 234, 0.85);
  color: var(--nm-primary);
  transition: background 0.15s ease, transform 0.15s ease;
}

.product-zoom-close:hover {
  background: #e0e3e5;
}

.product-zoom-close:active {
  transform: scale(0.95);
}

.product-zoom-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  color: var(--nm-primary);
  transition: background 0.15s ease, transform 0.15s ease;
}

.product-zoom-nav:hover {
  background: #fff;
}

.product-zoom-nav:active {
  transform: translateY(-50%) scale(0.96);
}

.product-zoom-image {
  transition: transform 0.2s ease;
  transform-origin: center center;
}

.trust-seal-card {
  display: block;
  border-radius: 0.75rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(198, 198, 205, 0.35);
}

.trust-seal-embed {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.5rem;
  padding: 0.35rem;
}

.trust-seal-embed img,
.trust-seal-embed a img,
.trust-seal-embed iframe {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.categories-hero {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.category-tile {
  --cat-accent: #4d661c;
  --cat-blur-color: #4d661c;
  --cat-blur-radius: 10px;
  --cat-overlay: 42;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 9.5rem;
  padding: 1rem;
  border-radius: 1.35rem;
  background: #f7f8f4;
  border: 1px solid color-mix(in srgb, var(--cat-blur-color) 22%, white);
  box-shadow: 0 8px 22px color-mix(in srgb, var(--cat-blur-color) 12%, transparent);
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-tile-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.category-tile-photo {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center;
  filter: blur(var(--cat-blur-radius)) saturate(1.12);
  transform: scale(1.06);
  transition: transform 0.45s ease, filter 0.3s ease;
}

.category-tile-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to inline-end,
      color-mix(
        in srgb,
        var(--cat-blur-color) calc(var(--cat-overlay) * 1%),
        rgba(255, 255, 255, 0.92)
      ) 0%,
      color-mix(
        in srgb,
        var(--cat-blur-color) calc(var(--cat-overlay) * 0.55%),
        rgba(255, 255, 255, 0.55)
      ) 38%,
      color-mix(
        in srgb,
        var(--cat-blur-color) calc(var(--cat-overlay) * 0.2%),
        transparent
      ) 72%,
      transparent 100%
    );
}

.category-tile-glow {
  position: absolute;
  inset-inline-end: -18%;
  inset-block-start: -30%;
  width: 68%;
  height: 68%;
  border-radius: 999px;
  background: color-mix(
    in srgb,
    var(--cat-blur-color) calc(var(--cat-overlay) * 1.1%),
    transparent
  );
  filter: blur(calc(var(--cat-blur-radius) + 18px));
  opacity: 0.85;
}

.category-tile-media--fallback {
  background:
    radial-gradient(
      120% 90% at 100% 0%,
      color-mix(in srgb, var(--cat-blur-color) 34%, transparent) 0%,
      transparent 70%
    ),
    linear-gradient(
      155deg,
      color-mix(in srgb, var(--cat-blur-color) 18%, #ffffff) 0%,
      rgba(255, 255, 255, 0.94) 100%
    );
}

.category-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--cat-blur-color) 18%, transparent);
  border-color: color-mix(in srgb, var(--cat-blur-color) 36%, white);
}

.category-tile:hover .category-tile-photo {
  transform: scale(1.12);
}

.category-tile:focus-visible {
  outline: 2px solid var(--nm-lime);
  outline-offset: 3px;
}

.category-tile > *:not(.category-tile-media) {
  position: relative;
  z-index: 1;
}

.category-tile-copy {
  max-width: 78%;
}

.category-tile-icon {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--cat-accent) 12%, rgba(255, 255, 255, 0.88));
  border: 1px solid color-mix(in srgb, var(--cat-accent) 16%, white);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--cat-accent) 8%, transparent);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease;
}

.category-tile:hover .category-tile-icon {
  transform: scale(1.06);
}

.category-tile-count {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--cat-accent) 12%, rgba(255, 255, 255, 0.86));
  color: color-mix(in srgb, var(--cat-accent) 72%, #191c1e);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.category-tile-arrow {
  position: absolute;
  inset-inline-start: 0.85rem;
  inset-block-end: 0.85rem;
  z-index: 1;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--nm-primary);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-tile:hover .category-tile-arrow {
  background: var(--nm-lime);
  color: #131f00;
  transform: translateX(-2px);
}

@media (min-width: 768px) {
  .category-tile {
    min-height: 11.5rem;
    padding: 1.35rem;
    border-radius: 1.6rem;
    gap: 1rem;
  }

  .category-tile-icon {
    width: 3.35rem;
    height: 3.35rem;
    border-radius: 1.1rem;
  }

  .category-tile-arrow {
    width: 2.35rem;
    height: 2.35rem;
    inset-inline-start: 1.1rem;
    inset-block-end: 1.1rem;
  }
}

@media (max-width: 767px) {
  body { padding-bottom: 5.5rem; }
  .product-zoom-panel {
    border-radius: 1.25rem;
    max-height: 94vh;
  }
}

/* ── Mobile frosted bottom nav ── */
.mobile-glass-nav {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(22px) saturate(1.2);
  -webkit-backdrop-filter: blur(22px) saturate(1.2);
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 1.35rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-size: 0.68rem;
  color: var(--nm-muted);
  border-radius: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}
.mobile-nav-item .nm-icon {
  width: 1.35rem;
  height: 1.35rem;
}
.mobile-nav-item.is-active {
  color: var(--nm-secondary);
  font-weight: 700;
  background: rgba(206, 238, 147, 0.35);
}

/* ── Stories rail + viewer ── */
.stories-rail {
  scrollbar-width: none;
}
.story-ring {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  width: 4.5rem;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.story-ring-halo {
  width: 4.15rem;
  height: 4.15rem;
  border-radius: 9999px;
  padding: 2px;
  background: linear-gradient(135deg, #ceee93 0%, #4d661c 45%, #ba1a1a 100%);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, filter 0.25s ease, opacity 0.25s ease;
}
.story-ring-halo.is-intro {
  background: linear-gradient(135deg, #131b2e 0%, #4285F4 55%, #ceee93 100%);
}
.story-ring-halo.is-seen {
  background: #c6c6cd;
  opacity: 0.85;
}
.story-ring:hover .story-ring-halo,
.story-ring:active .story-ring-halo {
  transform: scale(1.05);
}
.story-ring-avatar {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  overflow: hidden;
  background: #fff;
  border: 2px solid #f7f9fb;
}
.story-ring-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.story-ring-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  background: #131b2e;
  color: #fff;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
}
.story-ring-label {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--nm-muted);
  text-align: center;
  max-width: 4.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-viewer {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(0, 0, 0, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  padding-bottom: max(0.75rem, env(safe-area-inset-bottom));
}
.story-viewer-stage {
  width: min(420px, 100%);
  height: min(760px, calc(100dvh - 1.5rem));
  max-height: calc(100dvh - 1.5rem);
  perspective: 1200px;
}
.story-box {
  width: 100%;
  height: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  background: #0b0d10;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  transform-origin: center center;
  position: relative;
}
.story-box-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.story-box-next {
  animation: story-box-next 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.story-box-prev {
  animation: story-box-prev 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes story-box-next {
  0% { transform: translateX(-18%) scale(0.92) rotateY(8deg); opacity: 0.55; }
  100% { transform: translateX(0) scale(1) rotateY(0); opacity: 1; }
}
@keyframes story-box-prev {
  0% { transform: translateX(18%) scale(0.92) rotateY(-8deg); opacity: 0.55; }
  100% { transform: translateX(0) scale(1) rotateY(0); opacity: 1; }
}

.story-progress {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  right: 0.65rem;
  z-index: 5;
  display: flex;
  gap: 0.25rem;
}
.story-progress-track {
  flex: 1;
  height: 2.5px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}
.story-progress-bar {
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: inherit;
}

.story-header {
  position: absolute;
  top: 1.15rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.story-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: none;
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.story-media {
  position: absolute;
  inset: 0;
}
.story-media-el {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #111;
}
.story-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.45) 0%, transparent 22%, transparent 62%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
}

.story-footer {
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 1.1rem;
  z-index: 5;
}
.story-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.92);
  color: #111;
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.7rem 1.1rem;
  border-radius: 9999px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.story-cta:hover {
  background: #fff;
}

@media (min-width: 768px) {
  .story-ring {
    width: 5rem;
  }
  .story-ring-halo {
    width: 4.5rem;
    height: 4.5rem;
  }
  .story-ring-label {
    font-size: 0.72rem;
    max-width: 5rem;
  }
}
