:root {
  --s1-green: #1ac996;
  --s1-green-dark: #0b7c59;
  --s1-green-700: #0e7a59;
  --s1-mint: #eafbf5;
  --s1-mint-soft: #f0faf6;
  --s1-mint-border: #bfeede;
  --s1-page: #f4f7f6;
  --s1-white: #ffffff;
  --s1-ink: #373737;
  --s1-gray: #58585b;
  --s1-muted: #a2a2a3;
  --s1-line: #e2e5e5;
  --s1-red: #d94540;
  --s1-red-soft: #fdf1f0;
  --s1-font-ui: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --s1-font-display: "Raleway", var(--s1-font-ui);
  --s1-radius-sm: 10px;
  --s1-radius: 16px;
  --s1-radius-lg: 24px;
  --s1-radius-pill: 999px;
  --s1-shadow-sm: 0 2px 10px rgba(16, 24, 40, .05);
  --s1-shadow: 0 10px 34px rgba(16, 24, 40, .07);
  --s1-shadow-lg: 0 24px 60px rgba(16, 24, 40, .18);
  --s1-container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body.s1-page {
  width: 100%;
  min-width: 0;
  max-width: 100vw;
  margin: 0;
  overflow-x: hidden;
  background: var(--s1-page);
  color: var(--s1-ink);
  font-family: var(--s1-font-ui);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

.s1-page a {
  color: inherit;
  text-decoration: none;
}

.s1-page button,
.s1-page input,
.s1-page select,
.s1-page textarea {
  font: inherit;
  letter-spacing: 0;
}

.s1-page button {
  cursor: pointer;
}

.s1-page h1,
.s1-page h2,
.s1-page h3,
.s1-page h4 {
  margin: 0;
  color: var(--s1-ink);
  font-family: var(--s1-font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}

.s1-page p {
  margin: 0;
}

.s1-container {
  width: 100%;
  max-width: var(--s1-container);
  margin: 0 auto;
  padding: 0 24px;
}

.is-hidden {
  display: none !important;
}

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

.s1-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border: 1.5px solid transparent;
  border-radius: var(--s1-radius-pill);
  font-weight: 600;
  font-size: 15px;
  line-height: 1.25;
  text-align: center;
  transition: filter .15s ease, transform .05s ease, background .15s ease;
}

.s1-btn:active {
  transform: translateY(1px);
}

.s1-btn--primary {
  background: var(--s1-green);
  color: #fff !important;
}

.s1-page a.s1-btn--primary,
.s1-site-nav a.s1-btn--primary {
  color: #fff;
}

.s1-btn--primary:hover {
  filter: brightness(.96);
}

.s1-btn--secondary {
  border-color: var(--s1-mint-border);
  background: #fff;
  color: var(--s1-green-dark);
}

.s1-btn--secondary:hover {
  background: var(--s1-mint-soft);
}

.s1-btn--small {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 13.5px;
}

.s1-btn--large {
  min-height: 52px;
  padding: 14px 28px;
  font-size: 16px;
}

.s1-btn--block {
  width: 100%;
}

.s1-link-button,
.s1-footer-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--s1-green-dark);
  font-weight: 600;
}

.s1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--s1-green-dark);
  font-size: 13px;
  font-weight: 600;
}

.s1-eyebrow::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--s1-green);
  content: "";
}

/* Header */
.s1-site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  width: 100%;
}

.s1-site-header__inner {
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  background: #fff;
}

.s1-site-header--public {
  padding: 14px 16px 24px;
  background: #edfbf6;
}

.s1-site-header--public .s1-site-header__inner {
  max-width: 806px;
  min-height: 50px;
  gap: 30px;
  padding: 0 20px 0 40px;
  border: 1px solid rgba(55, 55, 55, .10);
  border-radius: var(--s1-radius-pill);
  box-shadow: 0 8px 24px rgba(55, 55, 55, .08);
}

.s1-site-header--account {
  border-bottom: 1px solid var(--s1-line);
  background: #fff;
}

.s1-site-header--account .s1-site-header__inner {
  min-height: 88px;
  gap: 16px;
  padding: 0 56px;
}

.s1-brand {
  display: inline-flex;
  flex: none;
  align-items: center;
}

.s1-brand img {
  width: auto;
  height: 26px;
}

.s1-site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.s1-site-nav a {
  padding: 8px 0;
  color: var(--s1-ink);
  font-size: 14px;
  font-weight: 500;
}

.s1-site-nav a:hover,
.s1-site-nav a.is-active {
  color: var(--s1-green-dark);
}

.s1-site-header__spacer {
  flex: 1;
}

.s1-site-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.s1-header-login {
  color: var(--s1-ink);
  font-size: 14px;
  font-weight: 500;
}

.s1-header-cta {
  min-width: 160px;
  min-height: 48px;
  padding: 11px 28px;
  font-size: 14px;
  white-space: nowrap;
}

.s1-nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
}

.s1-nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--s1-ink);
  transition: transform .18s ease, opacity .18s ease;
}

.s1-nav-toggle.is-open span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.s1-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.s1-nav-toggle.is-open span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.s1-nav-drawer {
  position: fixed;
  z-index: 120;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  max-height: calc(100vh - 72px);
  flex-direction: column;
  padding: 11px 20px calc(28px + env(safe-area-inset-bottom));
  visibility: hidden;
  border-radius: 20px 20px 0 0;
  background: #fff;
  opacity: 0;
  transform: translateY(100%);
  transition: transform .22s ease, opacity .18s ease, visibility .22s;
}

.s1-nav-drawer.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.s1-nav-drawer__handle {
  width: 40px;
  height: 4px;
  flex: none;
  margin: 0 auto 17px;
  border-radius: 4px;
  background: #c9c9ce;
}

.s1-nav-drawer > a,
.s1-nav-drawer > .s1-link-button {
  min-height: 57px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--s1-line);
  color: var(--s1-ink);
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}

.s1-nav-drawer > :last-child {
  border-bottom: 0;
}

.s1-nav-drawer__out {
  color: #ef3030 !important;
}

.s1-nav-overlay {
  position: fixed;
  z-index: 110;
  inset: 0;
  visibility: hidden;
  background: rgba(37, 40, 40, .42);
  opacity: 0;
  transition: opacity .18s ease, visibility .18s;
}

.s1-nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
}

body.s1-nav-open {
  overflow: hidden;
}

.s1-avatar-wrap {
  position: relative;
}

.s1-avatar-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.s1-avatar {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--s1-mint-border);
  border-radius: 50%;
  background: var(--s1-mint);
  color: var(--s1-green-dark);
  font-size: 14px;
  font-weight: 500;
}

