:root {
  --sf-bg: #131313;
  --sf-surface-low: #1c1b1b;
  --sf-surface-high: #2a2a2a;
  --sf-text: #e5e2e1;
  --sf-text-muted: #b1aaaa;
  --sf-gold-1: #e8c25d;
  --sf-gold-2: #917311;
  --sf-accent: #5d04d2;
  --sf-outline: rgba(74, 68, 85, 0.28);
}

body {
  background: var(--sf-bg);
  color: var(--sf-text);
  font-family: "Lexend", system-ui, -apple-system, sans-serif;
}

.sf-shell {
  width: min(1280px, 92vw);
  margin: 0 auto;
}

.sf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-decoration: none;
  padding: 0.92rem 1.65rem;
  border-radius: 4px;
  transition: all .22s ease;
}

.sf-btn-primary {
  color: #241a00;
  background: linear-gradient(135deg, var(--sf-gold-1) 0%, var(--sf-gold-2) 100%);
  box-shadow: 0 14px 30px rgba(232, 194, 93, .2);
}

.sf-btn-primary:hover {
  transform: translateY(-2px);
}

.sf-btn-ghost {
  color: var(--sf-text);
  border: 1px solid rgba(229, 226, 225, .28);
  background: transparent;
}

.sf-btn-ghost:hover {
  background: rgba(229, 226, 225, .08);
}

.sf-header {
  position: sticky;
  top: 0;
  z-index: 55;
  backdrop-filter: blur(16px);
  background: rgba(19, 19, 19, .68);
  border-bottom: 1px solid rgba(74, 68, 85, .2);
}

.sf-header-inner {
  min-height: 88px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 28px;
}

.sf-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--sf-gold-1);
  line-height: 1;
}

.sf-brand:hover,
.sf-brand:hover .sf-brand-title {
  color: var(--sf-gold-1);
  opacity: .92;
}

.sf-brand--logo {
  padding: 4px 0;
}

.sf-brand-logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.sf-brand-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--sf-gold-1);
  white-space: nowrap;
}

.sf-brand--with-title .sf-brand-logo-img {
  height: 38px;
}

.sf-nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-nav-list a {
  color: rgba(229, 226, 225, .75);
  text-decoration: none;
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sf-nav-list a:hover {
  color: var(--sf-gold-1);
}

.sf-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: rgba(229, 226, 225, .82);
  background: transparent;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.sf-icon-btn:hover {
  color: var(--sf-gold-1);
  background: rgba(229, 226, 225, .06);
  border-color: rgba(232, 194, 93, .35);
}

.sf-icon {
  display: block;
}

.sf-cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--sf-gold-1);
  color: #131313;
  font-family: "Space Grotesk", sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--sf-bg);
}

.sf-cart-count.is-visible {
  display: inline-flex;
}

.sf-lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sf-lang-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  border: 1px solid var(--sf-outline);
  color: rgba(229, 226, 225, .75);
  text-decoration: none;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 0 8px;
}

.sf-lang-pill.is-active,
.sf-lang-pill:hover {
  color: var(--sf-gold-1);
  border-color: rgba(232, 194, 93, .6);
}

.sf-hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 18%, rgba(232, 194, 93, .14) 0, transparent 30%),
    radial-gradient(circle at 90% 28%, rgba(93, 4, 210, .18) 0, transparent 38%),
    linear-gradient(180deg, rgba(16, 16, 16, .92), rgba(19, 19, 19, .98));
}

.sf-hero-media,
.sf-hero-bg-image,
.sf-hero-bg-video,
.sf-hero-overlay {
  position: absolute;
  inset: 0;
}

.sf-hero-media {
  z-index: -3;
}

.sf-hero-bg-image {
  z-index: -3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.sf-hero-bg-video {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sf-hero-overlay {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .35), rgba(0, 0, 0, .55)),
    linear-gradient(90deg, rgba(8, 8, 8, .82) 0, rgba(8, 8, 8, .46) 42%, rgba(8, 8, 8, .62) 100%);
}

.sf-hero--has-video .sf-hero-bg-image {
  opacity: 0;
}

.sf-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: clamp(112px, 14vw, 156px) 0 clamp(72px, 8vw, 104px);
}

.sf-hero-content {
  max-width: 620px;
}

.sf-hero-title {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.045em;
  line-height: .9;
  font-size: clamp(3rem, 7vw, 6.4rem);
  color: var(--sf-gold-1);
  text-wrap: balance;
  text-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.sf-hero-description {
  margin: 22px 0 0;
  max-width: 520px;
  color: rgba(229, 226, 225, .78);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.wp-block-sigurd-header,
.wp-block-sigurd-hero {
  margin: 0;
}

.sf-carousel {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(232, 194, 93, .08) 0, transparent 28%),
    linear-gradient(180deg, #151414 0%, #111111 100%);
}

.sf-carousel-viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  border-radius: 28px;
  outline: none;
}

.sf-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.sf-carousel-track {
  display: flex;
  align-items: stretch;
}

.sf-slide {
  position: relative;
  flex: 0 0 100%;
  min-height: 70vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  background:
    linear-gradient(180deg, rgba(33, 30, 30, .96), rgba(19, 19, 19, .98)),
    var(--sf-surface-low);
  scroll-snap-align: start;
}

.sf-slide:nth-child(even) {
  grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
}

.sf-slide:nth-child(even) .sf-slide-media {
  order: 2;
}

.sf-slide:nth-child(even) .sf-slide-copy {
  order: 1;
}

.sf-slide-media {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .08), rgba(0, 0, 0, .12)),
    #242020;
}

.sf-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 70vh;
  object-fit: cover;
}

.sf-slide-image--placeholder {
  background:
    radial-gradient(circle at 30% 20%, rgba(232, 194, 93, .22) 0, transparent 32%),
    linear-gradient(135deg, rgba(232, 194, 93, .18), rgba(145, 115, 17, .08) 52%, rgba(19, 19, 19, .92) 100%);
}

.sf-slide-copy {
  position: relative;
  display: flex;
  align-items: center;
  padding: clamp(36px, 5vw, 68px);
}

.sf-slide-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .04), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, .02), transparent 55%);
  pointer-events: none;
}

.sf-slide-copy-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
}

