.sf-home-page--section-one {
  flex: 1 0 auto;
  min-width: 0;
  padding: 0;
  background: #060d19;
  color: #f8fafc;
}

.sf-home-hero-v2 {
  --sf-hero-accent: var(--swefood-main-color, #ea580c);
  --sf-hero-accent-bright: #ff7a1a;
  --sf-hero-text: #f8fafc;
  --sf-hero-muted: #a8b1c0;
  --sf-hero-border: rgba(148, 163, 184, 0.2);
  --sf-hero-panel: rgba(11, 20, 34, 0.76);
  --sf-hero-panel-solid: #0c1626;
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--sf-hero-text);
  background:
    radial-gradient(circle at 54% 44%, rgba(234, 88, 12, 0.1), transparent 27%),
    radial-gradient(circle at 12% 18%, rgba(35, 61, 96, 0.24), transparent 34%),
    linear-gradient(135deg, #091321 0%, #060d19 56%, #040914 100%);
}

.sf-home-hero-v2,
.sf-home-hero-v2 *,
.sf-home-hero-v2 *::before,
.sf-home-hero-v2 *::after {
  box-sizing: border-box;
}

.sf-home-hero-v2__ambient,
.sf-home-hero-v2__ambient span {
  position: absolute;
  pointer-events: none;
}

.sf-home-hero-v2__ambient {
  z-index: -1;
  inset: 0;
  overflow: hidden;
}

.sf-home-hero-v2__orb {
  border-radius: 50%;
  background: radial-gradient(circle at 35% 28%, #ffb36e 0%, #ff7418 28%, #9a2e00 68%, #190800 100%);
  box-shadow: 0 0 34px rgba(255, 110, 20, 0.22);
  animation: sfHeroOrbFloat 8s ease-in-out infinite;
}

.sf-home-hero-v2__orb--one {
  top: 17%;
  left: 46%;
  width: 42px;
  height: 42px;
}

.sf-home-hero-v2__orb--two {
  right: 7%;
  bottom: 18%;
  width: 16px;
  height: 16px;
  animation-delay: -3.5s;
  filter: saturate(0.6) brightness(0.65);
}

.sf-home-hero-v2__light-ring {
  top: 39%;
  left: 42%;
  width: 54vw;
  height: 180px;
  border: 3px solid rgba(255, 104, 17, 0.58);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 92, 10, 0.62), inset 0 0 18px rgba(255, 92, 10, 0.36);
  opacity: 0.68;
  filter: blur(1px);
  transform: rotate(-13deg);
  animation: sfHeroRingDrift 10s ease-in-out infinite;
}

.sf-home-hero-v2__shooting-star {
  top: 22%;
  left: -90px;
  width: 88px;
  height: 13px;
  z-index: 1;
  opacity: 0;
  background: transparent;
  filter: drop-shadow(0 0 7px #ff7418) drop-shadow(0 0 14px rgba(255, 106, 18, 0.72));
  animation: sfHeroShootingStar 5s linear infinite;
}

.sf-home-hero-v2__shooting-star::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 13px;
  height: 13px;
  content: "";
  clip-path: polygon(50% 0, 61% 36%, 100% 50%, 61% 64%, 50% 100%, 39% 64%, 0 50%, 39% 36%);
  background: #ff8a20;
}

.sf-home-hero-v2__shooting-star::after {
  position: absolute;
  top: 50%;
  right: 10px;
  width: 74px;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 127, 31, 0.72));
  transform: translateY(-50%);
}

.sf-home-hero-v2__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 42fr) minmax(520px, 58fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5rem);
  width: min(1520px, calc(100% - 72px));
  max-width: 100%;
  min-height: clamp(650px, 72vh, 790px);
  margin-inline: auto;
  padding-block: clamp(3.4rem, 5.4vw, 5.8rem);
}

.sf-home-hero-v2__content {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.sf-home-hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  margin: 0 0 clamp(1.7rem, 3vw, 2.6rem);
  padding: 0.72rem 1.15rem;
  border: 1px solid rgba(251, 146, 60, 0.18);
  border-radius: 999px;
  color: #fb923c;
  background: rgba(12, 20, 32, 0.68);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  font-size: 0.94rem;
  font-weight: 720;
  line-height: 1;
  letter-spacing: 0.01em;
}