.s1-avatar-chevron {
  width: 7px;
  height: 7px;
  border-right: 1.5px solid var(--s1-gray);
  border-bottom: 1.5px solid var(--s1-gray);
  transform: rotate(45deg) translateY(-2px);
  transition: transform .15s ease;
}

.s1-avatar-wrap.is-open .s1-avatar-chevron {
  transform: rotate(225deg) translate(-1px, -1px);
}

.s1-avatar-menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + 10px);
  right: 0;
  width: 200px;
  padding: 0;
  visibility: hidden;
  border: 1px solid var(--s1-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(55, 55, 55, .14);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}

.s1-avatar-wrap.is-open .s1-avatar-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.s1-avatar-menu a {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 19px;
  border-bottom: 1px solid var(--s1-line);
  color: var(--s1-ink);
  font-size: 14px;
  font-weight: 500;
}

.s1-avatar-menu a:hover {
  background: var(--s1-mint-soft);
  color: var(--s1-green-dark);
}

.s1-avatar-menu__out {
  border-bottom: 0 !important;
  color: #ef3030 !important;
}

/* Footer */
.s1-site-footer {
  margin-top: 0;
  padding: 56px 0 36px;
  border-top: 1px solid var(--s1-line);
  background: #f7f8f8;
}

.s1-site-footer__grid {
  display: grid;
  grid-template-columns: 320px 1fr 1fr 1fr;
  gap: 80px;
}

.s1-site-footer__brand p {
  max-width: 310px;
  margin-top: 12px;
  color: var(--s1-gray);
  font-size: 14px;
  line-height: 1.55;
}

.s1-site-footer__links {
  display: contents;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.s1-site-footer h2 {
  margin-bottom: 12px;
  font-family: var(--s1-font-ui);
  font-size: 13px;
  font-weight: 600;
}

.s1-site-footer a,
.s1-footer-button {
  display: block;
  padding: 3px 0;
  color: var(--s1-gray);
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

.s1-site-footer a:hover,
.s1-footer-button:hover {
  color: var(--s1-green-dark);
}

.s1-site-footer__legal {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--s1-line);
  color: var(--s1-muted);
  font-size: 13px;
}

/* Home */
.s1-hero {
  background: var(--s1-mint);
}

.s1-hero__inner {
  display: grid;
  min-height: 578px;
  grid-template-columns: 620px minmax(0, 1fr);
  align-items: center;
  gap: 56px;
  padding: 72px 0;
}

.s1-hero__copy,
.s1-hero__visual {
  min-width: 0;
}

.s1-hero h1 {
  max-width: 620px;
  font-size: 46px;
  line-height: 1.12;
}

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

.s1-hero__lead {
  max-width: 620px;
  margin: 24px 0 !important;
  color: var(--s1-gray);
  font-size: 17px;
  line-height: 1.55;
}

.s1-hero__ticker {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 56px;
  margin-bottom: 24px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, #000 0%, #000 88%, transparent 100%);
}

.s1-hero__ticker-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 4px 32px 4px 0;
  animation: s1-ticker-scroll 24s linear infinite;
  will-change: transform;
}

.s1-hero__ticker:hover .s1-hero__ticker-track,
.s1-hero__ticker:focus-within .s1-hero__ticker-track {
  animation-play-state: paused;
}

.s1-hero__ticker-copy {
  display: contents;
}

@keyframes s1-ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}

.s1-pill {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 14px;
  border: 1.5px solid #dbf5ed;
  border-radius: var(--s1-radius-pill);
  background: #fff;
  color: #1c1c1e;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.s1-pill:hover {
  border-color: #85e8c9;
  box-shadow: 0 8px 22px rgba(11, 124, 89, .09);
  transform: translateY(-1px);
}

.s1-pill__icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ebfaf5;
  font-size: 14px;
}

.s1-pill__icon--arrow {
  width: auto;
}

.s1-hero__cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
}

.s1-hero__cta .s1-btn {
  width: 215px;
  min-height: 40px;
  padding: 10px 20px;
  background: rgba(11, 124, 89, .49);
  color: #fff;
  font-size: 15px;
}

.s1-hero__cta .s1-link {
  width: auto;
  min-width: 205px;
  font-size: 15px;
  white-space: nowrap;
}

.s1-link {
  border: 0;
  background: none;
  color: var(--s1-green-dark);
  font-weight: 600;
}

.s1-link:hover {
  text-decoration: underline;
}

.s1-hero__media {
  position: relative;
  width: 100%;
  max-width: none;
  height: 434px;
  justify-self: center;
  aspect-ratio: auto;
  border-radius: 24px;
  background: center / contain no-repeat;
}

.s1-hero__coupon {
  position: absolute;
  bottom: 22px;
  left: 40px;
  min-width: 230px;
  padding: 14px 22px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--s1-shadow);
}

.s1-hero__coupon strong {
  display: block;
  color: var(--s1-green-dark);
  font-size: 24px;
}

.s1-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: var(--s1-radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.s1-badge--mint {
  margin-top: 6px;
  background: var(--s1-mint);
  color: var(--s1-green-dark);
}

.s1-publisher-band {
  background: linear-gradient(90deg, #0d6248, #0cc58c);
  color: #fff;
}

.s1-publisher-band__inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.s1-publisher-band p {
  font-family: var(--s1-font-display);
  font-size: 24px;
}

.s1-publisher-band strong {
  font-weight: 700;
}

.s1-publisher-band .s1-btn {
  width: 193px;
  border-color: rgba(255, 255, 255, .5);
  background: rgba(255, 255, 255, .42);
  color: #fff;
}

.s1-section {
  padding: 72px 0 24px;
  background: #fff;
}

.s1-section--discover {
  padding: 72px 0 64px;
}

.s1-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.s1-section-head h2 {
  font-size: 30px;
}

.s1-section-head p {
  margin-top: 4px;
  color: var(--s1-gray);
  font-family: var(--s1-font-display);
  font-size: 15px;
  font-style: italic;
  font-weight: 600;
}

.s1-search {
  display: flex;
  min-height: 64px;
  gap: 12px;
  margin-bottom: 8px;
  padding: 0 0 0 20px;
  border: 1px solid var(--s1-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 12px rgba(55, 55, 55, .08);
}

.s1-search input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--s1-ink);
  font-size: 15px;
}

.s1-search .s1-btn {
  min-height: 64px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
}

.s1-search-note {
  margin: 8px 0 22px 4px !important;
  color: var(--s1-muted);
  font-size: 12.5px;
}

.s1-carousel {
  min-width: 0;
}

.s1-carousel__viewport {
  position: relative;
  min-width: 0;
  margin-block: -6px 0;
  padding-block: 6px;
  overflow: hidden;
}

.s1-card-grid {
  display: grid;
  grid-auto-columns: 300px;
  grid-auto-flow: column;
  gap: 24px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.s1-card-grid::-webkit-scrollbar { display: none; }

.s1-card-grid > * {
  scroll-snap-align: start;
}

.s1-carousel__fade {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  width: 60px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), #fff);
  opacity: 1;
  pointer-events: none;
  transition: opacity .2s ease;
}

.s1-carousel.is-at-end .s1-carousel__fade {
  opacity: 0;
}

.s1-promo-card {
  min-width: 0;
  display: flex;
  overflow: hidden;
  flex-direction: column;
  width: 300px;
  border: 1px solid #edf0f0;
  border-radius: var(--s1-radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(55, 55, 55, .08);
  transition: transform .15s ease, box-shadow .15s ease;
}

.s1-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--s1-shadow);
}