.sf-slide-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.3rem);
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.sf-slide-subtitle {
  margin: 16px 0 0;
  color: rgba(229, 226, 225, .62);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.sf-slide-content-title {
  margin: 0 0 18px;
  color: var(--sf-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sf-slide-description {
  margin-top: 28px;
  max-width: 620px;
  color: rgba(229, 226, 225, .78);
  line-height: 1.7;
}

.sf-slide-description > :first-child {
  margin-top: 0;
}

.sf-slide-description > :last-child {
  margin-bottom: 0;
}

.sf-slide-description p,
.sf-slide-description li {
  color: rgba(229, 226, 225, .78);
}

.sf-slide-description a {
  color: var(--sf-gold-1);
}

.sf-carousel-nav {
  pointer-events: none;
}

.sf-carousel-button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 93, .52);
  background: rgba(19, 19, 19, .55);
  color: var(--sf-gold-1);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
  backdrop-filter: blur(12px);
}

.sf-carousel-button:hover,
.sf-carousel-button:focus-visible {
  background: rgba(232, 194, 93, .14);
  border-color: rgba(232, 194, 93, .9);
}

.sf-carousel-button:focus-visible {
  outline: 2px solid rgba(232, 194, 93, .35);
  outline-offset: 2px;
}

.sf-carousel-button-prev {
  left: 18px;
}

.sf-carousel-button-next {
  right: 18px;
}

.sf-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px 0 0;
}

.sf-carousel-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid rgba(232, 194, 93, .66);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.sf-carousel-dot.is-active,
.sf-carousel-dot:hover,
.sf-carousel-dot:focus-visible {
  background: var(--sf-gold-1);
  border-color: var(--sf-gold-1);
  transform: scale(1.08);
}

.sf-carousel-dot:focus-visible {
  outline: 2px solid rgba(232, 194, 93, .35);
  outline-offset: 3px;
}

.sf-cards {
  padding: clamp(72px, 8vw, 112px) 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 194, 93, .07) 0, transparent 30%),
    linear-gradient(180deg, #121111 0%, #171515 100%);
}

.sf-cards-head {
  margin-bottom: 36px;
}

.sf-cards-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.8vw, 3.7rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.04em;
  text-transform: uppercase;
  text-wrap: balance;
}

.sf-cards-stage {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sf-cards-nav {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 93, .56);
  background: transparent;
  color: var(--sf-gold-1);
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, opacity .18s ease;
}

.sf-cards-nav svg {
  width: 20px;
  height: 20px;
}

.sf-cards-nav:hover,
.sf-cards-nav:focus-visible {
  background: var(--sf-gold-1);
  color: #241a00;
  border-color: var(--sf-gold-1);
}

.sf-cards-nav:focus-visible {
  outline: 2px solid rgba(232, 194, 93, .35);
  outline-offset: 2px;
}

.sf-cards-nav[disabled] {
  opacity: .35;
  pointer-events: none;
}

.sf-cards-viewport {
  flex: 1 1 auto;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
}

.sf-cards-viewport::-webkit-scrollbar {
  display: none;
}

.sf-cards-track {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding-block: 4px;
}

.sf-card {
  position: relative;
  flex: 0 0 calc(33.333% - 16px);
  min-width: 280px;
  padding: 28px 28px 32px;
  border: 1px solid rgba(229, 226, 225, .1);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .04), rgba(232, 194, 93, 0) 26%),
    linear-gradient(180deg, rgba(29, 27, 27, .96), rgba(22, 21, 21, .98));
  box-shadow: 0 20px 46px rgba(0, 0, 0, .18);
  scroll-snap-align: start;
}

.sf-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.sf-card-avatar {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(232, 194, 93, .08);
}

.sf-card-avatar-img,
.sf-card-avatar-placeholder {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.sf-card-avatar-img {
  object-fit: cover;
}

.sf-card-avatar-placeholder {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 233, 176, .95) 0, rgba(232, 194, 93, .92) 28%, rgba(145, 115, 17, .88) 100%);
  color: #2a1d00;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sf-card-meta {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.sf-card-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}

.sf-card-task {
  margin: 4px 0 0;
  color: rgba(229, 226, 225, .58);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sf-card-content {
  color: rgba(229, 226, 225, .78);
  font-family: "Lexend", system-ui, sans-serif;
  font-size: .95rem;
  line-height: 1.7;
}

.sf-card-content > :first-child {
  margin-top: 0;
}

.sf-card-content > :last-child {
  margin-bottom: 0;
}

.sf-card-content p {
  margin: 0 0 12px;
}

.sf-footer {
  margin-top: 72px;
  border-top: 1px solid rgba(74, 68, 85, .24);
  background: var(--sf-surface-low);
}

.sf-footer-inner {
  padding: 44px 0 30px;
}

.sf-footer-brand {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--sf-gold-1);
}

.sf-footer-description {
  margin: 14px 0 18px;
  max-width: 760px;
  color: rgba(229, 226, 225, .62);
  line-height: 1.7;
}

.sf-footer-menu {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 0;
  padding: 0;
}

.sf-footer-menu a {
  text-decoration: none;
  color: rgba(229, 226, 225, .72);
  font-size: .82rem;
  letter-spacing: .04em;
}

.sf-footer-menu a:hover {
  color: var(--sf-gold-1);
}

.sf-footer-bottom {
  border-top: 1px solid rgba(74, 68, 85, .2);
  padding: 16px 0;
  color: rgba(229, 226, 225, .42);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sf-editor-preview {
  border: 1px dashed rgba(74, 68, 85, .45);
  padding: 12px;
  border-radius: 4px;
}

.sf-stitch-home {
  background: var(--sf-bg);
}

.sf-stitch-hero .wp-block-cover__inner-container {
  width: min(1200px, 92vw);
}

.sf-stitch-hero-inner {
  text-align: center;
  padding: 32px 0;
}

.sf-stitch-title {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.03em;
  line-height: .92;
  font-weight: 900;
  font-size: clamp(2.4rem, 7vw, 6rem);
}

.sf-stitch-title span {
  color: var(--sf-gold-1);
  font-style: italic;
}

.sf-stitch-subtitle {
  margin: 0 auto;
  max-width: 760px;
  color: rgba(229, 226, 225, .86);
  line-height: 1.7;
  font-size: clamp(1rem, 1.8vw, 1.15rem);
}

.sf-stitch-hero-buttons {
  margin-top: 24px;
}

.sf-stitch-section {
  padding: clamp(56px, 9vw, 120px) 0;
}

.sf-stitch-section-dark {
  background: var(--sf-bg);
}

.sf-stitch-section-light {
  background: var(--sf-surface-low);
}

.sf-stitch-split {
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.sf-stitch-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  min-height: clamp(320px, 48vw, 640px);
}

.sf-stitch-kicker {
  margin: 0 0 10px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--sf-gold-1);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 700;
  font-size: .72rem;
}