.sf-home-hero-v2__eyebrow-text {
  display: inline-grid;
  min-width: 0;
  overflow: hidden;
  place-items: center;
}

.sf-home-hero-v2__eyebrow-word,
.sf-home-hero-v2__eyebrow-sizer {
  grid-area: 1 / 1;
}

.sf-home-hero-v2__eyebrow-word {
  transition: opacity 180ms ease, transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.sf-home-hero-v2__eyebrow-word.is-changing {
  opacity: 0;
  transform: translate3d(0, -0.25rem, 0);
}

.sf-home-hero-v2__eyebrow-word.is-entering {
  opacity: 0;
  transform: translate3d(0, 0.25rem, 0);
}

.sf-home-hero-v2__eyebrow-sizer {
  visibility: hidden;
  pointer-events: none;
  white-space: nowrap;
}

.sf-home-hero-v2__eyebrow svg,
.sf-home-hero-v2__button svg,
.sf-home-hero-v2__chips svg,
.sf-home-hero-widget svg,
.sf-home-hero-showcase__controls svg,
.sf-home-hero-product__add svg {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sf-home-hero-v2__heading {
  display: block;
  align-items: center;
  width: 100%;
  max-width: 720px;
}

.sf-home-hero-v2__title {
  display: grid;
  gap: 0;
  min-width: 0;
  margin: 0;
  color: var(--sf-hero-text);
  font: inherit;
  font-size: clamp(4rem, 6.3vw, 6.65rem);
  font-weight: 820;
  line-height: 0.91;
  letter-spacing: -0.062em;
  text-wrap: balance;
}

.sf-home-hero-v2__pizza-feature {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: clamp(-180px, -7vw, -70px);
  display: block;
  width: clamp(480px, 43vw, 720px);
  aspect-ratio: 1537 / 1468;
  border-radius: 50%;
  filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.42)) drop-shadow(0 0 34px rgba(249, 115, 22, 0.18));
  transform: translate3d(0, -54%, 0);
  pointer-events: none;
}

.sf-home-hero-v2__pizza-feature::before {
  position: absolute;
  z-index: -1;
  inset: 11%;
  border-radius: 50%;
  background: rgba(249, 115, 22, 0.12);
  box-shadow: 0 0 58px rgba(249, 115, 22, 0.22);
  content: "";
  filter: blur(22px);
}

.sf-home-hero-v2__pizza-image {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1537 / 1468;
  object-fit: contain;
  transform-origin: 50% 50%;
  will-change: transform;
  animation: sfHeroRealPizzaSpin 30s linear infinite;
  pointer-events: none;
  user-select: none;
}

.sf-home-hero-v2__title span {
  display: block;
}

.sf-home-hero-v2__title-accent {
  color: var(--sf-hero-accent-bright);
  text-shadow: 0 0 42px rgba(255, 105, 18, 0.16);
}

.sf-home-hero-v2__description {
  max-width: 560px;
  margin: clamp(1.35rem, 2.4vw, 2rem) 0 0;
  color: var(--sf-hero-muted);
  font-size: clamp(1.03rem, 1.45vw, 1.3rem);
  line-height: 1.58;
}

.sf-home-hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: clamp(2rem, 3vw, 2.7rem);
}

.sf-home-hero-v2__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 186px;
  min-height: 60px;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 17px;
  color: var(--sf-hero-text);
  font-size: 1.02rem;
  font-weight: 780;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.sf-home-hero-v2__button--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--sf-hero-accent) 0%, #ff8b28 100%);
  box-shadow: 0 16px 36px rgba(234, 88, 12, 0.3), 0 0 0 1px rgba(255, 173, 105, 0.16) inset;
}

.sf-home-hero-v2__button--secondary {
  border-color: var(--sf-hero-border);
  background: rgba(9, 18, 31, 0.68);
  backdrop-filter: blur(12px);
}

.sf-home-hero-v2__button:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.01);
}

.sf-home-hero-v2__button:active {
  transform: translateY(0) scale(0.985);
}

.sf-home-hero-v2__button--primary:hover {
  filter: brightness(1.07);
  box-shadow: 0 20px 44px rgba(234, 88, 12, 0.4), 0 0 0 1px rgba(255, 196, 146, 0.25) inset;
}