.s1-promo-card__media {
  position: relative;
  height: 168px;
  overflow: hidden;
  background: #dce8e5;
}

.s1-promo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s1-promo-card__media .s1-badge {
  position: absolute;
  z-index: 2;
  top: 12px;
}

.s1-badge--category {
  right: 12px;
  max-width: 54%;
  background: rgba(255, 255, 255, .92);
  color: var(--s1-ink);
  white-space: nowrap;
}

.s1-badge--offer {
  left: 12px;
  max-width: 44%;
  overflow: hidden;
  background: var(--s1-green);
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s1-promo-card__body {
  display: flex;
  min-height: 157px;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 16px;
}

.s1-promo-card--coupon .s1-promo-card__media { height: 307px; }

.s1-promo-card--coupon .s1-promo-card__body { min-height: 178px; }

.s1-promo-card__business {
  color: var(--s1-gray);
  font-size: 12px;
  font-weight: 500;
}

.s1-promo-card__title {
  color: var(--s1-ink);
  font-size: 16px;
  font-weight: 600;
}

.s1-promo-card__meta {
  color: var(--s1-gray);
  font-size: 13px;
}

.s1-promo-card__location {
  color: var(--s1-muted);
  font-size: 10px;
  font-weight: 500;
}

.s1-promo-card__cta {
  margin-top: auto;
  padding-top: 10px;
  color: var(--s1-green-dark);
  font-size: 14px;
  font-weight: 600;
}

.s1-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}

.s1-carousel__arrow {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid #e8ebed;
  border-radius: 50%;
  background: #fff;
  color: #1c1c1e;
  font-size: 20px;
  transition: border-color .15s ease, color .15s ease, opacity .15s ease;
}

.s1-carousel__arrow:hover:not(:disabled) {
  border-color: var(--s1-mint-border);
  color: var(--s1-green-dark);
}

.s1-carousel__arrow:disabled {
  cursor: default;
  opacity: .35;
}

.s1-carousel__dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.s1-carousel__dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #d6dfdc;
}

.s1-carousel__dot.is-active {
  background: var(--s1-green);
}

.s1-empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 28px;
  border: 1px dashed var(--s1-mint-border);
  border-radius: var(--s1-radius);
  background: #fff;
}

.s1-empty span {
  color: var(--s1-gray);
}

.s1-growth {
  position: relative;
  overflow: hidden;
  background: #0b7c59;
  color: #fff;
  text-align: center;
}

.s1-growth::before {
  position: absolute;
  inset: 0;
  background: url('../images/sprint1/growth-pattern.png') center / cover no-repeat;
  content: "";
  opacity: .04;
}

.s1-growth__inner {
  position: relative;
  padding: 64px 24px;
}

.s1-growth h2 {
  color: #fff;
  font-size: 34px;
}

.s1-growth p {
  max-width: 570px;
  margin: 12px auto 22px;
  color: rgba(255, 255, 255, .9);
}

.s1-growth__points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, .95);
  font-size: 13.5px;
}

.s1-growth .s1-btn {
  min-width: 190px;
  border-radius: 12px;
  background: #fff;
  color: var(--s1-green-dark);
}

.s1-stats {
  min-height: 396px;
  padding: 64px 0;
  background: #edfbf6;
}

.s1-stats__eyebrow {
  margin-bottom: 40px;
  text-align: center;
}

.s1-stats__eyebrow span {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--s1-radius-pill);
  border: 1.5px solid #bfede0;
  background: transparent;
  color: var(--s1-green-dark);
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
}

.s1-stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.s1-stat {
  position: relative;
  padding: 0 24px;
}

.s1-stat + .s1-stat {
  border-left: 1px solid var(--s1-line);
}

.s1-stat::before {
  display: block;
  width: 32px;
  height: 4px;
  margin: 0 auto 18px;
  border-radius: var(--s1-radius-pill);
  background: var(--s1-green);
  content: "";
}

.s1-stat strong {
  display: block;
  margin-bottom: 12px;
  color: #1c1c1e;
  font-family: var(--s1-font-display);
  font-size: 56px;
  line-height: 1;
}

.s1-stat strong[data-count-up],
.s1-stat strong[data-stat-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .35s ease, transform .35s ease;
}

.s1-stat strong.is-counted {
  opacity: 1;
  transform: translateY(0);
}

.s1-stat span {
  color: var(--s1-gray);
  font-size: 14px;
}

/* Auth */
.s1-auth-backdrop {
  position: fixed;
  z-index: 5000;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 24px;
  overflow-y: auto;
  background: rgba(20, 31, 28, .45);
}

.s1-auth-modal {
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 64px);
  padding: 32px 40px;
  overflow-y: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 31, 28, .22);
}

.s1-auth-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.s1-auth-modal__head > img {
  width: 105px;
  height: auto;
}

.s1-modal-close {
  width: 36px;
  height: 36px;
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #f4f6f6;
}

.s1-modal-close img {
  width: 13px;
  height: 13px;
}

.s1-auth-tabs {
  display: flex;
  margin-bottom: 16px;
  padding: 4px;
  border-radius: 12px;
  background: #f1f5f4;
}

.s1-auth-tabs button {
  min-height: 36px;
  flex: 1;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--s1-gray);
  font-size: 14px;
  font-weight: 500;
}

.s1-auth-tabs button.is-active {
  background: #fff;
  color: var(--s1-green-dark);
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(11, 124, 89, .12);
}

.s1-auth-panel {
  display: grid;
  gap: 16px;
}