.sf-stitch-section-title {
  margin: 0 0 16px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: 900;
}

.sf-stitch-section-text {
  color: rgba(229, 226, 225, .66);
  line-height: 1.72;
  margin-bottom: 22px;
}

.sf-stitch-progress {
  background: #232222;
  padding: clamp(56px, 9vw, 120px) 0;
}

.sf-stitch-progress-grid {
  gap: clamp(26px, 5vw, 68px);
}

.sf-stitch-progress h3 {
  margin: 0 0 6px;
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

.sf-stitch-progress p {
  color: rgba(229, 226, 225, .6);
  margin: 0 0 8px;
}

.sf-stitch-bar {
  border: 0;
  height: 3px;
  background: rgba(93, 4, 210, .45);
  margin: 0 0 18px;
  position: relative;
  overflow: hidden;
}

.sf-stitch-bar::after {
  content: "";
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--sf-gold-1), var(--sf-gold-2));
}

.sf-stitch-bar-100::after {
  width: 100%;
}

.sf-stitch-bar-45::after {
  width: 45%;
}

.sf-stitch-bar-10::after {
  width: 10%;
}

.sf-stitch-cta {
  background: #bf773c;
  padding: clamp(52px, 8vw, 110px) min(8vw, 48px);
}

.sf-stitch-cta .sf-stitch-kicker,
.sf-stitch-cta .sf-stitch-section-title,
.sf-stitch-cta .sf-stitch-section-text {
  color: #fff;
}

.sf-stitch-cta .sf-stitch-section-text {
  opacity: .88;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 1080px) {
  .sf-card {
    flex-basis: calc(50% - 12px);
  }
}

@media (max-width: 980px) {
  .sf-header-inner {
    grid-template-columns: 1fr;
    row-gap: 12px;
    padding: 14px 0;
  }

  .sf-nav {
    overflow-x: auto;
  }

  .sf-nav-list {
    width: max-content;
    padding-bottom: 4px;
  }

  .sf-header-actions {
    justify-content: flex-end;
  }

  .sf-brand-logo-img {
    height: 36px;
    max-width: 160px;
  }

  .sf-brand--with-title .sf-brand-logo-img {
    height: 32px;
  }

  .sf-brand-title {
    font-size: 1rem;
  }

  .sf-slide,
  .sf-slide:nth-child(even) {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .sf-slide:nth-child(even) .sf-slide-media,
  .sf-slide:nth-child(even) .sf-slide-copy {
    order: initial;
  }

  .sf-slide-image {
    min-height: clamp(320px, 52vw, 520px);
  }

  .sf-slide-copy {
    padding: 32px 28px 36px;
  }

  .sf-carousel-button {
    width: 46px;
    height: 46px;
  }

  .sf-carousel-button-prev {
    left: 14px;
  }

  .sf-carousel-button-next {
    right: 14px;
  }

}

@media (max-width: 768px) {
  .sf-hero {
    min-height: 70vh;
  }

  .sf-hero-shell {
    padding: 104px 0 56px;
  }

  .sf-hero--has-video .sf-hero-bg-video {
    display: none;
  }

  .sf-hero--has-video .sf-hero-bg-image {
    opacity: 1;
  }

  .sf-hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .6)),
      linear-gradient(180deg, rgba(8, 8, 8, .72) 0, rgba(8, 8, 8, .48) 52%, rgba(8, 8, 8, .8) 100%);
  }

  .sf-hero-title {
    font-size: clamp(2.35rem, 13vw, 4rem);
  }

  .sf-hero-description {
    font-size: .98rem;
    line-height: 1.68;
  }

  .sf-carousel {
    padding: 56px 0;
  }

  .sf-carousel-viewport {
    border-radius: 22px;
  }

  .sf-slide-copy {
    padding: 24px 22px 30px;
  }

  .sf-slide-title {
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .sf-slide-subtitle {
    letter-spacing: .18em;
  }

  .sf-slide-description {
    margin-top: 22px;
    font-size: .96rem;
  }

  .sf-carousel-button {
    display: none;
  }

  .sf-carousel-dots {
    gap: 10px;
    padding-top: 16px;
  }
}

@media (max-width: 1080px) {
  .sf-card {
    flex-basis: calc(50% - 12px);
  }
}

