:root {
  --bg: #f8f2e6;
  --surface: #fffaf2;
  --surface-strong: #fff1d9;
  --text: #272113;
  --muted: #5f543f;
  --line: #d8c4a2;
  --accent: #9e2f18;
  --accent-hover: #7d1f0d;
  --urgent: #b41400;
  --urgent-soft: #f7d2c5;
  --shadow: rgba(53, 38, 17, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", "Trebuchet MS", sans-serif;
  color: var(--text);
  line-height: 1.58;
  background: linear-gradient(140deg, #faf5eb 0%, #f1e6d4 45%, #f9f3e8 100%);
  position: relative;
  overflow-x: hidden;
}

p,
li,
h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

.ambient-shape {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  opacity: 0.5;
}

.ambient-shape--left {
  width: 360px;
  height: 360px;
  left: -130px;
  top: -100px;
  background: radial-gradient(circle, #e8d2b1 0%, #efe4d0 70%, transparent 100%);
}

.ambient-shape--right {
  width: 420px;
  height: 420px;
  right: -180px;
  bottom: 6%;
  background: radial-gradient(circle, #d3e2dd 0%, #e9f0eb 70%, transparent 100%);
}

.container {
  width: min(1140px, 94%);
  margin: 0 auto;
}

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid #cf8d78;
  background: linear-gradient(90deg, #fde1d4 0%, #fce9db 100%);
  box-shadow: 0 8px 20px -17px rgba(130, 47, 22, 0.75);
}

.urgency-wrap {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.urgency-title {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #651f0b;
}

.urgency-title strong {
  color: var(--urgent);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}

.urgency-note {
  margin: 0;
  color: #783723;
  font-size: 0.88rem;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Literata", "Georgia", serif;
  line-height: 1.24;
  letter-spacing: 0.01em;
}

.hero {
  padding: 2.3rem 0 1.65rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
  gap: 1rem;
  align-items: start;
}

.hero-grid > * {
  min-width: 0;
}

.badge {
  display: inline-block;
  margin: 0 0 0.7rem;
  padding: 0.5rem 0.94rem;
  border-radius: 999px;
  border: 1px solid #d99f84;
  background: #fffaee;
  color: #7a2a13;
  font-size: 0.88rem;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.95rem, 4vw, 3rem);
  max-width: 20ch;
}

.hero-text {
  margin: 0.9rem 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.deal-ticker {
  margin-top: 1rem;
  border: 1px solid #d9a086;
  border-radius: 0.7rem;
  background: linear-gradient(90deg, #fff1e6 0%, #ffe7dc 100%);
  overflow: hidden;
}

.deal-ticker-track {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  width: fit-content;
  max-width: none;
  min-height: 42px;
  padding: 0 1rem;
  animation: ticker-run 18s linear infinite;
}

.deal-ticker-track span {
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #8b2d15;
  white-space: nowrap;
}

.hero-panel {
  background: linear-gradient(170deg, #fffaf0 0%, #f7ebd6 100%);
  border: 1px solid #d6b594;
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 16px 36px -28px var(--shadow);
}

.panel-label {
  margin: 0;
  color: #7d2d16;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.time-big {
  margin: 0.45rem 0 0.65rem;
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--urgent);
  letter-spacing: 0.06em;
  font-variant-numeric: tabular-nums;
}

.hero-points {
  margin: 0;
  padding-left: 1.2rem;
  color: #5f4f37;
}

.hero-points li + li {
  margin-top: 0.3rem;
}

.creo-zone {
  border: 1px solid #d7a783;
  border-radius: 1rem;
  background: linear-gradient(165deg, #fff7eb 0%, #ffe7d9 100%);
  box-shadow: 0 18px 42px -31px rgba(140, 47, 20, 0.55);
  padding: 1rem;
}

.creo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(240px, 1fr);
  gap: 0.9rem;
}

.creo-grid > * {
  min-width: 0;
}

.creo-main h2 {
  margin-top: 0.38rem;
  font-size: clamp(1.38rem, 2.6vw, 1.92rem);
  color: #4b2010;
}

.creo-main p {
  margin: 0.55rem 0 0;
  color: #5f432e;
}

.creo-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  border-radius: 999px;
  border: 1px solid #d69274;
  padding: 0.28rem 0.62rem;
  background: #fff4ee;
  color: #912d12;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.creo-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c32508;
  box-shadow: 0 0 0 0 rgba(195, 37, 8, 0.45);
  animation: live-dot 1.6s ease-out infinite;
}

.creo-stats {
  margin-top: 0.85rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.creo-stats div {
  border-radius: 0.7rem;
  border: 1px solid #d7b395;
  background: rgba(255, 255, 255, 0.86);
  padding: 0.5rem 0.55rem;
}

.creo-stats span {
  display: block;
  color: #8f2207;
  font-size: 1.14rem;
  font-weight: 800;
  line-height: 1.15;
  font-variant-numeric: tabular-nums;
}

.creo-stats small {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.77rem;
  color: #6f4f35;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.creo-side {
  border-radius: 0.82rem;
  border: 1px solid #dab89c;
  background: linear-gradient(180deg, #fff4eb 0%, #fffaf5 100%);
  padding: 0.8rem;
}

.creo-side-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #7f240e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.creo-list {
  margin: 0.52rem 0 0;
  padding-left: 1.05rem;
  color: #5f442d;
  font-size: 0.9rem;
}

.creo-list li + li {
  margin-top: 0.28rem;
}

.creo-warning {
  margin: 0.74rem 0 0;
  border-radius: 0.6rem;
  border: 1px solid #e0a88f;
  background: #fff0e8;
  padding: 0.52rem 0.58rem;
  color: #88230c;
  font-weight: 700;
  font-size: 0.85rem;
}

.creo-avatars {
  margin-top: 0.8rem;
  border-top: 1px solid #e1b899;
  padding-top: 0.7rem;
}

.creo-avatars-title {
  margin: 0 0 0.45rem;
  color: #6f3f25;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.avatar-strip {
  display: flex;
  gap: 0.54rem;
  flex-wrap: wrap;
}

.avatar-chip {
  margin: 0;
  border-radius: 0.65rem;
  border: 1px solid #dec0a3;
  background: rgba(255, 255, 255, 0.84);
  padding: 0.38rem 0.4rem;
  min-width: 92px;
  text-align: center;
  animation: float-soft 4.8s ease-in-out infinite;
}

.avatar-chip:nth-child(2n) {
  animation-delay: 0.4s;
}

.avatar-chip:nth-child(3n) {
  animation-delay: 0.8s;
}

.avatar-chip img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 8px 14px -11px rgba(86, 44, 28, 0.7);
}

.avatar-chip figcaption {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: #54331d;
  font-weight: 700;
}

.featured-offer {
  border-radius: 1rem;
  border: 1px solid #d2ab7f;
  background: linear-gradient(160deg, #fffaef 0%, #f4e5c8 100%);
  box-shadow: 0 22px 48px -34px var(--shadow);
  padding: clamp(1.05rem, 2.4vw, 1.8rem);
}

.offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.brand-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  border-radius: 0.6rem;
  border: 1px solid #dcc2a0;
  background: #fff;
}

.brand-logo--featured {
  width: 220px;
}

.featured-label {
  margin: 0;
  border-radius: 999px;
  border: 1px solid #da9c84;
  background: rgba(255, 255, 255, 0.72);
  color: #8c2e16;
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.36rem 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.featured-offer h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.65rem, 3.4vw, 2.3rem);
}

.offer-text {
  margin: 0.65rem 0 0;
  max-width: 62ch;
}

.offer-meta {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.offer-meta span {
  border-radius: 999px;
  border: 1px solid #dabf98;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.7rem;
  color: #5f4d32;
  font-size: 0.86rem;
  font-weight: 600;
}

.limit-row {
  margin-top: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.limit-row p {
  margin: 0;
  color: #5f5038;
  font-size: 0.95rem;
}

.limit-row strong {
  color: #8c2a0f;
  font-variant-numeric: tabular-nums;
}

.slot-count {
  color: #9d1f00;
  font-size: 1.07rem;
}

.slot-count.is-updating {
  animation: pulse 0.46s ease;
}

.slots-progress {
  margin-top: 0.55rem;
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: #f1ddc2;
}

.slots-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e26d30 0%, #bb3209 100%);
  transition: width 0.4s ease;
}

.live-feed {
  margin-top: 1rem;
  border: 1px solid #d7b190;
  border-radius: 0.95rem;
  background: linear-gradient(180deg, #fff8eb 0%, #fffef9 100%);
  padding: 0.9rem 0.9rem 0.75rem;
}

.live-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.live-feed-title {
  margin: 0;
  font-family: "Literata", "Georgia", serif;
  font-size: 1.08rem;
  color: #4e2a15;
}

.live-feed-subtitle {
  margin: 0.44rem 0 0;
  color: #6d4c32;
  font-size: 0.86rem;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid #dfac98;
  background: #fff0e8;
  color: #7d2511;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.live-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5290a;
  box-shadow: 0 0 0 0 rgba(197, 41, 10, 0.55);
  animation: live-dot 1.8s ease-out infinite;
}

.live-feed-list {
  margin: 0.72rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.42rem;
}

.live-entry {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
  border: 1px solid #e5c4ac;
  border-radius: 0.74rem;
  background: rgba(255, 255, 255, 0.82);
  padding: 0.4rem 0.5rem;
  animation: pop-in 0.28s ease;
}

.live-entry-avatar {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 10px 16px -14px rgba(89, 40, 20, 0.9);
}

.live-entry-main {
  min-width: 0;
}

.live-entry-line {
  margin: 0;
  color: #552c18;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.35;
}

.live-entry-meta {
  margin: 0.08rem 0 0;
  color: #7d5134;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offers {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.offer-card {
  border-radius: 0.95rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1rem;
  box-shadow: 0 14px 30px -26px var(--shadow);
}

.offer-card h3 {
  margin-top: 0.7rem;
  font-size: 1.44rem;
}

.offer-card p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.mini-list {
  margin: 0.75rem 0 0;
  padding-left: 1.15rem;
  color: #594c37;
  font-size: 0.95rem;
}

.mini-list li + li {
  margin-top: 0.25rem;
}

.offer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.64rem 1.12rem;
  border-radius: 0.72rem;
  border: 2px solid var(--accent);
  background: rgba(255, 255, 255, 0.62);
  color: var(--accent);
  -webkit-text-fill-color: currentColor;
  text-decoration: none;
  text-align: center;
  white-space: normal;
  font-size: 0.97rem;
  font-weight: 700;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.offer-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 25px -16px rgba(158, 47, 24, 0.55);
  background: rgba(255, 243, 239, 0.9);
}

.offer-button--primary {
  background: linear-gradient(140deg, #b23d1f 0%, #93250f 100%);
  color: #f4fbf8;
  animation: cta-breath 2s ease-in-out infinite;
}

.offer-button--primary:hover {
  background: linear-gradient(140deg, #9e2f18 0%, #7d1f0d 100%);
}

.offer-button--wide {
  margin-top: 0.85rem;
  width: 100%;
}

.offer-button:focus-visible {
  outline: 3px solid #7dbdad;
  outline-offset: 2px;
}

.footer {
  margin-top: 1.7rem;
  padding: 1rem 0 1.8rem;
}

.footer p {
  margin: 0;
  border-top: 1px solid #dcc9ac;
  padding-top: 0.9rem;
  color: #6a5d46;
  font-size: 0.93rem;
}

.live-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  max-width: min(390px, calc(100% - 28px));
  border-radius: 0.82rem;
  border: 1px solid #d79f89;
  background: #fff8f5;
  color: #4f2415;
  box-shadow: 0 18px 30px -22px rgba(98, 37, 20, 0.7);
  display: flex;
  align-items: center;
  gap: 0.52rem;
  padding: 0.6rem 0.72rem;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.live-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.live-toast img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 10px 16px -14px rgba(89, 40, 20, 0.9);
}

.live-toast-copy {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.42rem;
}

.live-toast-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-top: 0.24rem;
  border-radius: 50%;
  background: #c5290a;
  box-shadow: 0 0 0 0 rgba(197, 41, 10, 0.35);
  animation: live-dot 2s ease-out infinite;
}

.live-toast p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.35;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.08);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes live-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 41, 10, 0.5);
  }

  70% {
    box-shadow: 0 0 0 9px rgba(197, 41, 10, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(197, 41, 10, 0);
  }
}

@keyframes ticker-run {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-52%);
  }
}