.sf-home-hero-v2__button--secondary:hover {
  border-color: rgba(255, 132, 42, 0.48);
  background: rgba(20, 34, 53, 0.82);
}

.sf-home-hero-v2__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.8rem 0 0;
  padding: 0;
  list-style: none;
}

.sf-home-hero-v2__chips li {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  min-height: 42px;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--sf-hero-border);
  border-radius: 999px;
  color: var(--sf-hero-muted);
  background: rgba(9, 18, 31, 0.52);
  font-size: 0.9rem;
  font-weight: 660;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.sf-home-hero-v2__chips li:hover {
  border-color: rgba(251, 146, 60, 0.38);
  color: var(--sf-hero-text);
  transform: translateY(-1px);
}

.sf-home-hero-v2__chips svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--sf-hero-accent-bright);
}

.sf-home-hero-v2__visual {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 650px;
  perspective: 1400px;
}

.sf-home-hero-showcase {
  position: absolute;
  inset: 0;
  touch-action: pan-y;
}

.sf-home-hero-showcase__float {
  position: absolute;
  z-index: 3;
  top: 47%;
  left: 47%;
  width: clamp(320px, 27vw, 420px);
  aspect-ratio: 0.79 / 1;
  transform: translate(-50%, -50%);
  animation: sfHeroCardFloat 6.5s ease-in-out infinite;
}

.sf-home-hero-showcase__card {
  --sf-hero-tilt-x: 0deg;
  --sf-hero-tilt-y: 0deg;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 120, 35, 0.48);
  border-radius: clamp(1.55rem, 2.2vw, 2rem);
  background: linear-gradient(155deg, rgba(29, 35, 51, 0.96), rgba(8, 14, 24, 0.98));
  box-shadow:
    28px 36px 70px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(234, 88, 12, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  transform: rotateX(calc(1deg + var(--sf-hero-tilt-y))) rotateY(calc(-5deg + var(--sf-hero-tilt-x))) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
  will-change: transform;
}

.sf-home-hero-showcase__shine {
  position: absolute;
  z-index: 4;
  top: -20%;
  left: -45%;
  width: 65%;
  height: 145%;
  pointer-events: none;
  background: linear-gradient(95deg, transparent, rgba(255, 255, 255, 0.075), transparent);
  transform: rotate(12deg);
  animation: sfHeroShine 8s ease-in-out infinite;
}

.sf-home-hero-showcase__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.sf-home-hero-product {
  display: grid;
  width: 100%;
  height: 100%;
  min-width: 0;
  flex: 0 0 100%;
  grid-template-rows: minmax(0, 68fr) minmax(190px, 32fr);
  opacity: 0.38;
  transform: scale(0.97) translateY(7px);
	transition: opacity 460ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-home-hero-product.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.sf-home-hero-product__media {
  position: relative;
  display: block;
  min-height: 0;
  overflow: hidden;
  color: inherit;
  background:
    radial-gradient(circle at 54% 48%, rgba(255, 121, 31, 0.12), transparent 42%),
    #101a2a;
  text-decoration: none;
}

.sf-home-hero-product__media::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 32%;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, transparent, rgba(5, 9, 16, 0.62));
}

.sf-home-hero-product__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1), filter 300ms ease;
}

.sf-home-hero-product.is-active .sf-home-hero-product__image {
  transform: scale(1.025);
}

.sf-home-hero-product__media:hover .sf-home-hero-product__image {
  transform: scale(1.055);
  filter: saturate(1.05);
}

.sf-home-hero-product__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: rgba(251, 146, 60, 0.62);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 116, 24, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.035), transparent 52%);
}

.sf-home-hero-product__placeholder svg {
  width: clamp(4.5rem, 8vw, 7rem);
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sf-home-hero-product__rating,
.sf-home-hero-product__badge {
  position: absolute;
  z-index: 2;
  top: 1rem;
  left: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  color: #fff;
  background: rgba(5, 10, 18, 0.66);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  text-decoration: none;
}

.sf-home-hero-product__rating svg {
  width: 1rem;
  height: 1rem;
  fill: #fb923c;
  stroke: #fb923c;
}

.sf-home-hero-product__rating small {
  color: #b9c1cd;
}

.sf-home-hero-product__badge {
  border-color: rgba(251, 146, 60, 0.3);
  color: #fdba74;
  font-weight: 760;
}

.sf-home-hero-product__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  min-width: 0;
  padding: clamp(1.2rem, 2vw, 1.65rem);
  border-top: 1px solid rgba(255, 255, 255, 0.065);
  background: linear-gradient(145deg, rgba(24, 28, 40, 0.98), rgba(10, 15, 25, 0.98));
}