@media (max-width: 720px) {
  .sf-cards {
    padding: 56px 0;
  }

  .sf-cards-head {
    margin-bottom: 28px;
  }

  .sf-cards-title {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .sf-cards-nav {
    display: none;
  }

  .sf-card {
    flex-basis: calc(100% - 4px);
    min-width: 0;
    padding: 24px 22px 28px;
  }
}

.sf-list { padding: clamp(72px, 8vw, 112px) 0; background: linear-gradient(180deg, #131313 0%, #0e0e0e 100%); }
.sf-list-head { margin-bottom: 36px; }
.sf-list-title { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4.8vw, 3.7rem); font-weight: 900; letter-spacing: -.04em; line-height: .92; text-transform: uppercase; color: var(--sf-gold-1); }
.sf-list-grid { display: grid; gap: 28px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sf-list-grid--1 { grid-template-columns: minmax(0, 1fr); }
.sf-list-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sf-list-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sf-list-item { background: var(--sf-surface-low); border: 1px solid var(--sf-outline); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.sf-list-item-media { aspect-ratio: 16/10; overflow: hidden; background: #1c1b1b; }
.sf-list-item-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-list-item-title { margin: 22px 24px 10px; font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 1.18rem; color: var(--sf-gold-1); letter-spacing: .03em; text-transform: uppercase; }
.sf-list-item-description { margin: 0 24px 24px; color: rgba(229, 226, 225, .7); font-size: .95rem; line-height: 1.7; }
.sf-list-video-row { display: flex; justify-content: center; margin-top: clamp(36px, 4vw, 56px); }
.sf-list-video-btn { display: inline-flex; align-items: center; gap: 12px; padding: 14px 28px; background: linear-gradient(135deg, var(--sf-gold-1), var(--sf-gold-2)); color: #241a00; border: 0; border-radius: 999px; cursor: pointer; font-family: "Space Grotesk", sans-serif; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; font-size: .82rem; box-shadow: 0 14px 30px rgba(232, 194, 93, .25); transition: transform .18s ease; }
.sf-list-video-btn:hover { transform: translateY(-2px); }
.sf-list-video-icon { display: inline-flex; width: 26px; height: 26px; align-items: center; justify-content: center; background: rgba(0,0,0,.18); border-radius: 999px; font-size: .8rem; }
.sf-list-video-frame { position: relative; width: 100%; max-width: 960px; margin: 0 auto; aspect-ratio: 16/9; border-radius: 16px; overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.42); }
.sf-list-video-iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: #000; }

@media (max-width: 1080px) {
  .sf-list-grid,
  .sf-list-grid--3,
  .sf-list-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .sf-list-grid,
  .sf-list-grid--2,
  .sf-list-grid--3,
  .sf-list-grid--4 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.sf-products { padding: clamp(72px, 8vw, 112px) 0; background: var(--sf-bg); }
.sf-products-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(28px, 4vw, 64px); align-items: start; }
@media (max-width: 980px) { .sf-products-grid { grid-template-columns: 1fr; } }

.sf-products-title { margin: 0 0 18px; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 900; line-height: .95; letter-spacing: -.04em; text-transform: uppercase; color: var(--sf-gold-1); }
.sf-products-description { margin: 0 0 36px; max-width: 540px; color: rgba(229, 226, 225, .72); font-size: clamp(.96rem, 1.3vw, 1.06rem); line-height: 1.7; }

.sf-products-card { display: flex; flex-direction: column; gap: 14px; padding: 24px; border: 1px solid var(--sf-outline); border-radius: 18px; background: var(--sf-surface-low); max-width: 460px; }
.sf-products-card-image { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: 12px; background: #1c1b1b; }
.sf-products-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-products-card-name { margin: 4px 0 0; font-family: "Space Grotesk", sans-serif; font-weight: 800; font-size: 1.18rem; letter-spacing: .02em; text-transform: uppercase; color: var(--sf-gold-1); }
.sf-products-card-name a { color: inherit; text-decoration: none; }
.sf-products-card-price { color: var(--sf-text); font-size: 1.08rem; font-weight: 600; }
.sf-products-card-price del { opacity: .55; margin-right: 8px; }
.sf-products-card-price ins { text-decoration: none; color: var(--sf-gold-1); }
.sf-products-shop-btn { align-self: flex-start; display: inline-flex; align-items: center; padding: 14px 28px; background: linear-gradient(135deg, var(--sf-gold-1), var(--sf-gold-2)); color: #241a00; border-radius: 999px; font-family: "Space Grotesk", sans-serif; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; font-size: .82rem; text-decoration: none; box-shadow: 0 14px 30px rgba(232, 194, 93, .25); transition: transform .18s ease; }
.sf-products-shop-btn:hover { transform: translateY(-2px); }

.sf-products-gallery { position: relative; display: grid; grid-template-columns: 48px minmax(0, 1fr) 48px; align-items: center; gap: 14px; }
.sf-products-gallery--single { display: block; aspect-ratio: 4/3; overflow: hidden; border-radius: 18px; }
.sf-products-gallery--single img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-products-viewport { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; -ms-overflow-style: none; border-radius: 18px; }
.sf-products-viewport::-webkit-scrollbar { display: none; }
.sf-products-track { display: flex; gap: 0; }
.sf-products-slide { flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 4/3; overflow: hidden; }
.sf-products-slide-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.sf-products-nav { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--sf-outline); background: transparent; color: var(--sf-gold-1); cursor: pointer; font-size: 1.6rem; line-height: 1; transition: background .18s ease, transform .18s ease; }
.sf-products-nav:hover { background: rgba(229, 226, 225, .06); }
.sf-products-nav[disabled] { opacity: .35; pointer-events: none; }
@media (max-width: 640px) { .sf-products-nav { display: none; } .sf-products-gallery { grid-template-columns: minmax(0, 1fr); } }

.sf-faq { padding: clamp(72px, 8vw, 112px) 0; background: linear-gradient(180deg, #111111 0%, #161313 100%); }
.sf-faq-head { max-width: 760px; margin-bottom: 36px; }
.sf-faq-title { margin: 0; font-family: "Space Grotesk", sans-serif; font-size: clamp(2rem, 4.8vw, 3.6rem); font-weight: 900; line-height: .95; letter-spacing: -.04em; text-transform: uppercase; color: var(--sf-gold-1); text-wrap: balance; }
.sf-faq-description { margin: 18px 0 0; color: rgba(229, 226, 225, .72); font-size: clamp(.96rem, 1.3vw, 1.06rem); line-height: 1.75; }
.sf-faq-list { display: grid; gap: 18px; }
.sf-faq-item { border: 1px solid rgba(229, 226, 225, .1); border-radius: 20px; background: linear-gradient(180deg, rgba(232, 194, 93, .04), rgba(232, 194, 93, 0) 22%), linear-gradient(180deg, rgba(27, 25, 25, .96), rgba(18, 18, 18, .98)); box-shadow: 0 20px 40px rgba(0, 0, 0, .16); overflow: hidden; }
.sf-faq-question { margin: 0; }
.sf-faq-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 24px 28px; border: 0; background: transparent; color: var(--sf-text); text-align: left; cursor: pointer; }
.sf-faq-toggle:hover,
.sf-faq-toggle:focus-visible { background: rgba(229, 226, 225, .03); }
.sf-faq-toggle:focus-visible { outline: 2px solid rgba(232, 194, 93, .35); outline-offset: -2px; }
.sf-faq-toggle-text { font-family: "Space Grotesk", sans-serif; font-size: clamp(1rem, 1.8vw, 1.24rem); font-weight: 700; letter-spacing: .02em; line-height: 1.35; text-transform: uppercase; color: var(--sf-gold-1); }
.sf-faq-toggle-icon { position: relative; width: 22px; height: 22px; flex: 0 0 22px; border-radius: 999px; border: 1px solid rgba(232, 194, 93, .42); }
.sf-faq-toggle-icon::before,
.sf-faq-toggle-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--sf-gold-1); transform: translate(-50%, -50%); transition: transform .18s ease, opacity .18s ease; }
.sf-faq-toggle-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.sf-faq-toggle[aria-expanded="true"] .sf-faq-toggle-icon::after { opacity: 0; }
.sf-faq-answer { padding: 0 28px 26px; color: rgba(229, 226, 225, .76); font-size: .98rem; line-height: 1.8; }
.sf-faq-answer p { margin: 0; }

@media (max-width: 720px) {
  .sf-faq { padding: 56px 0; }

  .sf-faq-head { margin-bottom: 28px; }

  .sf-faq-toggle { padding: 20px 22px; }

  .sf-faq-answer { padding: 0 22px 22px; }
}

.sf-signup {
  padding: clamp(72px, 8vw, 112px) 0;
  background: linear-gradient(180deg, #f7f4ef 0%, #fbfaf8 100%);
  color: #214d48;
}

.sf-signup-card {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.sf-signup-title {
  margin: 0;
  text-align: center;
  color: #1f5750;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.9rem);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.sf-signup-description {
  margin: 20px auto 0;
  max-width: 780px;
  text-align: center;
  color: rgba(33, 77, 72, .92);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.sf-signup-notice {
  margin: 28px auto 0;
  padding: 14px 18px;
  max-width: 760px;
  border-radius: 14px;
  font-weight: 600;
}

.sf-signup-notice--success {
  background: rgba(45, 125, 98, .12);
  color: #1d5f50;
  border: 1px solid rgba(45, 125, 98, .22);
}

.sf-signup-notice--error {
  background: rgba(209, 78, 57, .08);
  color: #9a301f;
  border: 1px solid rgba(209, 78, 57, .2);
}

.sf-signup-form {
  margin-top: 40px;
}

.sf-signup-required {
  margin: 0 0 20px;
  color: #3b403f;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.25rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
}

.sf-signup-required span,
.sf-signup-group-title span {
  color: #d13a2c;
}

.sf-signup-field-list {
  display: grid;
  gap: 18px;
}

.sf-signup-input {
  width: 100%;
  min-height: 76px;
  border: 1px solid rgba(43, 55, 53, .2);
  background: rgba(255, 255, 255, .88);
  color: #324341;
  padding: 0 18px;
  border-radius: 0;
  font-size: 1rem;
  font-family: "Lexend", system-ui, -apple-system, sans-serif;
  box-shadow: none;
}

.sf-signup-input::placeholder {
  color: rgba(50, 67, 65, .68);
}

.sf-signup-input:focus {
  outline: 2px solid rgba(31, 87, 80, .18);
  border-color: rgba(31, 87, 80, .42);
}

.sf-signup-group {
  margin: 44px 0 0;
  padding: 0;
  border: 0;
}

.sf-signup-group-title {
  margin: 0 0 18px;
  color: #363b39;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.5rem, 3.2vw, 2.3rem);
  font-weight: 700;
  line-height: 1.2;
}

.sf-signup-options {
  display: grid;
  gap: 14px;
}

.sf-signup-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #3f4443;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.45;
  cursor: pointer;
}

.sf-signup-option input[type="checkbox"] {
  margin: 6px 0 0;
  width: 22px;
  height: 22px;
  accent-color: #2a524d;
}

.sf-signup-submit {
  margin-top: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 34px;
  border: 0;
  background: #353535;
  color: #fff;
  font-family: "Lexend", system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.sf-signup-submit:hover,
.sf-signup-submit:focus-visible {
  background: #232323;
  transform: translateY(-1px);
}

.sf-signup-submit:focus-visible {
  outline: 2px solid rgba(31, 87, 80, .24);
  outline-offset: 4px;
}

@media (max-width: 720px) {
  .sf-signup {
    padding: 56px 0;
  }

  .sf-signup-form {
    margin-top: 30px;
  }

  .sf-signup-input {
    min-height: 64px;
  }

  .sf-signup-group {
    margin-top: 34px;
  }

  .sf-signup-submit {
    width: 100%;
    min-height: 62px;
  }
}

.sf-page {
  background:
    radial-gradient(circle at 82% 14%, rgba(232, 194, 93, .08) 0, transparent 30%),
    linear-gradient(180deg, #121111 0%, #161313 100%);
}

.sf-page-hero,
.sf-commerce-hero {
  padding: clamp(72px, 10vw, 120px) 0 34px;
  border-bottom: 1px solid rgba(229, 226, 225, .08);
  background:
    radial-gradient(circle at 12% 0, rgba(232, 194, 93, .08) 0, transparent 28%),
    linear-gradient(180deg, rgba(16, 16, 16, .96), rgba(19, 19, 19, .98));
}

.sf-page-kicker {
  margin: 0 0 12px;
  color: rgba(229, 226, 225, .58);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}

.sf-page-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
  text-wrap: balance;
}

.sf-page-description {
  margin: 18px 0 0;
  max-width: 720px;
  color: rgba(229, 226, 225, .74);
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  line-height: 1.75;
}

.sf-entry-content {
  padding: clamp(40px, 6vw, 72px) 0 clamp(72px, 8vw, 112px);
}

.sf-page--commerce .sf-entry-content {
  max-width: none;
}

.sf-entry-content > :first-child {
  margin-top: 0;
}

.sf-entry-content > :last-child {
  margin-bottom: 0;
}

.sf-commerce-section {
  padding: clamp(40px, 6vw, 68px) 0 clamp(72px, 8vw, 112px);
}

.sf-commerce-section--single {
  padding-top: 26px;
}

.sf-commerce-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(229, 226, 225, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
}

.sf-commerce-toolbar .woocommerce-result-count,
.sf-commerce-toolbar label,
.sf-commerce-toolbar select,
.sf-commerce-toolbar option {
  color: rgba(229, 226, 225, .72);
  font-size: .92rem;
}

.sf-commerce-toolbar .woocommerce-ordering {
  margin: 0;
}

.sf-commerce-toolbar select {
  min-height: 46px;
  border: 1px solid rgba(229, 226, 225, .12);
  background: #181717;
  padding: 0 14px;
  border-radius: 12px;
}

.sf-commerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sf-commerce ul.products::before,
.sf-commerce ul.products::after {
  display: none;
}

.sf-commerce li.product {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.sf-product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(229, 226, 225, .1);
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .04), rgba(232, 194, 93, 0) 24%),
    linear-gradient(180deg, rgba(28, 27, 27, .98), rgba(19, 19, 19, .98));
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}

.sf-product-card-media {
  position: relative;
  aspect-ratio: 4 / 4.6;
  overflow: hidden;
  background: #201d1d;
}

.sf-product-card-link,
.sf-product-card-title a {
  color: inherit;
  text-decoration: none;
}

.sf-product-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .24s ease;
}

.sf-product-card:hover .sf-product-card-image {
  transform: scale(1.03);
}

.sf-product-card .onsale {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  min-width: auto;
  min-height: auto;
  margin: 0;
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sf-gold-1), var(--sf-gold-2));
  color: #241a00;
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  line-height: 1;
}

.sf-single-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  gap: 28px;
  align-items: start;
}

.sf-single-product-gallery,
.sf-single-product-summary,
.sf-single-product-specs,
.sf-single-product-details,
.sf-single-product-related .products,
.sf-single-product-related .up-sells {
  min-width: 0;
}

.sf-single-product-gallery .woocommerce-product-gallery,
.sf-single-product-summary,
.sf-single-product-specs,
.sf-single-product-details {
  border: 1px solid rgba(229, 226, 225, .1);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .03), rgba(232, 194, 93, 0) 18%),
    linear-gradient(180deg, rgba(27, 26, 26, .98), rgba(18, 18, 18, .99));
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}