@keyframes cta-breath {
  0% {
    box-shadow: 0 0 0 0 rgba(178, 61, 31, 0.36);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(178, 61, 31, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(178, 61, 31, 0);
  }
}

@keyframes float-soft {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1020px) {
  html {
    font-size: 16px;
  }

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

  .hero-panel {
    max-width: 520px;
  }

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

@media (max-width: 760px) {
  .container {
    width: min(1140px, 92%);
  }

  .urgency-title,
  .urgency-note {
    width: 100%;
  }

  .urgency-wrap {
    min-height: 64px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0.1rem;
    padding: 0.45rem 0;
  }

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

  .offer-card {
    padding: 0.92rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .offer-button {
    width: 100%;
  }

  .brand-logo {
    width: 175px;
  }

  .creo-stats {
    grid-template-columns: 1fr;
  }

  .avatar-strip {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
  }

  .avatar-chip {
    min-width: 88px;
    flex-shrink: 0;
  }

  .deal-ticker-track {
    animation: none;
    width: 100%;
    min-height: 36px;
    padding: 0 0.68rem;
    justify-content: flex-start;
    gap: 0.72rem;
    overflow: hidden;
  }

  .deal-ticker-track span {
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .deal-ticker-track span:nth-child(n + 3) {
    display: none;
  }

  .offer-head {
    align-items: flex-start;
  }

  .featured-label {
    width: 100%;
    text-align: center;
  }

  .limit-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
  }

  .live-feed {
    padding: 0.8rem 0.72rem 0.68rem;
  }

  .live-feed-subtitle {
    margin-top: 0.36rem;
  }

  .live-toast {
    right: 12px;
    left: 12px;
    max-width: none;
    bottom: max(12px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 540px) {
  h1 {
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  .hero {
    padding-top: 1.65rem;
  }

  .hero-text {
    font-size: 0.98rem;
  }

  .badge {
    width: 100%;
    text-align: center;
    padding: 0.45rem 0.68rem;
  }

  .hero-panel {
    padding: 0.82rem;
    border-radius: 0.88rem;
  }

  .panel-label {
    font-size: 0.79rem;
  }

  .time-big {
    font-size: 1.72rem;
  }

  .creo-zone {
    padding: 0.74rem;
    border-radius: 0.88rem;
  }

  .creo-main h2 {
    font-size: 1.28rem;
  }

  .creo-main p {
    font-size: 0.92rem;
  }

  .creo-side {
    padding: 0.66rem;
  }

  .featured-offer {
    padding: 0.92rem;
    border-radius: 0.88rem;
  }

  .featured-offer h2 {
    font-size: 1.47rem;
  }

  .offer-meta {
    gap: 0.34rem;
  }

  .offer-meta span {
    width: 100%;
    text-align: center;
  }

  .offer-card {
    border-radius: 0.82rem;
    padding: 0.78rem;
  }

  .offer-card h3 {
    font-size: 1.28rem;
  }

  .mini-list {
    font-size: 0.9rem;
  }

  .live-entry {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 0.46rem;
    padding: 0.34rem 0.38rem;
  }

  .live-entry-avatar {
    width: 38px;
    height: 38px;
  }

  .live-entry-line {
    font-size: 0.81rem;
  }

  .live-entry-meta {
    font-size: 0.71rem;
  }

  .live-toast img {
    width: 36px;
    height: 36px;
  }

  .live-toast p {
    font-size: 0.84rem;
  }

  .deal-ticker {
    margin-top: 0.72rem;
  }

  .deal-ticker-track {
    min-height: 34px;
    padding: 0 0.55rem;
    gap: 0.45rem;
  }

  .deal-ticker-track span {
    font-size: 0.69rem;
  }

  .ambient-shape--left {
    width: 240px;
    height: 240px;
    left: -95px;
    top: -70px;
  }

  .ambient-shape--right {
    width: 270px;
    height: 270px;
    right: -130px;
    bottom: 4%;
  }
}

@media (max-width: 420px) {
  html {
    font-size: 15px;
  }

  .container {
    width: 94%;
  }

  .urgency-wrap {
    min-height: 58px;
    padding: 0.34rem 0;
  }

  .urgency-title {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .urgency-note {
    font-size: 0.76rem;
    line-height: 1.3;
  }

  h1 {
    font-size: 1.45rem;
  }

  .hero-text {
    margin-top: 0.68rem;
    font-size: 0.9rem;
  }

  .deal-ticker {
    display: none;
  }

  .creo-kicker {
    font-size: 0.69rem;
    letter-spacing: 0.04em;
  }

  .creo-stats span {
    font-size: 1.02rem;
  }

  .creo-stats small {
    font-size: 0.69rem;
  }

  .avatar-chip {
    min-width: 80px;
    padding: 0.32rem 0.34rem;
  }

  .avatar-chip img {
    width: 40px;
    height: 40px;
  }

  .avatar-chip figcaption {
    font-size: 0.69rem;
  }

  .brand-logo {
    width: 150px;
  }

  .brand-logo--featured {
    width: 170px;
  }

  .limit-row p {
    font-size: 0.86rem;
  }

  .slot-count {
    font-size: 0.98rem;
  }

  .offer-button {
    min-height: 48px;
    padding: 0.58rem 0.84rem;
    font-size: 0.9rem;
  }

  .live-feed-title {
    font-size: 0.98rem;
  }

  .live-feed-subtitle {
    font-size: 0.79rem;
  }

  .live-status {
    font-size: 0.68rem;
    padding: 0.22rem 0.5rem;
  }

  .live-toast {
    padding: 0.52rem 0.56rem;
    gap: 0.42rem;
  }
}