.s1-auth-flow-hint {
  color: var(--s1-gray);
  font-size: 13px;
}

.s1-auth-panel h2 {
  font-size: 25px;
  line-height: 1.2;
}

.s1-auth-intro {
  color: var(--s1-gray);
  font-size: 14.5px;
  line-height: 1.5;
}

.s1-benefits {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.s1-benefits li {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--s1-gray);
  font-size: 14px;
}

.s1-benefits img {
  width: 18px;
  height: 18px;
  flex: none;
}

.s1-field {
  display: block;
  margin-bottom: 16px;
}

.s1-auth-panel .s1-field {
  margin-bottom: 0;
}

.s1-field > span:first-child,
.s1-form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--s1-ink);
  font-size: 13.5px;
  font-weight: 600;
}

.s1-input,
.s1-textarea,
.s1-select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--s1-line);
  border-radius: var(--s1-radius);
  background: #fff;
  color: var(--s1-ink);
  font-size: 14.5px;
}

.s1-input,
.s1-select {
  min-height: 50px;
  padding: 0 15px;
}

.s1-textarea {
  min-height: 120px;
  padding: 13px 15px;
  resize: vertical;
}

.s1-input:focus,
.s1-textarea:focus,
.s1-select:focus {
  outline: 0;
  border-color: var(--s1-green);
  box-shadow: 0 0 0 3px rgba(26, 201, 150, .15);
}

.s1-auth-panel .s1-input {
  min-height: 52px;
  border-width: 1.5px;
  border-radius: 12px;
}

.s1-password-wrap {
  position: relative;
  display: block;
}

.s1-password-wrap .s1-input {
  padding-right: 58px;
}

.s1-password-wrap button {
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
  border: 0;
  background: transparent;
  transform: translateY(-50%);
}

.s1-password-wrap button img {
  width: 18px;
  height: 18px;
}

.s1-password-wrap button.is-revealed {
  opacity: .55;
}

.s1-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  color: var(--s1-gray);
  font-size: 13px;
}

.s1-checkbox input {
  width: 16px;
  height: 16px;
  flex: none;
  margin-top: 2px;
  accent-color: var(--s1-green);
}

.s1-checkbox a,
.s1-forgot-link,
.s1-auth-switch button {
  color: var(--s1-green-dark);
  font-weight: 600;
  text-decoration: underline;
}

.s1-auth-options {
  display: flex;
  min-height: 31px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.s1-checkbox--compact {
  align-items: center;
  white-space: nowrap;
}

.s1-checkbox--compact input {
  margin-top: 0;
}

.s1-forgot-link {
  display: inline-block;
  margin: 0;
  font-size: 13px;
  text-decoration: none;
}

.s1-auth-submit {
  width: 100%;
  min-height: 54px;
  border-radius: 14px;
  font-size: 16px;
  box-shadow: 0 6px 8px rgba(26, 201, 150, .30);
}

.s1-auth-redirect-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-radius: 12px;
  background: #edfbf6;
  color: var(--s1-green-dark);
  font-size: 12.5px;
  line-height: 1.5;
}

.s1-auth-redirect-note img {
  width: 15px;
  height: 15px;
  flex: none;
}

.s1-auth-switch {
  color: var(--s1-gray);
  font-size: 13.5px;
  text-align: center;
}

.s1-auth-switch button {
  padding: 0;
  border: 0;
  background: transparent;
}

.s1-form-error {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 16px;
  padding: 12px 14px;
  border: 1px solid #f5c7c4;
  border-radius: 12px;
  background: var(--s1-red-soft);
  color: #9e2e29;
  font-size: 13px;
}

.s1-form-error > span {
  width: 18px;
  height: 18px;
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

.s1-form-error p + p {
  margin-top: 4px;
}

.s1-field.is-error .s1-input,
.s1-field.is-error .s1-textarea {
  border-color: var(--s1-red);
  background: #fffafa;
  box-shadow: 0 0 0 3px rgba(217, 69, 64, .08);
}

.s1-checkbox.is-error {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--s1-red-soft);
  color: #9e2e29;
}

/* Create ad */
.s1-create-ad {
  min-height: calc(100vh - 74px);
  padding: 62px 24px 0;
  background: var(--s1-page);
}

.s1-publish-flow-layout {
  width: 100%;
  max-width: 1280px;
  display: grid;
  grid-template-columns: 314px minmax(0, 942px);
  gap: 24px;
  align-items: start;
  margin: 0 auto;
}

.s1-publish-flow-layout__main {
  min-width: 0;
}

.s1-publish-flow {
  position: sticky;
  top: 116px;
  padding: 24px;
  border: 1px solid #e5ebeb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(55, 55, 55, .06);
}

.s1-publish-flow__eyebrow {
  color: var(--s1-green-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.s1-publish-flow__summary {
  margin-top: 7px !important;
  color: var(--s1-gray);
  font-size: 13px;
  font-weight: 500;
}

.s1-publish-flow__bar {
  height: 6px;
  margin: 16px 0 20px;
  overflow: hidden;
  border-radius: 999px;
  background: #edf2f0;
}

.s1-publish-flow__bar span {
  width: 75%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--s1-green);
}

.s1-form-progress {
  display: grid;
  gap: 7px;
  margin-bottom: 20px;
}

.s1-form-progress strong {
  justify-self: start;
  color: var(--s1-green-dark);
  font-size: 13px;
  font-weight: 700;
}

.s1-form-progress i {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: #e2e5e5;
}

.s1-form-progress b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--s1-green);
}

.s1-publish-flow__tasks {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.s1-publish-flow__tasks li {
  display: grid;
  min-width: 0;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  padding: 10px;
  border-radius: 12px;
  color: var(--s1-muted);
}

.s1-publish-flow__tasks li > span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfe6e3;
  border-radius: 50%;
  background: #f1f4f3;
  color: var(--s1-gray);
  font-size: 12px;
  font-weight: 700;
}

.s1-publish-flow__tasks li div {
  min-width: 0;
}

.s1-publish-flow__tasks strong,
.s1-publish-flow__tasks small {
  display: block;
}

.s1-publish-flow__tasks strong {
  color: inherit;
  font-size: 13px;
  line-height: 1.3;
}

.s1-publish-flow__tasks small {
  margin-top: 2px;
  font-size: 10px;
}

.s1-publish-flow__tasks li.is-complete {
  color: var(--s1-green-dark);
}

.s1-publish-flow__tasks li.is-complete > span {
  border-color: var(--s1-green-dark);
  background: var(--s1-green-dark);
  color: #fff;
}