.sf-single-product-gallery .woocommerce-product-gallery {
  padding: 18px;
}

.sf-single-product-gallery .woocommerce-product-gallery__wrapper {
  border-radius: 18px;
  overflow: hidden;
  background: #1a1919;
}

.sf-single-product-gallery .woocommerce-product-gallery__image img,
.sf-single-product-gallery .woocommerce-product-gallery__wrapper img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.sf-single-product-gallery .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(84px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.sf-single-product-gallery .flex-control-thumbs li {
  list-style: none;
}

.sf-single-product-gallery .flex-control-thumbs img {
  border-radius: 14px;
  border: 1px solid rgba(229, 226, 225, .12);
  background: #151414;
}

.sf-single-product-summary {
  padding: 26px;
}

.sf-single-product-summary .summary {
  margin: 0;
}

.sf-single-product-summary .woocommerce-product-rating {
  margin-bottom: 18px;
  color: rgba(229, 226, 225, .66);
}

.sf-single-product-summary .star-rating {
  color: var(--sf-gold-1);
}

.sf-single-product-summary .price {
  margin: 0 0 22px;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
}

.sf-single-product-summary .price del {
  margin-right: 10px;
  opacity: .48;
  color: rgba(229, 226, 225, .54);
}

.sf-single-product-summary .price ins {
  color: inherit;
  text-decoration: none;
}

.sf-single-product-summary .woocommerce-product-details__short-description,
.sf-single-product-summary .woocommerce-product-details__short-description p {
  color: rgba(229, 226, 225, .74);
  line-height: 1.78;
}

.sf-single-product-summary form.cart {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(229, 226, 225, .08);
}

.sf-single-product-summary .variations {
  margin-bottom: 18px;
}

.sf-single-product-summary .variations td,
.sf-single-product-summary .variations th {
  padding: 0 0 14px;
  border: 0;
}

.sf-single-product-summary .variations label {
  color: rgba(229, 226, 225, .84);
  font-family: "Space Grotesk", sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sf-single-product-summary .reset_variations {
  display: inline-block;
  margin-top: 8px;
  color: rgba(229, 226, 225, .64);
  font-size: .82rem;
}

.sf-single-product-summary .stock {
  margin: 0 0 14px;
  color: rgba(229, 226, 225, .74);
  font-size: .92rem;
  font-weight: 600;
}

.sf-single-product-summary .product_meta {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 226, 225, .08);
  color: rgba(229, 226, 225, .66);
  font-size: .88rem;
}

.sf-single-product-summary .product_meta > span {
  display: block;
}

.sf-single-product-summary .product_meta a {
  color: var(--sf-gold-1);
  text-decoration: none;
}

.sf-product-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.sf-product-highlight,
.sf-product-spec-card,
.sf-product-service-note {
  padding: 18px 18px 20px;
  border: 1px solid rgba(229, 226, 225, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
}

.sf-product-highlight-label,
.sf-product-spec-label,
.sf-product-service-label {
  margin: 0 0 10px;
  color: rgba(229, 226, 225, .52);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sf-product-highlight-value,
.sf-product-spec-value,
.sf-product-service-value {
  margin: 0;
  color: var(--sf-text);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.sf-product-service-notes {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.sf-single-product-specs,
.sf-single-product-details,
.sf-single-product-related {
  margin-top: 28px;
}

.sf-single-product-specs,
.sf-single-product-details {
  padding: 26px;
}

.sf-single-section-head {
  margin-bottom: 22px;
}

.sf-single-section-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
}

.sf-product-spec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.sf-product-tabs .tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 20px;
}

.sf-product-tabs .tabs::before,
.sf-product-tabs .tabs::after {
  display: none;
}

.sf-product-tabs .tabs li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: none !important;
  list-style: none;
}

.sf-product-tabs .tabs li::before,
.sf-product-tabs .tabs li::after {
  display: none !important;
}

.sf-product-tabs .tabs li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(229, 226, 225, .12);
  border-radius: 999px;
  background: #171616;
  color: rgba(229, 226, 225, .7);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sf-product-tabs .tabs li.active a,
.sf-product-tabs .tabs li a:hover {
  border-color: rgba(232, 194, 93, .56);
  color: var(--sf-gold-1);
}

.sf-product-tabs .woocommerce-Tabs-panel {
  margin: 0 0 18px;
  padding: 22px 24px;
  border: 1px solid rgba(229, 226, 225, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
}

.sf-product-tabs .woocommerce-Tabs-panel > :first-child {
  margin-top: 0;
}

.sf-product-tabs .woocommerce-Tabs-panel > :last-child {
  margin-bottom: 0;
}

.sf-product-tabs .shop_attributes th,
.sf-product-tabs .shop_attributes td {
  padding: 12px 0;
  border-color: rgba(229, 226, 225, .08);
}

.sf-single-product-related .up-sells,
.sf-single-product-related .related {
  margin-top: 28px;
}

.sf-single-product-related h2 {
  margin: 0 0 22px;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.02;
}

.sf-product-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px 24px 26px;
}

.sf-product-card-cats {
  margin: 0 0 12px;
  color: rgba(229, 226, 225, .52);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.sf-product-card-cats a {
  color: inherit;
  text-decoration: none;
}

.sf-product-card-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
}

.sf-product-card-description {
  margin: 14px 0 0;
  color: rgba(229, 226, 225, .7);
  font-size: .95rem;
  line-height: 1.72;
}

.sf-product-card-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 22px;
}

.sf-product-card-price {
  color: var(--sf-text);
  font-size: 1.12rem;
  font-weight: 600;
}

.sf-product-card-price ins {
  color: var(--sf-gold-1);
  text-decoration: none;
}

.sf-product-card-price del {
  margin-right: 8px;
  opacity: .56;
}

.sf-commerce-btn,
.sf-product-card .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-block-components-button,
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sf-gold-1), var(--sf-gold-2));
  color: #241a00 !important;
  box-shadow: 0 14px 30px rgba(232, 194, 93, .22);
  font-family: "Space Grotesk", sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.sf-product-card .button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.wc-block-components-button:hover,