.sf-home-hero-product__copy {
  min-width: 0;
}

.sf-home-hero-product__copy h2 {
  margin: 0;
  color: #fff;
  font: inherit;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  font-weight: 790;
  line-height: 1.16;
  letter-spacing: -0.025em;
}

.sf-home-hero-product__copy h2 a {
  color: inherit;
  text-decoration: none;
}

.sf-home-hero-product__copy p {
  display: -webkit-box;
  max-width: 290px;
  overflow: hidden;
  margin: 0.48rem 0 0;
  color: #9da7b8;
  font-size: 0.83rem;
  line-height: 1.42;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.sf-home-hero-product__purchase {
  display: grid;
  justify-items: end;
  flex: 0 0 auto;
  gap: 0.75rem;
}

.sf-home-hero-product__price {
  color: #fff;
  font-size: clamp(1.05rem, 1.6vw, 1.42rem);
  font-weight: 820;
  line-height: 1.15;
  white-space: nowrap;
}

.sf-home-hero-product__price del {
  color: #8995a8;
  font-size: 0.7em;
  font-weight: 550;
}

.sf-home-hero-product__price ins {
  color: #fb923c;
  text-decoration: none;
}

.sf-home-hero-product__quantity {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(3, 8, 15, 0.42);
}

.sf-home-hero-product__quantity button,
.sf-home-hero-product__quantity output,
.sf-home-hero-product__add {
  display: inline-grid;
  width: 38px;
  height: 38px;
  min-width: 38px;
  min-height: 38px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font: inherit;
  font-size: 1.15rem;
  line-height: 1;
  text-decoration: none;
}

.sf-home-hero-product__quantity output {
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 760;
}

.sf-home-hero-product__quantity button {
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.sf-home-hero-product__quantity button:hover:not(:disabled) {
  color: #fb923c;
  background: rgba(255, 255, 255, 0.055);
}

.sf-home-hero-product__quantity button:disabled {
  color: #657084;
  cursor: default;
}

.sf-home-hero-product__add {
  width: 46px;
  height: 46px;
  min-width: 46px;
  min-height: 46px;
  color: #fff;
  background: linear-gradient(135deg, var(--sf-hero-accent), #ff8b28);
  box-shadow: 0 10px 24px rgba(234, 88, 12, 0.34);
  font-size: 1.55rem;
  font-weight: 500;
  transition: transform 170ms ease, box-shadow 170ms ease, filter 170ms ease;
}

.sf-home-hero-product__add:hover {
  color: #fff;
  filter: brightness(1.08);
  box-shadow: 0 13px 30px rgba(234, 88, 12, 0.44);
  transform: translateY(-2px) scale(1.04);
}

.sf-home-hero-product__add svg {
  width: 1.2rem;
  height: 1.2rem;
}

.sf-home-hero-showcase__platform {
  position: absolute;
  z-index: 1;
  left: 47%;
  bottom: 4%;
  width: min(68%, 560px);
  height: 76px;
  border: 1px solid rgba(255, 112, 23, 0.3);
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(27, 32, 46, 0.84), rgba(3, 8, 15, 0.96));
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45), 0 8px 24px rgba(234, 88, 12, 0.18), inset 0 2px 0 rgba(255, 137, 53, 0.25);
  transform: translateX(-50%);
}

.sf-home-hero-showcase__platform span {
  position: absolute;
  inset: 11px 8%;
  border: 2px solid rgba(255, 105, 18, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 91, 9, 0.62), inset 0 0 18px rgba(255, 91, 9, 0.25);
}

.sf-home-hero-widget {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.78rem;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 18px;
  color: #f8fafc;
  background: rgba(12, 21, 36, 0.76);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(16px);
  animation: sfHeroWidgetFloat 6s ease-in-out infinite;
}

.sf-home-hero-widget > span:last-child {
  display: grid;
  gap: 0.18rem;
}

.sf-home-hero-widget strong {
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.15;
}

.sf-home-hero-widget small {
  color: #9ca7b8;
  font-size: 0.72rem;
  line-height: 1.2;
}

.sf-home-hero-widget__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #ff841f;
  background: rgba(255, 108, 17, 0.1);
}