.s1-publish-flow__tasks li.is-active {
  background: var(--s1-mint);
  color: var(--s1-green-dark);
}

.s1-publish-flow__tasks li.is-active > span {
  border-color: var(--s1-green);
  background: var(--s1-green);
  color: #fff;
}

.s1-create-ad__hero,
.s1-create-ad__feedback,
.s1-ad-form {
  width: 100%;
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

.s1-create-ad__hero {
  margin-bottom: 24px;
}

.s1-form-progress--hero {
  margin: 12px 0 8px;
}

.s1-form-progress--hero strong {
  justify-self: end;
  font-size: 18px;
}

.s1-create-ad__hero .s1-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--s1-green-dark);
  font-size: 16px;
  font-weight: 600;
}

.s1-create-ad__hero .s1-eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--s1-green);
  content: "";
}

.s1-create-ad__hero h1 {
  margin: 8px 0 6px;
  font-size: 40px;
}

.s1-create-ad__hero p {
  color: var(--s1-gray);
  font-size: 17px;
}

.s1-create-ad__feedback:empty {
  display: none;
}

.s1-status-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px 16px;
  border: 1px solid var(--s1-line);
  border-radius: var(--s1-radius);
  background: #fff;
}

.s1-status-actions {
  display: flex;
  gap: 8px;
}

.s1-inline-form {
  display: inline;
}

.s1-danger-button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid #e5b6b6;
  border-radius: var(--s1-radius-pill);
  background: #fff;
  color: #a33a3a;
  font-weight: 600;
}

.s1-ad-form {
  display: grid;
  gap: 0;
}

.s1-ad-section {
  display: grid;
  scroll-margin-top: 120px;
}

.s1-ad-section__head {
  padding: 0 32px;
}

.s1-step-panel > .s1-ad-section__head {
  margin-bottom: 20px;
  padding: 0;
}

.s1-ad-section__head > p {
  margin-top: 8px;
  color: var(--s1-gray);
  font-size: 15px;
}

.s1-form-card {
  padding: 32px;
  overflow: hidden;
  border: 1px solid #e5ebeb;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(55, 55, 55, .06);
}

.s1-step-title {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
}

.s1-step-number {
  width: 26px;
  height: 26px;
  display: inline-flex;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eafbf5;
  color: var(--s1-green);
  font-size: 13px;
  font-weight: 700;
}

.s1-step-title h2 {
  padding-top: 0;
  font-size: 22px;
}

.s1-company-option strong {
  display: block;
  color: var(--s1-ink);
  font-size: 15px;
}

.s1-company-option small {
  display: block;
  margin-top: 3px;
  color: var(--s1-muted);
  font-size: 12.5px;
}

.s1-company-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.s1-company-option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 96px;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1.5px solid var(--s1-line);
  border-radius: 16px;
  background: #fff;
  cursor: pointer;
}

.s1-company-option:has(input:checked) {
  border-color: var(--s1-green);
  background: var(--s1-mint-soft);
}

.s1-company-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.s1-company-option__initial {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f0f2f2;
  color: var(--s1-green-dark);
  font-weight: 700;
}

.s1-company-option:has(input:checked) .s1-company-option__initial {
  background: #d5f5ea;
}

.s1-company-option__copy {
  min-width: 0;
}

.s1-company-option__check {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--s1-line);
  border-radius: 50%;
  color: transparent;
  font-size: 12px;
}

.s1-company-option:has(input:checked) .s1-company-option__check {
  border-color: var(--s1-green);
  background: var(--s1-green);
  color: #fff;
}

.s1-company-create-row {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e5ebeb;
  color: var(--s1-gray);
  font-size: 14px;
}

.s1-company-create {
  border-radius: 12px;
}

.s1-company-create b {
  font-size: 18px;
}

.s1-selected-company {
  overflow: hidden;
  border: 2px solid var(--s1-green);
  border-radius: 16px;
  background: #edfbf6;
}

.s1-selected-company__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 16px;
  border-bottom: 1px solid rgba(26, 201, 150, .20);
  color: var(--s1-green-dark);
  font-size: 11px;
  font-weight: 600;
}

.s1-selected-company__top strong {
  font-size: 11px;
}

.s1-selected-company__body {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 18px;
}

.s1-selected-company__initial,
.s1-company-switch__initial {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #d5f5ea;
  color: var(--s1-green-dark);
  font-size: 20px;
  font-weight: 600;
}

.s1-selected-company__copy {
  min-width: 0;
}

.s1-selected-company__copy strong,
.s1-selected-company__copy small {
  display: block;
}

.s1-selected-company__copy strong {
  font-size: 16px;
}

.s1-selected-company__copy small {
  margin-top: 3px;
  color: var(--s1-gray);
  font-size: 12px;
}

.s1-selected-company__edit {
  color: var(--s1-green-dark);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.s1-company-switch {
  margin-top: 20px;
}

.s1-company-switch > p {
  margin-bottom: 10px !important;
  color: var(--s1-gray);
  font-size: 13px;
  font-weight: 600;
}

.s1-company-switch__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.s1-company-switch__option {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 82px;
  grid-template-columns: 42px minmax(0, 1fr) 22px;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1.5px solid var(--s1-line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.s1-company-switch__option.is-current {
  display: none;
}

.s1-company-switch__option:hover {
  border-color: var(--s1-mint-border);
  background: #fbfefd;
}

.s1-company-switch__option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.s1-company-switch__initial {
  width: 42px;
  height: 42px;
  background: #f0f2f2;
  color: var(--s1-muted);
  font-size: 16px;
}

.s1-company-switch__copy {
  min-width: 0;
}

.s1-company-switch__copy strong,
.s1-company-switch__copy small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s1-company-switch__copy strong {
  font-size: 14px;
}

.s1-company-switch__copy small {
  margin-top: 4px;
  color: var(--s1-muted);
  font-size: 11px;
}

.s1-company-switch__radio {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--s1-line);
  border-radius: 50%;
  color: transparent;
  font-size: 11px;
}

.s1-company-switch__add {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1.5px dashed var(--s1-mint-border);
  border-radius: 14px;
  background: var(--s1-mint-soft);
  color: var(--s1-green-dark);
  font-weight: 600;
}

.s1-company-switch__add span {
  font-size: 22px;
  line-height: 1;
}

.s1-company-switch__add small {
  font-size: 11px;
}

.s1-helper {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  margin: 12px 0 20px !important;
  padding: 12px 16px;
  border-radius: 12px;
  background: #edfbf6;
  color: var(--s1-green-dark);
  font-size: 13.5px;
}

.s1-helper i {
  width: 7px;
  height: 7px;
  flex: none;
  border-radius: 50%;
  background: var(--s1-green);
}

.s1-errors,
.s1-ad-form .errorlist {
  margin: 6px 0;
  padding: 0;
  color: var(--s1-red);
  font-size: 12px;
  list-style: none;
}

.s1-form-success {
  border-color: var(--s1-mint-border);
  background: var(--s1-mint-soft);
  color: var(--s1-green-dark);
}

.s1-uploader {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 230px;
  place-items: center;
  gap: 8px;
  margin: 0;
  padding: 48px 24px;
  border: 2px dashed #85e8c9;
  border-radius: 16px;
  background: #edfbf6;
  color: var(--s1-ink);
  text-align: center;
  cursor: pointer;
}

.s1-uploader.is-dragging {
  border-color: var(--s1-green);
  background: #dcf8ee;
}

.s1-uploader__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  font-size: 26px;
}

.s1-uploader p {
  color: var(--s1-gray);
  font-size: 13px;
}

.s1-image-error {
  margin-top: 12px !important;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--s1-red-soft);
  color: var(--s1-red);
  font-size: 13px;
  font-weight: 600;
}