.wc-block-cart__submit-button:hover,
.wc-block-components-checkout-place-order-button:hover {
  background: linear-gradient(135deg, var(--sf-gold-1), var(--sf-gold-2));
  color: #241a00 !important;
  transform: translateY(-1px);
  opacity: 1;
}

.woocommerce a.added_to_cart {
  margin-top: 10px;
  color: rgba(229, 226, 225, .75);
  font-size: .82rem;
}

.woocommerce .woocommerce-pagination ul.page-numbers {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  border: 0;
}

.woocommerce .woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.woocommerce .woocommerce-pagination .page-numbers a,
.woocommerce .woocommerce-pagination .page-numbers span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  border: 1px solid rgba(229, 226, 225, .12);
  border-radius: 999px;
  background: #161515;
  color: rgba(229, 226, 225, .72);
}

.woocommerce .woocommerce-pagination .page-numbers.current,
.woocommerce .woocommerce-pagination .page-numbers a:hover {
  border-color: rgba(232, 194, 93, .56);
  color: var(--sf-gold-1);
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  margin: 0 0 24px;
  padding: 18px 22px 18px 54px;
  border: 1px solid rgba(229, 226, 225, .1);
  border-radius: 18px;
  background: rgba(255, 255, 255, .03);
  color: rgba(229, 226, 225, .82);
}