.sf-home-hero-widget--status {
  top: 7%;
  right: 0;
  min-width: 170px;
}

.sf-home-hero-widget--status strong {
  color: #4ade80;
}

.sf-home-hero-widget--status.is-closed strong {
  color: #fca5a5;
}

.sf-home-hero-widget--services {
  top: 29%;
  right: -1%;
  gap: 0.35rem;
  padding: 0.38rem;
  animation-delay: -2s;
}

.sf-home-hero-widget--services span {
  display: inline-flex;
  min-height: 38px;
  padding: 0.66rem 0.9rem;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  color: #dce3ed;
  font-size: 0.82rem;
  font-weight: 720;
}

.sf-home-hero-widget--services .is-accent {
  color: #fff;
  background: linear-gradient(135deg, var(--sf-hero-accent), #ff8723);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.24);
}

.sf-home-hero-widget--service {
  right: 0;
  bottom: 18%;
  animation-delay: -4s;
}

.sf-home-hero-showcase__controls {
  position: absolute;
  z-index: 7;
  right: 1%;
  bottom: 2.5%;
  display: flex;
  align-items: center;
  gap: 0.38rem;
  min-height: 42px;
  padding: 0.34rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(5, 11, 20, 0.66);
  backdrop-filter: blur(14px);
}

.sf-home-hero-showcase__arrow,
.sf-home-hero-showcase__autoplay {
  display: grid;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  margin: 0;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #cbd5e1;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.sf-home-hero-showcase__arrow:hover,
.sf-home-hero-showcase__autoplay:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
}

.sf-home-hero-showcase__arrow svg {
  width: 1rem;
  height: 1rem;
}

.sf-home-hero-showcase__dots {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  padding-inline: 0.15rem;
  max-width: 190px;
  overflow-x: auto;
  scrollbar-width: none;
}

.sf-home-hero-showcase__dots::-webkit-scrollbar {
  display: none;
}

.sf-home-hero-showcase__dot {
  width: 7px;
  min-width: 7px;
  height: 7px;
  min-height: 7px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: none;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.sf-home-hero-showcase__dot.is-active {
  width: 21px;
  background: var(--sf-hero-accent-bright);
}

.sf-home-hero-showcase__autoplay {
  position: relative;
}

.sf-home-hero-showcase__autoplay span {
  display: block;
  width: 10px;
  height: 12px;
  border-right: 3px solid currentColor;
  border-left: 3px solid currentColor;
}

.sf-home-hero-showcase__autoplay.is-paused span {
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 6px solid transparent;
  border-right: 0;
  border-bottom: 6px solid transparent;
  border-left: 9px solid currentColor;
}

.sf-home-hero-v2 a:focus-visible,
.sf-home-hero-v2 button:focus-visible,
.sf-home-hero-showcase:focus-visible {
  outline: 3px solid rgba(255, 150, 70, 0.94);
  outline-offset: 3px;
}

@media (min-width: 1221px) {
  .sf-home-hero-v2__visual {
    --sf-hero-desktop-showcase-shift: clamp(0.5rem, calc((100vw - 1220px) * 0.06), 3rem);
  }

  .sf-home-hero-showcase__float,
  .sf-home-hero-showcase__platform {
    left: calc(47% + var(--sf-hero-desktop-showcase-shift));
  }
}

body.sf-theme-light .sf-home-page--section-one {
  background: #f5eee6;
  color: #111827;
}

body.sf-theme-light .sf-home-hero-v2 {
  --sf-hero-text: #111827;
  --sf-hero-muted: #5f6b7c;
  --sf-hero-border: rgba(100, 116, 139, 0.2);
  --sf-hero-panel: rgba(255, 252, 248, 0.78);
  --sf-hero-panel-solid: #fffaf5;
  background:
    radial-gradient(circle at 56% 42%, rgba(249, 115, 22, 0.12), transparent 28%),
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.95), transparent 35%),
    linear-gradient(135deg, #fffaf5 0%, #f5eee6 58%, #eee2d5 100%);
}

body.sf-theme-light .sf-home-hero-v2__eyebrow,
body.sf-theme-light .sf-home-hero-v2__chips li,
body.sf-theme-light .sf-home-hero-v2__button--secondary,
body.sf-theme-light .sf-home-hero-widget,
body.sf-theme-light .sf-home-hero-showcase__controls {
  background: rgba(255, 252, 248, 0.76);
  box-shadow: 0 16px 34px rgba(73, 50, 32, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

body.sf-theme-light .sf-home-hero-v2__pizza-feature {
  filter: drop-shadow(0 26px 34px rgba(92, 55, 26, 0.22)) drop-shadow(0 0 28px rgba(234, 88, 12, 0.14));
}

body.sf-theme-light .sf-home-hero-v2__button--secondary,
body.sf-theme-light .sf-home-hero-v2__chips li,
body.sf-theme-light .sf-home-hero-widget,
body.sf-theme-light .sf-home-hero-showcase__arrow,
body.sf-theme-light .sf-home-hero-showcase__autoplay {
  color: #1f2937;
}

body.sf-theme-light .sf-home-hero-widget small {
  color: #667085;
}

body.sf-theme-light .sf-home-hero-showcase__card {
  background: linear-gradient(155deg, rgba(255, 252, 248, 0.98), rgba(241, 231, 220, 0.98));
  box-shadow: 28px 36px 70px rgba(74, 49, 30, 0.2), 0 0 44px rgba(234, 88, 12, 0.1), inset 0 1px 0 #fff;
}

body.sf-theme-light .sf-home-hero-product__media {
  background: radial-gradient(circle at 54% 48%, rgba(249, 115, 22, 0.14), transparent 42%), #eadfd4;
}

body.sf-theme-light .sf-home-hero-product__body {
  border-top-color: rgba(100, 116, 139, 0.12);
  background: linear-gradient(145deg, #fffaf5, #f0e6dc);
}

body.sf-theme-light .sf-home-hero-product__copy h2,
body.sf-theme-light .sf-home-hero-product__price {
  color: #111827;
}

body.sf-theme-light .sf-home-hero-product__copy p {
  color: #667085;
}

body.sf-theme-light .sf-home-hero-product__quantity {
  border-color: rgba(100, 116, 139, 0.2);
  background: rgba(255, 255, 255, 0.62);
}

body.sf-theme-light .sf-home-hero-product__quantity button,
body.sf-theme-light .sf-home-hero-product__quantity output {
  color: #111827;
}

body.sf-theme-light .sf-home-hero-showcase__arrow:hover,
body.sf-theme-light .sf-home-hero-showcase__autoplay:hover {
  color: #c2410c;
  background: rgba(249, 115, 22, 0.08);
}

@keyframes sfHeroCardFloat {
  0%, 100% { transform: translate(-50%, calc(-50% - 2px)); }
  50% { transform: translate(-50%, calc(-50% + 4px)); }
}

@keyframes sfHeroWidgetFloat {
  0%, 100% { transform: translateY(-2px); }
  50% { transform: translateY(3px); }
}

@keyframes sfHeroOrbFloat {
  0%, 100% { transform: translate3d(0, -3px, 0); }
  50% { transform: translate3d(4px, 5px, 0); }
}

@keyframes sfHeroRingDrift {
  0%, 100% { opacity: 0.54; transform: rotate(-13deg) scale(0.98); }
  50% { opacity: 0.72; transform: rotate(-11deg) scale(1.02); }
}

@keyframes sfHeroShine {
  0%, 20% { left: -65%; opacity: 0; }
  42% { opacity: 1; }
  62%, 100% { left: 120%; opacity: 0; }
}

@keyframes sfHeroShootingStar {
  0% { opacity: 0; transform: translate3d(0, 0, 0) rotate(18deg) scale(0.75); }
  2% { opacity: 1; }
  18% { opacity: 1; transform: translate3d(calc(100vw + 180px), 220px, 0) rotate(168deg) scale(1); }
  20%, 100% { opacity: 0; transform: translate3d(calc(100vw + 180px), 220px, 0) rotate(168deg) scale(1); }
}

@keyframes sfHeroRealPizzaSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 1220px) {
  .sf-home-hero-v2__inner {
    grid-template-columns: minmax(0, 41fr) minmax(480px, 59fr);
    width: min(1520px, calc(100% - 48px));
    gap: 1.5rem;
  }

  .sf-home-hero-showcase__float {
    left: 44%;
    width: clamp(310px, 30vw, 400px);
  }

  .sf-home-hero-showcase__platform {
    left: 44%;
  }

  .sf-home-hero-widget--status,
  .sf-home-hero-widget--services,
  .sf-home-hero-widget--service,
  .sf-home-hero-showcase__controls {
    right: 0;
  }
}

@media (min-width: 981px) and (max-height: 850px) {
  .sf-home-hero-v2__inner {
    min-height: 570px;
    padding-block: 2.1rem;
  }

  .sf-home-hero-v2__eyebrow {
    margin-bottom: 1.2rem;
    padding-block: 0.62rem;
  }

  .sf-home-hero-v2__title {
    font-size: clamp(3.5rem, 5vw, 4.55rem);
  }

  .sf-home-hero-v2__description {
    margin-top: 1rem;
    font-size: 1.02rem;
  }

  .sf-home-hero-v2__actions {
    margin-top: 1.25rem;
  }

  .sf-home-hero-v2__chips {
    margin-top: 0.9rem;
  }

  .sf-home-hero-v2__visual {
    min-height: 570px;
  }

  .sf-home-hero-showcase__float {
    width: clamp(290px, 23vw, 345px);
  }

  .sf-home-hero-showcase__platform {
    bottom: 15%;
  }

  .sf-home-hero-widget--status {
    top: 4%;
  }

  .sf-home-hero-widget--service {
    bottom: 18%;
  }

  .sf-home-hero-product__body {
    display: grid;
    align-content: center;
    gap: 0.65rem;
    padding: 1rem;
  }

  .sf-home-hero-product__copy p {
    margin-top: 0.3rem;
    -webkit-line-clamp: 1;
  }

  .sf-home-hero-product__purchase {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.45rem;
  }
}

@media (max-width: 980px) {
  .sf-home-hero-v2__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
    width: min(760px, calc(100% - 48px));
    min-height: 0;
    padding-block: 3.4rem 4.5rem;
  }

  .sf-home-hero-v2__content {
    max-width: 680px;
  }

  .sf-home-hero-v2__title {
    font-size: clamp(3.8rem, 10vw, 6rem);
  }

  .sf-home-hero-v2__heading {
    max-width: 680px;
  }

  .sf-home-hero-v2__pizza-feature {
    top: clamp(150px, 22vw, 210px);
    right: clamp(-200px, -20vw, -110px);
    width: min(68vw, 520px);
    transform: translate3d(0, 0, 0);
  }

  .sf-home-hero-v2__heading {
    min-height: clamp(250px, 42vw, 330px);
  }

  .sf-home-hero-v2__title {
    position: relative;
    z-index: 2;
    max-width: 60%;
  }

  .sf-home-hero-v2__description {
    max-width: 48%;
  }

  .sf-home-hero-v2__actions {
    max-width: 410px;
  }

  .sf-home-hero-v2__visual {
    min-height: 650px;
  }

  .sf-home-hero-showcase__float {
    left: 45%;
    width: min(420px, 62vw);
  }

  .sf-home-hero-showcase__platform {
    left: 45%;
  }

  .sf-home-hero-v2__orb--one {
    top: 45%;
    left: 8%;
  }

  .sf-home-hero-v2__light-ring {
    top: 66%;
    left: 3%;
    width: 94vw;
  }
}

@media (max-width: 680px) {
  .sf-home-hero-v2__inner {
    width: calc(100% - 32px);
    padding-block: 2.5rem 3.5rem;
  }

  .sf-home-hero-v2__eyebrow {
    margin-bottom: 1.6rem;
    font-size: 0.82rem;
  }

  .sf-home-hero-v2__title {
    font-size: clamp(2.85rem, 14vw, 4.7rem);
  }

  .sf-home-hero-v2__heading {
    min-height: clamp(220px, 70vw, 310px);
  }

  .sf-home-hero-v2__pizza-feature {
    top: clamp(112px, 31vw, 150px);
    right: -42vw;
    width: min(96vw, 430px);
  }

  .sf-home-hero-v2__title {
    max-width: 58%;
  }

  .sf-home-hero-v2__description {
    max-width: 55%;
    margin-top: 1.15rem;
    font-size: 1rem;
  }

  .sf-home-hero-v2__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: none;
    gap: 0.72rem;
    margin-top: 1.65rem;
  }

  .sf-home-hero-v2__button {
    min-width: 0;
    min-height: 54px;
    padding-inline: 0.85rem;
    border-radius: 15px;
    font-size: 0.91rem;
  }

  .sf-home-hero-v2__chips {
    gap: 0.5rem;
    margin-top: 1.2rem;
  }

  .sf-home-hero-v2__chips li {
    min-height: 38px;
    padding: 0.52rem 0.7rem;
    font-size: 0.78rem;
  }

  .sf-home-hero-v2__visual {
    min-height: 565px;
  }

  .sf-home-hero-showcase__float {
    top: 47%;
    left: 50%;
    width: min(350px, 82vw);
  }

  .sf-home-hero-showcase__card {
    border-radius: 1.45rem;
    transform: rotateX(calc(0.5deg + var(--sf-hero-tilt-y))) rotateY(calc(-2deg + var(--sf-hero-tilt-x))) rotateZ(-0.5deg);
  }

  .sf-home-hero-showcase__platform {
    left: 50%;
    bottom: 1%;
    width: 92%;
    height: 58px;
  }

  .sf-home-hero-widget--status {
    top: 0;
    right: 0;
    min-width: 0;
  }

  .sf-home-hero-widget--status small,
  .sf-home-hero-widget--service small {
    display: none;
  }

  .sf-home-hero-widget--services {
    top: 16%;
    right: auto;
    left: 0;
  }

  .sf-home-hero-widget--service {
    right: auto;
    bottom: 3%;
    left: 0;
  }

  .sf-home-hero-widget {
    padding: 0.58rem 0.7rem;
    border-radius: 14px;
  }

  .sf-home-hero-widget__icon {
    width: 32px;
    height: 32px;
  }

  .sf-home-hero-showcase__controls {
    right: 0;
    bottom: 3%;
  }

  .sf-home-hero-product__body {
    padding: 1.05rem;
  }

  .sf-home-hero-product__copy p {
    max-width: 210px;
    font-size: 0.76rem;
  }

  .sf-home-hero-product__quantity button,
  .sf-home-hero-product__quantity output {
    width: 34px;
    height: 34px;
    min-width: 34px;
    min-height: 34px;
  }

  .sf-home-hero-product__add {
    width: 42px;
    height: 42px;
    min-width: 42px;
    min-height: 42px;
  }
}

@media (max-width: 430px) {
  .sf-home-hero-v2__inner {
    width: calc(100% - 24px);
  }

  .sf-home-hero-v2__pizza-feature {
    right: -44vw;
    width: 98vw;
  }

  .sf-home-hero-v2__visual {
    min-height: 500px;
  }

  .sf-home-hero-showcase__float {
    width: min(310px, 84vw);
  }

  .sf-home-hero-product {
    grid-template-rows: minmax(0, 65fr) minmax(170px, 35fr);
  }

  .sf-home-hero-product__body {
    align-items: flex-start;
    gap: 0.7rem;
  }

  .sf-home-hero-product__copy p {
    max-width: 165px;
  }

  .sf-home-hero-product__purchase {
    gap: 0.55rem;
  }

  .sf-home-hero-product__quantity button,
  .sf-home-hero-product__quantity output {
    width: 30px;
    height: 32px;
    min-width: 30px;
    min-height: 32px;
  }

  .sf-home-hero-widget--services {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sf-home-hero-v2__orb,
  .sf-home-hero-v2__light-ring,
  .sf-home-hero-v2__shooting-star,
  .sf-home-hero-showcase__float,
  .sf-home-hero-showcase__shine,
  .sf-home-hero-widget,
  .sf-home-hero-v2__pizza-image,
  .sf-home-hero-v2__eyebrow-word {
    animation: none !important;
    transition: none !important;
  }

  .sf-home-hero-showcase__track,
  .sf-home-hero-product,
  .sf-home-hero-showcase__card,
  .sf-home-hero-v2__button,
  .sf-home-hero-product__image,
  .sf-home-hero-product__add {
    scroll-behavior: auto;
    transition-duration: 0.01ms !important;
  }
}