.s1-image-workspace {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 32px;
  margin-top: 20px;
}

.s1-preview-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.s1-preview-heading strong {
  color: var(--s1-ink);
  font-family: var(--s1-font-display);
  font-size: 18px;
}

.s1-preview-heading span {
  color: var(--s1-muted);
  font-size: 12px;
}

.s1-ad-preview {
  overflow: hidden;
  border: 1px solid #edf0f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(55, 55, 55, .08);
}

.s1-ad-preview__image {
  position: relative;
  height: 307px;
  overflow: hidden;
  background: #e0e8e5;
}

.s1-ad-preview__image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s1-ad-preview__discount,
.s1-ad-preview__category {
  position: absolute;
  z-index: 2;
  top: 12px;
  padding: 5px 10px;
  border-radius: var(--s1-radius-pill);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

.s1-ad-preview__discount {
  left: 12px;
  background: var(--s1-green);
  color: #fff;
}

.s1-ad-preview__category {
  right: 12px;
  background: rgba(255, 255, 255, .92);
}

.s1-ad-preview__body {
  display: grid;
  gap: 6px;
  padding: 14px 16px 16px;
}

.s1-ad-preview__body small {
  color: var(--s1-gray);
  font-size: 12px;
  font-weight: 500;
}

.s1-ad-preview__body strong {
  line-height: 1.3;
}

.s1-ad-preview__body span {
  color: var(--s1-muted);
  font-size: 10px;
  font-weight: 500;
}

.s1-ad-preview__body b {
  color: var(--s1-green-dark);
  font-size: 14px;
}

.s1-photo-manager {
  min-width: 0;
}

.s1-photo-manager__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--s1-gray);
  font-size: 14px;
}

.s1-photo-manager > p {
  margin-top: 12px;
  color: var(--s1-muted);
  font-size: 12px;
}

.s1-photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 140px));
  gap: 12px;
}

.s1-photo-slot {
  position: relative;
  min-width: 0;
}

.s1-photo-preview {
  position: relative;
  display: flex;
  aspect-ratio: 4/3;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 8px;
  padding: 0;
  overflow: hidden;
  border: 1.5px solid var(--s1-line);
  border-radius: 12px;
  background: #e5ebed;
  color: var(--s1-green-dark);
  font-size: 11px;
  font-weight: 600;
}

.s1-photo-slot.is-previewing .s1-photo-preview {
  border: 2.5px solid var(--s1-green);
}

.s1-photo-preview img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s1-photo-preview img ~ span {
  display: none;
}

.s1-photo-preview em {
  position: absolute;
  z-index: 2;
  top: 6px;
  left: 6px;
  padding: 4px 8px;
  border-radius: var(--s1-radius-pill);
  background: var(--s1-green);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
}

.s1-photo-slot input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.s1-file-button {
  width: 100%;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border: 1px solid var(--s1-mint-border);
  border-radius: 10px;
  background: #fff;
  color: var(--s1-green-dark);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.s1-file-name {
  display: block;
  margin-top: 7px;
  overflow: hidden;
  color: var(--s1-muted);
  font-size: 10px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s1-delete-photo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  color: #a33a3a;
  font-size: 10px;
}

.s1-image-guide {
  display: grid;
  gap: 6px;
  margin-top: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #edfbf6;
  color: var(--s1-gray);
  font-size: 13px;
}

.s1-image-guide strong {
  color: var(--s1-ink);
  font-size: 14px;
}

.s1-step-error {
  margin-top: 12px !important;
  color: var(--s1-red);
  font-size: 12px;
  font-weight: 600;
}

.s1-form-empty {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px dashed var(--s1-mint-border);
  border-radius: var(--s1-radius);
  background: var(--s1-mint-soft);
}

.s1-form-empty span {
  color: var(--s1-gray);
  font-size: 13px;
}

.s1-ad-step-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid #efb6b3;
  border-radius: 12px;
  background: var(--s1-red-soft);
  color: #a13a35;
  font-size: 13px;
  font-weight: 600;
}

.s1-ad-step-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #e5ebeb;
}

.s1-ad-step-controls [hidden] {
  display: none !important;
}

.s1-ad-step-controls__end {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.s1-ad-step-dots {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: 4px;
}

.s1-ad-step-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #dce5e1;
  transition: width .16s ease, background .16s ease;
}

.s1-ad-step-dots button.is-active {
  width: 24px;
  border-radius: 999px;
  background: var(--s1-green);
}

.s1-ad-step-controls .s1-btn {
  min-height: 44px;
  border-radius: 12px;
}

.s1-ad-form.is-multistep .s1-ad-section[hidden] {
  display: none !important;
}

.s1-publish-action {
  position: sticky;
  z-index: 5;
  bottom: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  margin-left: calc(50% - 50vw);
  padding: 16px 24px 20px;
  border-top: 1px solid #e5ebeb;
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 -4px 24px rgba(51, 56, 61, .08);
  backdrop-filter: blur(12px);
}

.s1-publish-action .s1-btn {
  min-width: 220px;
  border-radius: 14px;
  box-shadow: 0 8px 10px rgba(26, 201, 150, .32);
}

.s1-publish-action p {
  color: var(--s1-muted);
  font-size: 13px;
}

@media (max-width: 1359px) {
  .s1-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(460px, .97fr);
    gap: 40px;
    padding: 72px 32px;
  }
}