.woocommerce .woocommerce-message::before,
.woocommerce .woocommerce-info::before,
.woocommerce .woocommerce-error::before {
  color: var(--sf-gold-1);
}

.woocommerce .woocommerce-error li {
  margin-bottom: 0;
}

.sf-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 28px;
}

.sf-cart-main,
.sf-cart-sidebar .cart-collaterals,
.sf-checkout-panel,
.wc-block-cart,
.wc-block-checkout,
.wc-block-components-sidebar {
  border: 1px solid rgba(229, 226, 225, .1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .03), rgba(232, 194, 93, 0) 18%),
    linear-gradient(180deg, rgba(27, 26, 26, .98), rgba(19, 19, 19, .99));
  box-shadow: 0 24px 48px rgba(0, 0, 0, .18);
}

.sf-cart-main {
  overflow: hidden;
}

.woocommerce-cart-form {
  margin: 0;
}

.woocommerce table.shop_table {
  border: 0;
  margin: 0;
  border-radius: 0;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  border-color: rgba(229, 226, 225, .08);
}

.woocommerce table.shop_table thead th {
  padding: 20px 22px;
  background: rgba(255, 255, 255, .02);
  color: rgba(229, 226, 225, .72);
  font-family: "Space Grotesk", sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.woocommerce table.shop_table td {
  padding: 22px;
  color: rgba(229, 226, 225, .82);
  vertical-align: middle;
}

.woocommerce table.shop_table td.product-name a,
.woocommerce table.shop_table td.product-thumbnail a {
  color: var(--sf-gold-1);
  text-decoration: none;
}

.woocommerce table.shop_table .product-thumbnail img {
  width: 88px;
  border-radius: 14px;
}

.woocommerce a.remove {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .05);
  color: rgba(229, 226, 225, .64) !important;
  line-height: 34px;
}

.woocommerce a.remove:hover {
  background: rgba(232, 194, 93, .12);
  color: var(--sf-gold-1) !important;
}

.woocommerce .quantity .qty,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce .coupon .input-text,
.wc-block-components-text-input input,
.wc-block-components-form .wc-block-components-text-input input,
.wc-block-components-textarea,
.wc-block-components-combobox .components-combobox-control__input {
  min-height: 52px;
  border: 1px solid rgba(229, 226, 225, .12);
  border-radius: 14px;
  background: #171616;
  color: var(--sf-text);
  padding: 0 16px;
  box-shadow: none;
}

.woocommerce form .form-row textarea,
.wc-block-components-textarea {
  min-height: 132px;
  padding: 16px;
}

.woocommerce form .form-row label,
.wc-block-components-checkout-step__heading,
.wc-block-components-title {
  color: rgba(229, 226, 225, .84);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: .02em;
}

.woocommerce-cart-form .actions {
  padding: 24px 22px !important;
  background: rgba(255, 255, 255, .015);
}

.woocommerce-cart-form .actions .coupon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.woocommerce-cart-form .actions > button,
.woocommerce-cart-form .actions .coupon .button {
  margin-left: 0 !important;
}

.sf-cart-sidebar .cart-collaterals {
  padding: 24px;
}