@media (max-width: 980px) {
  .s1-publish-flow-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .s1-publish-flow {
    position: static;
    padding: 18px 20px;
  }

  .s1-publish-flow__tasks {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
  }

  .s1-publish-flow__tasks li {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 8px 5px;
    text-align: center;
  }

  .s1-publish-flow__tasks li > span {
    width: 28px;
    height: 28px;
  }

  .s1-publish-flow__tasks small {
    display: none;
  }

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

  .s1-hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 32px;
  }

  .s1-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .s1-image-workspace {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .s1-site-nav,
  .s1-site-actions,
  .s1-avatar-wrap {
    display: none;
  }

  .s1-site-header--public,
  .s1-site-header--account {
    padding: 0;
    border-bottom: 1px solid var(--s1-line);
    background: #fff;
  }

  .s1-site-header--public .s1-site-header__inner,
  .s1-site-header--account .s1-site-header__inner {
    max-width: none;
    min-height: 72px;
    gap: 12px;
    padding: 0 23px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .s1-site-header__inner {
    justify-content: space-between;
  }

  .s1-nav-toggle {
    display: inline-flex;
  }

  .s1-header-login {
    display: none;
  }

  .s1-hero h1 {
    font-size: 32px;
  }

  .s1-publisher-band__inner {
    align-items: stretch;
    flex-direction: column;
    padding: 16px 0;
  }

  .s1-publisher-band .s1-btn {
    width: 100%;
  }

  .s1-section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .s1-company-grid {
    grid-template-columns: 1fr;
  }

  .s1-image-workspace {
    grid-template-columns: 1fr;
  }

  .s1-ad-preview {
    width: min(100%, 300px);
  }

  .s1-status-bar {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .s1-container {
    padding: 0 16px;
  }

  .s1-home-page main .s1-container,
  .s1-home-page .s1-site-footer .s1-container {
    padding-right: 24px;
    padding-left: 24px;
  }

  .s1-brand img {
    height: 25px;
  }

  .s1-site-footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .s1-site-footer__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }

  .s1-site-footer__contact h2 {
    width: 100%;
  }

  .s1-hero__inner {
    min-height: 0;
    gap: 24px;
    padding: 20px 0 28px;
  }

  .s1-hero h1 {
    font-size: 30px;
    line-height: 1.18;
  }

  .s1-hero__lead {
    font-size: 15px;
  }

  .s1-hero__cta {
    align-items: stretch;
  }

  .s1-hero__cta .s1-btn,
  .s1-hero__cta .s1-link {
    width: 100%;
  }

  .s1-hero__media {
    max-width: 100%;
    height: 360px;
  }

  .s1-hero__coupon {
    right: auto;
    bottom: 22px;
    left: 16px;
    max-width: 220px;
    min-width: 0;
  }

  .s1-hero__coupon strong {
    font-size: 18px;
  }

  .s1-publisher-band__inner {
    min-height: 112px;
    align-items: center;
    padding: 18px 0;
    text-align: center;
  }

  .s1-publisher-band p {
    font-size: 14px;
  }

  .s1-section {
    padding: 36px 0;
  }

  .s1-search {
    align-items: center;
    flex-direction: row;
    padding-left: 14px;
    border-radius: 16px;
  }

  .s1-search input {
    min-height: 52px;
    padding: 0;
    font-size: 13px;
  }

  .s1-search .s1-btn {
    min-height: 52px;
    padding: 10px 18px;
  }

  .s1-card-grid {
    display: flex;
    gap: 14px;
    padding: 4px 24px 6px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .s1-carousel {
    margin: 0 -24px;
  }

  .s1-carousel__fade {
    right: 0;
    width: 42px;
  }

  .s1-card-grid::-webkit-scrollbar {
    display: none;
  }

  .s1-card-grid > * {
    flex: 0 0 84%;
    scroll-snap-align: center;
  }

  .s1-carousel__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 16px;
  }

  .s1-carousel__arrow {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--s1-line);
    border-radius: 50%;
    background: #fff;
    color: var(--s1-green-dark);
    box-shadow: var(--s1-shadow-sm);
    font-size: 20px;
  }

  .s1-carousel__dots {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .s1-carousel__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: var(--s1-radius-pill);
    background: #cdded8;
  }

  .s1-carousel__dot.is-active {
    width: 20px;
    background: var(--s1-green);
  }

  .s1-growth__points {
    gap: 12px;
  }

  .s1-stats__grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .s1-stat + .s1-stat {
    padding-top: 26px;
    border-top: 1px solid var(--s1-line);
    border-left: 0;
  }

  .s1-auth-backdrop {
    align-items: flex-start;
    padding: 16px;
  }

  .s1-auth-modal {
    max-height: calc(100vh - 32px);
    padding: 24px;
    border-radius: 20px;
  }

  .s1-auth-panel h2 {
    font-size: 23px;
  }

  .s1-auth-intro {
    font-size: 14px;
  }

  .s1-auth-options {
    align-items: center;
  }

  .s1-auth-options .s1-forgot-link {
    max-width: 170px;
    text-align: right;
  }

  .s1-auth-switch {
    font-size: 13px;
  }

  .s1-create-ad {
    padding: 36px 16px 0;
  }

  .s1-create-ad__hero {
    margin-bottom: 32px;
  }

  .s1-create-ad__hero .s1-eyebrow {
    font-size: 14px;
  }

  .s1-create-ad__hero h1 {
    font-size: 32px;
  }

  .s1-create-ad__hero p {
    font-size: 15px;
  }

  .s1-ad-form {
    gap: 0;
  }

  .s1-ad-section {
    gap: 16px;
  }

  .s1-ad-section__head {
    padding: 0 4px;
  }

  .s1-step-title h2 {
    font-size: 20px;
  }

  .s1-form-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .s1-selected-company__body {
    grid-template-columns: 44px minmax(0, 1fr);
  }

  .s1-selected-company__initial {
    width: 44px;
    height: 44px;
  }

  .s1-selected-company__edit {
    grid-column: 1 / -1;
    padding-top: 10px;
    border-top: 1px solid rgba(26, 201, 150, .16);
  }

  .s1-company-switch__grid {
    grid-template-columns: 1fr;
  }

  .s1-photo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .s1-uploader {
    min-height: 220px;
    padding: 34px 16px;
  }

  .s1-uploader p {
    max-width: 280px;
  }

  .s1-publish-action .s1-btn {
    width: 100%;
    min-width: 0;
  }

  .s1-publish-action p {
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .s1-publish-flow__eyebrow,
  .s1-publish-flow__summary {
    text-align: center;
  }

  .s1-publish-flow__tasks strong {
    font-size: 10px;
  }

  .s1-ad-step-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .s1-ad-step-controls__back-flow {
    width: 100%;
  }

  .s1-ad-step-controls__end {
    width: 100%;
    justify-content: space-between;
  }

  .s1-ad-step-controls__end .s1-btn {
    flex: 1;
  }

  .s1-ad-step-dots {
    flex: none;
  }

  .s1-preview-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .s1-hero__ticker-track {
    animation: none;
  }

  .s1-hero__ticker {
    overflow-x: auto;
  }
}
/* Final public surfaces: keep the approved system isolated from the legacy theme. */
.s1-site-header--public {
  position: fixed;
  inset: 16px 0 auto;
  z-index: 1000;
  background: transparent;
  transition: inset 180ms ease, background-color 180ms ease;
}

.s1-site-header--public .s1-site-header__inner {
  width: min(848px, calc(100% - 32px));
  min-height: 52px;
  margin-inline: auto;
  padding: 0 0 0 22px;
  border: 1px solid rgba(11, 124, 89, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 34px rgba(25, 72, 58, .10);
  backdrop-filter: blur(18px);
}

.s1-site-header--public.is-scrolled {
  inset-block-start: 8px;
}

.s1-site-header--public.is-scrolled .s1-site-header__inner {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 10px 30px rgba(25, 72, 58, .16);
}

.s1-home-page .s1-hero {
  padding-top: 112px;
}

.s1-hero__visual {
  position: relative;
  min-height: 456px;
}

.s1-hero__slide {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms;
}

.s1-hero__slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
}

.s1-hero__media {
  display: block;
  height: 100%;
  min-height: 456px;
  overflow: hidden;
}

.s1-hero__media > img {
  width: 100%;
  height: 100%;
  min-height: 456px;
  object-fit: cover;
}

.s1-hero__carousel-controls {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
}

.s1-hero__carousel-controls button {
  width: 8px;
  height: 8px;
  min-width: 8px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #b8c5c1;
}

.s1-hero__carousel-controls button.is-active {
  width: 22px;
  border-radius: 999px;
  background: #1ac996;
}

.s1-hero__ticker .s1-pill__icon {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  aspect-ratio: 1;
}

.s1-hero__ticker .s1-pill__icon--arrow {
  flex-basis: 28px;
  min-width: 28px;
}

.s1-badge--category {
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.s2-explore {
  min-height: 70vh;
  padding-top: 92px;
  background: #f8f9f9;
}

.s2-explore__hero {
  padding: 72px 0 48px;
  background: #eafbf5;
}

.s2-explore__hero h1 {
  max-width: 780px;
  margin: 12px 0 10px;
  color: #373737;
  font: 700 clamp(34px, 4vw, 58px)/1.08 Poppins, sans-serif;
}

.s2-explore__hero p,
.s2-explore__toolbar p {
  color: #58585b;
}

.s2-explore-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  max-width: 920px;
  margin-top: 30px;
  padding: 8px;
  border: 1px solid #dfe8e5;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 70, 56, .07);
}

.s2-explore-search input {
  min-width: 0;
  border: 0;
  padding: 0 18px;
  font: 400 16px Poppins, sans-serif;
  outline: none;
}

.s2-explore__content {
  padding: 48px 0 80px;
}

.s2-explore__toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.s2-explore__toolbar h2 {
  margin: 0 0 5px;
  color: #373737;
  font: 700 30px/1.15 Poppins, sans-serif;
}

.s2-explore__modes,
.s2-explore__categories {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.s2-explore__modes a,
.s2-explore__categories a {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid #dce5e2;
  border-radius: 999px;
  color: #58585b;
  background: #fff;
  font: 600 14px Poppins, sans-serif;
}

.s2-explore__modes a.is-active,
.s2-explore__categories a.is-active {
  border-color: #1ac996;
  color: #0b7c59;
  background: #e8faf4;
}

.s2-explore__categories {
  margin: 26px 0 30px;
  padding-bottom: 4px;
}

.s2-explore__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.s2-explore-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #e1e7e5;
  border-radius: 16px;
  color: #373737;
  background: #fff;
  box-shadow: 0 10px 24px rgba(25, 64, 52, .06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.s2-explore-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(25, 64, 52, .12);
}

.s2-explore-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9f4f0;
}

.s2-explore-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s2-explore-card__media .s1-badge {
  position: absolute;
  top: 14px;
}

.s2-explore-card__media .s1-badge--offer { left: 14px; }
.s2-explore-card__media .s1-badge--category { right: 14px; max-width: 52%; }

.s2-explore-card__body {
  display: flex;
  min-height: 238px;
  padding: 20px;
  flex-direction: column;
}

.s2-explore-card__body small,
.s2-explore-card__body em {
  color: #85898a;
  font-style: normal;
}

.s2-explore-card__body strong {
  margin: 6px 0 8px;
  font: 700 19px/1.25 Poppins, sans-serif;
}

.s2-explore-card__body > span {
  color: #58585b;
  line-height: 1.55;
}

.s2-explore-card__body em { margin-top: 12px; }
.s2-explore-card__body b { margin-top: auto; padding-top: 18px; color: #0b7c59; }

.s2-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.s2-pagination a,
.s2-pagination span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid #dce5e2;
  border-radius: 50%;
  color: #0b7c59;
  background: #fff;
}

.s2-pagination span {
  border-color: #1ac996;
  color: #fff;
  background: #1ac996;
}

.s2-explore__empty {
  min-height: 260px;
  justify-content: center;
}

@media (max-width: 900px) {
  .s2-explore__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s2-explore__toolbar { align-items: flex-start; flex-direction: column; }
  .s1-hero__visual { min-height: 390px; }
  .s1-hero__media, .s1-hero__media > img { min-height: 390px; }
}

@media (max-width: 640px) {
  .s1-site-header--public { inset-block-start: 8px; }
  .s1-site-header--public .s1-site-header__inner {
    width: calc(100% - 20px);
    padding: 0 0 0 14px;
  }
  .s1-home-page .s1-hero { padding-top: 86px; }
  .s1-hero__visual { min-height: 330px; }
  .s1-hero__media, .s1-hero__media > img { min-height: 330px; }
  .s2-explore { padding-top: 72px; }
  .s2-explore__hero { padding: 44px 0 34px; }
  .s2-explore-search { grid-template-columns: 1fr; }
  .s2-explore-search input { min-height: 52px; }
  .s2-explore__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .s1-hero__slide,
  .s2-explore-card,
  .s1-site-header--public { transition: none; }
}