.woocommerce .cart_totals h2,
.sf-checkout-panel h3,
.wc-block-components-title.wc-block-components-checkout-step__title {
  margin: 0 0 18px;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.woocommerce .cart_totals table.shop_table td,
.woocommerce .cart_totals table.shop_table th {
  padding: 16px 0;
}

.woocommerce .cart_totals table.shop_table tr:first-child th,
.woocommerce .cart_totals table.shop_table tr:first-child td {
  padding-top: 0;
}

.woocommerce .cart_totals table.shop_table tr:last-child th,
.woocommerce .cart_totals table.shop_table tr:last-child td {
  padding-bottom: 0;
}

.woocommerce .cart_totals table.shop_table th {
  color: rgba(229, 226, 225, .62);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.woocommerce .cart_totals table.shop_table td {
  color: var(--sf-text);
  text-align: right;
}

.woocommerce .wc-proceed-to-checkout {
  margin: 24px 0 0;
  padding-bottom: 0;
}

.woocommerce .wc-proceed-to-checkout .button {
  width: 100%;
}

.sf-cart-empty {
  padding: 12px 0 0;
}

.sf-cart-empty-card {
  padding: clamp(30px, 5vw, 44px);
  border: 1px solid rgba(229, 226, 225, .1);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(232, 194, 93, .03), rgba(232, 194, 93, 0) 24%),
    linear-gradient(180deg, rgba(27, 26, 26, .98), rgba(18, 18, 18, .99));
  text-align: center;
}

.sf-cart-empty-kicker {
  margin: 0 0 12px;
  color: rgba(229, 226, 225, .58);
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.sf-cart-empty-title {
  margin: 0;
  color: var(--sf-gold-1);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: .98;
}

.sf-cart-empty-description {
  max-width: 520px;
  margin: 18px auto 0;
  color: rgba(229, 226, 225, .72);
  line-height: 1.72;
}

.sf-cart-empty .return-to-shop {
  margin: 28px 0 0;
}

.sf-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
}

.sf-checkout-column--details {
  display: grid;
  gap: 24px;
}

.sf-checkout-panel {
  padding: 24px;
}

.sf-checkout-panel .form-row {
  margin-bottom: 16px;
}

.sf-checkout-panel .form-row-last,
.sf-checkout-panel .form-row-first {
  width: calc(50% - 8px);
}

.sf-checkout-panel .woocommerce-shipping-fields {
  margin-top: 4px;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  padding: 14px 0;
  border-color: rgba(229, 226, 225, .08);
}

.woocommerce-checkout-review-order-table th {
  color: rgba(229, 226, 225, .62);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.woocommerce-checkout-review-order-table td {
  color: rgba(229, 226, 225, .84);
}

.woocommerce #payment,
.wc-block-components-sidebar-layout .wc-block-components-sidebar {
  border: 1px solid rgba(229, 226, 225, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .02);
}

.woocommerce #payment div.payment_box {
  background: rgba(255, 255, 255, .03);
  color: rgba(229, 226, 225, .72);
}

.woocommerce #payment div.payment_box::before {
  border-bottom-color: rgba(255, 255, 255, .03);
}

.woocommerce-checkout #payment ul.payment_methods {
  border-bottom-color: rgba(229, 226, 225, .08);
}

.woocommerce-checkout #payment div.form-row {
  padding: 20px;
}

.woocommerce-checkout #payment ul.payment_methods li label {
  color: rgba(229, 226, 225, .84);
}

.wc-block-cart,
.wc-block-checkout,
.wc-block-components-sidebar {
  padding: 24px;
}

.wc-block-cart .wc-block-cart-items,
.wc-block-checkout .wc-block-components-sidebar-layout {
  color: rgba(229, 226, 225, .82);
}

.wc-block-cart .wc-block-components-product-name,
.wc-block-checkout .wc-block-components-product-name,
.wc-block-cart-item__prices,
.wc-block-components-totals-item__label,
.wc-block-components-checkout-step__description {
  color: rgba(229, 226, 225, .82);
}

.wc-block-components-totals-item__value,
.wc-block-formatted-money-amount {
  color: var(--sf-text);
}

.wc-block-components-order-summary {
  border: 0;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item {
  border-color: rgba(229, 226, 225, .08);
}

.wc-block-cart .wc-block-cart__submit-container,
.wc-block-checkout .wc-block-checkout__actions_row {
  margin-top: 18px;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"] {
  border-color: rgba(229, 226, 225, .24);
  background: #171616;
}

.wc-block-components-checkbox .wc-block-components-checkbox__input[type="checkbox"]:checked {
  background: var(--sf-gold-1);
  border-color: var(--sf-gold-1);
}

@media (max-width: 1080px) {
  .sf-commerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sf-cart-layout,
  .sf-checkout-layout {
    grid-template-columns: 1fr;
  }

  .sf-single-product-top {
    grid-template-columns: 1fr;
  }

  .sf-product-highlights,
  .sf-product-spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .sf-page-hero,
  .sf-commerce-hero {
    padding: 56px 0 28px;
  }

  .sf-entry-content,
  .sf-commerce-section {
    padding: 30px 0 56px;
  }

  .sf-commerce-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .sf-commerce ul.products {
    grid-template-columns: 1fr;
  }

  .sf-product-highlights,
  .sf-product-spec-grid {
    grid-template-columns: 1fr;
  }

  .woocommerce table.shop_table,
  .woocommerce table.shop_table thead,
  .woocommerce table.shop_table tbody,
  .woocommerce table.shop_table tr,
  .woocommerce table.shop_table td,
  .woocommerce table.shop_table th {
    display: block;
    width: 100%;
  }

  .woocommerce table.shop_table thead {
    display: none;
  }

  .woocommerce table.shop_table tr {
    position: relative;
    padding: 18px 18px 16px;
    border-bottom: 1px solid rgba(229, 226, 225, .08);
  }

  .woocommerce table.shop_table td {
    padding: 8px 0 !important;
    border: 0;
  }

  .woocommerce table.shop_table td.product-remove {
    position: absolute;
    top: 14px;
    right: 12px;
    width: auto;
    padding: 0 !important;
  }

  .woocommerce table.shop_table td.product-thumbnail img {
    width: 72px;
  }

  .woocommerce-cart-form .actions .coupon {
    flex-direction: column;
    align-items: stretch;
  }

  .woocommerce-cart-form .actions .coupon .input-text,
  .woocommerce-cart-form .actions .coupon .button,
  .woocommerce-cart-form .actions > .button {
    width: 100%;
  }

  .sf-checkout-panel .form-row-first,
  .sf-checkout-panel .form-row-last {
    width: 100%;
  }
}
