:root {
  --fn-bg: #f5f5f5;
  --fn-surface: #ffffff;
  --fn-ink: #0a0a0a;
  --fn-muted: #6b7280;
  --fn-violet: #6847f5;
  --fn-violet-soft: #efedff;
  --fn-success: #10b981;
  --fn-border: rgba(10, 10, 10, 0.075);
  --fn-shadow-sm: 0 10px 35px rgba(10, 10, 10, 0.06);
  --fn-shadow-lg: 0 30px 80px rgba(10, 10, 10, 0.14);
  --fn-radius-sm: 10px;
  --fn-radius: 18px;
  --fn-radius-lg: 30px;
  --fn-container: 1400px;
  --fn-header-height: 88px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--fn-header-height) + 24px);
}

body {
  margin: 0;
  background: var(--fn-bg);
  color: var(--fn-ink);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(104, 71, 245, 0.35);
  outline-offset: 3px;
}

.screen-reader-text,
.fn-skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fn-skip-link:focus {
  z-index: 10000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--fn-ink);
  color: white;
}

.fn-container {
  width: min(calc(100% - 48px), var(--fn-container));
  margin-inline: auto;
}

.fn-content-width {
  max-width: 850px;
}

.fn-main {
  min-height: 60vh;
  overflow: hidden;
}

.fn-icon {
  flex: 0 0 auto;
}

.fn-site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: var(--fn-header-height);
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-bar .fn-site-header {
  top: 32px;
}

.fn-site-header.is-scrolled,
.fn-site-header.is-menu-open {
  border-color: var(--fn-border);
  background: rgba(245, 245, 245, 0.92);
  box-shadow: 0 8px 30px rgba(10, 10, 10, 0.04);
  backdrop-filter: blur(18px);
}

.fn-header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.fn-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.fn-brand-logo {
  display: block;
  width: 152px;
  height: auto;
}

.fn-primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
  margin-left: auto;
  margin-right: auto;
  color: #62636b;
  font-size: 14px;
  font-weight: 700;
}

.fn-primary-nav a,
.fn-login-link {
  transition: color 160ms ease;
}

.fn-primary-nav a:hover,
.fn-login-link:hover {
  color: var(--fn-ink);
}

.fn-header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}

.fn-login-link {
  color: #55565e;
  font-size: 14px;
  font-weight: 700;
}

.fn-button,
body .wp-element-button,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .woocommerce #respond input#submit {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: var(--fn-ink);
  box-shadow: 0 12px 28px rgba(10, 10, 10, 0.12);
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: 750;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.fn-button:hover,
body .wp-element-button:hover,
body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover,
body .woocommerce #respond input#submit:hover {
  background: #242424;
  box-shadow: 0 16px 34px rgba(10, 10, 10, 0.16);
  color: white;
  transform: translateY(-2px);
}

.fn-button--small {
  min-height: 42px;
  padding-inline: 23px;
}

.fn-button--large {
  min-height: 58px;
  padding-inline: 31px;
  font-size: 16px;
}

.fn-button--light {
  background: white;
  box-shadow: none;
  color: var(--fn-ink);
}

.fn-button--light:hover {
  background: #f3f3f3;
  color: var(--fn-ink);
}

.fn-arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.fn-arrow-link svg {
  transition: transform 180ms ease;
}

.fn-arrow-link:hover {
  color: var(--fn-violet);
}

.fn-arrow-link:hover svg {
  transform: translateX(4px);
}

.fn-menu-toggle,
.fn-mobile-menu {
  display: none;
}

.fn-hero {
  min-height: 880px;
  padding: calc(var(--fn-header-height) + 100px) 0 95px;
}

.fn-hero-grid {
  display: grid;
  min-height: 680px;
  align-items: center;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(40px, 6vw, 100px);
}

.fn-hero-copy {
  position: relative;
  z-index: 4;
  padding-bottom: 18px;
}

.fn-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(76px, 7.35vw, 112px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.91;
}

.fn-hero-copy > p {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--fn-muted);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.65;
}

.fn-hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 46px;
}

.fn-hero-art {
  position: relative;
  min-height: 690px;
  perspective: 1200px;
}

.fn-hero-card,
.fn-hero-ghost-card {
  position: absolute;
  width: 270px;
  padding: 12px 12px 17px;
  border: 1px solid var(--fn-border);
  border-radius: 23px;
  background: white;
  box-shadow: var(--fn-shadow-lg);
  transition: z-index 0s, transform 260ms ease;
}

.fn-hero-card:hover,
.fn-hero-ghost-card:hover {
  z-index: 10;
  transform: rotate(0deg) scale(1.04);
}

.fn-hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 15px;
  object-fit: cover;
}

.fn-hero-card strong,
.fn-hero-card span {
  display: block;
  padding-inline: 3px;
}

.fn-hero-card strong {
  margin-top: 12px;
  overflow: hidden;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fn-hero-card span {
  margin-top: 4px;
  color: var(--fn-violet);
  font-size: 14px;
  font-weight: 800;
}

.fn-hero-card--one {
  z-index: 2;
  top: 112px;
  left: -16px;
  transform: rotate(-12deg);
}

.fn-hero-card--two {
  z-index: 4;
  top: 218px;
  right: -4px;
  transform: rotate(9deg);
}

.fn-hero-card--three {
  z-index: 5;
  right: 104px;
  bottom: 4px;
  transform: rotate(-5deg);
}

.fn-hero-ghost-card {
  z-index: 1;
  top: 8px;
  right: 8px;
  display: grid;
  height: 282px;
  padding: 0;
  overflow: hidden;
  place-items: center;
  border: 10px solid white;
  background: #edf1ff;
  color: #8194ff;
  transform: rotate(17deg);
}

.fn-hero-ghost-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fn-floating-pill {
  position: absolute;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  min-height: 37px;
  padding: 0 16px;
  border-radius: 999px;
  box-shadow: var(--fn-shadow-sm);
  font-size: 12px;
  font-weight: 800;
}

.fn-floating-pill--available {
  top: 66px;
  right: 154px;
  background: var(--fn-violet);
  color: white;
}

.fn-floating-pill--sold {
  top: 288px;
  right: -10px;
  background: var(--fn-success);
  color: white;
}

.fn-floating-pill--user {
  right: 4px;
  bottom: 104px;
  background: white;
  color: var(--fn-ink);
}

.fn-intents {
  padding: 0 0 95px;
}

.fn-intent-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fn-intent-card {
  display: flex;
  min-height: 185px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  background: white;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fn-intent-card:hover {
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow: var(--fn-shadow-sm);
  transform: translateY(-4px);
}

.fn-icon-box {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #f7f7f8;
  color: var(--fn-ink);
}

.fn-intent-card .fn-icon-box {
  margin-bottom: auto;
}

.fn-intent-card strong {
  margin-top: 22px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.fn-intent-card > span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--fn-muted);
  font-size: 12px;
  font-weight: 600;
}

.fn-section {
  padding: 105px 0;
}

.fn-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.fn-section-heading h2,
.fn-how-card h2,
.fn-seller-card h2 {
  margin: 0;
  font-size: clamp(42px, 4.3vw, 62px);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.fn-section-heading p,
.fn-how-heading p,
.fn-seller-card p {
  margin: 11px 0 0;
  color: var(--fn-muted);
  font-size: 16px;
  font-weight: 500;
}

.fn-new-arrivals {
  padding-top: 80px;
}

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

.fn-product-card {
  overflow: hidden;
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  background: white;
  box-shadow: 0 4px 18px rgba(10, 10, 10, 0.025);
  transition: box-shadow 200ms ease, transform 200ms ease;
}

.fn-product-card:hover {
  box-shadow: 0 24px 55px rgba(10, 10, 10, 0.09);
  transform: translateY(-5px);
}

.fn-product-image {
  position: relative;
  display: block;
  overflow: hidden;
  background: #ececec;
}

.fn-product-image img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.fn-product-card:hover .fn-product-image img {
  transform: scale(1.035);
}

.fn-card-label,
.fn-heart-button {
  position: absolute;
  z-index: 2;
  top: 17px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 6px 20px rgba(10, 10, 10, 0.08);
  backdrop-filter: blur(8px);
}

.fn-card-label {
  left: 17px;
  padding: 7px 11px;
  font-size: 10px;
  font-weight: 800;
}

.fn-heart-button {
  right: 17px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
}

.fn-product-body {
  padding: 24px 24px 20px;
}

.fn-product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.fn-product-title-row h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.25;
}

.fn-price {
  flex: 0 0 auto;
  color: var(--fn-violet);
  font-size: 18px;
  font-weight: 850;
  line-height: 1.25;
}

.fn-price del {
  color: #aaa;
  font-size: 12px;
}

.fn-price ins {
  text-decoration: none;
}

.fn-product-body > p {
  display: -webkit-box;
  overflow: hidden;
  margin: 12px 0 19px;
  color: var(--fn-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.fn-seller-row {
  display: flex;
  align-items: center;
  gap: 7px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--fn-border);
  color: var(--fn-muted);
  font-size: 11px;
  font-weight: 600;
}

.fn-seller-row strong {
  color: #50515a;
  font-weight: 750;
}

.fn-avatar {
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #f0f0f2;
  color: #777981;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.fn-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  padding-top: 16px;
}

.fn-card-tags span {
  padding: 5px 9px;
  border: 1px solid var(--fn-border);
  border-radius: 6px;
  color: #6b6d75;
  font-size: 9px;
  font-weight: 750;
}

.fn-how-section {
  padding-top: 40px;
}

.fn-how-card {
  padding: 72px 60px 68px;
  border-radius: var(--fn-radius-lg);
  background: #080808;
  color: white;
}

.fn-how-card h2 {
  font-size: clamp(40px, 4vw, 58px);
}

.fn-how-heading p {
  max-width: 650px;
  color: #9b9ba2;
}

.fn-step-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px;
  margin-top: 64px;
}

.fn-step {
  position: relative;
  padding-top: 2px;
}

.fn-step::before {
  position: absolute;
  top: 18px;
  right: calc(100% - 2px);
  width: 42px;
  height: 1px;
  background: #252525;
  content: "";
}

.fn-step:first-child::before {
  display: none;
}

.fn-step-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--fn-violet);
  font-size: 13px;
  font-weight: 850;
}

.fn-step h3 {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 800;
}

.fn-step p {
  margin: 0;
  color: #9999a0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.65;
}

.fn-community-section {
  padding-top: 115px;
}

.fn-date-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.fn-date-card {
  display: flex;
  min-height: 285px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  background: white;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.fn-date-card:hover {
  box-shadow: var(--fn-shadow-sm);
  transform: translateY(-4px);
}

.fn-date-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fn-date-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border-radius: 7px;
  background: var(--fn-violet-soft);
  color: var(--fn-violet);
  font-size: 10px;
  font-weight: 750;
}

.fn-date-meta span:last-child {
  border: 1px solid var(--fn-border);
  background: transparent;
  color: var(--fn-muted);
}

.fn-date-card h3 {
  margin: 29px 0 10px;
  font-size: 21px;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.2;
}

.fn-date-card > p {
  margin: 0;
  color: var(--fn-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.fn-date-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: auto;
  padding-top: 25px;
}

.fn-date-footer strong {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 750;
}

.fn-date-footer strong svg {
  color: #aaaab0;
}

.fn-avatar-stack {
  display: flex;
  flex: 0 0 auto;
}

.fn-avatar-stack span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  margin-left: -5px;
  border: 2px solid white;
  border-radius: 50%;
  background: #f0f1f3;
  color: #7b7c84;
  font-size: 8px;
  font-weight: 800;
}

.fn-categories-section {
  padding-top: 100px;
}

.fn-tabs {
  width: 100%;
}

.fn-tab-list {
  display: flex;
  width: max-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin: 0 auto 34px;
  padding: 5px;
  border: 1px solid var(--fn-border);
  border-radius: 999px;
  background: white;
  box-shadow: 0 5px 22px rgba(10, 10, 10, 0.04);
}

.fn-tab-list button {
  min-height: 40px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fn-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.fn-tab-list button[aria-selected="true"] {
  background: var(--fn-ink);
  color: white;
}

.fn-tab-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  animation: fn-fade-up 220ms ease both;
}

.fn-tab-panel[hidden] {
  display: none;
}

@keyframes fn-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fn-category-card {
  display: flex;
  min-height: 90px;
  align-items: center;
  gap: 16px;
  padding: 17px;
  border: 1px solid var(--fn-border);
  border-radius: 14px;
  background: white;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fn-category-card:hover {
  border-color: rgba(10, 10, 10, 0.16);
  box-shadow: var(--fn-shadow-sm);
  transform: translateY(-3px);
}

.fn-category-card > span:last-child {
  display: flex;
  flex-direction: column;
}

.fn-category-card strong {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.fn-category-card small {
  margin-top: 5px;
  color: var(--fn-muted);
  font-size: 10px;
  font-weight: 600;
}

.fn-seller-section {
  padding-top: 35px;
}

.fn-seller-card {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 60px;
  border-radius: var(--fn-radius-lg);
  background: var(--fn-violet);
  color: white;
}

.fn-seller-card > div {
  max-width: 760px;
}

.fn-seller-card .fn-eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
}

.fn-seller-card p:not(.fn-eyebrow) {
  color: rgba(255, 255, 255, 0.75);
}

.fn-eyebrow {
  color: var(--fn-violet);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fn-site-footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--fn-border);
  background: white;
}

.fn-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 65px;
}

.fn-footer-intro > p {
  max-width: 340px;
  margin: 27px 0;
  color: var(--fn-muted);
  font-size: 14px;
  font-weight: 500;
}

.fn-social-links {
  display: flex;
  gap: 10px;
}

.fn-social-links a,
.fn-social-links span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--fn-border);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.fn-social-links a:hover {
  background: var(--fn-bg);
  transform: translateY(-2px);
}

.fn-footer-grid h2 {
  margin: 4px 0 24px;
  font-size: 14px;
  font-weight: 800;
}

.fn-footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fn-footer-grid li + li {
  margin-top: 11px;
}

.fn-footer-grid li a {
  color: var(--fn-muted);
  font-size: 13px;
  font-weight: 500;
}

.fn-footer-grid li a:hover {
  color: var(--fn-ink);
}

.fn-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-top: 28px;
  border-top: 1px solid var(--fn-border);
  color: #a0a1a7;
  font-size: 11px;
  font-weight: 600;
}

.fn-footer-bottom p {
  margin: 0;
}

.fn-footer-bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.fn-footer-bottom a:hover {
  color: var(--fn-ink);
}

/* General content templates */
.fn-page-hero {
  padding: calc(var(--fn-header-height) + 105px) 0 70px;
}

.fn-page-hero h1,
.fn-empty-state h1 {
  margin: 8px 0 0;
  font-size: clamp(50px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.fn-page-section {
  padding: 30px 0 110px;
}

.fn-prose {
  font-size: 18px;
}

.fn-prose > *:first-child {
  margin-top: 0;
}

.fn-prose h2,
.fn-prose h3 {
  margin-top: 2.2em;
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.fn-prose a:not(.wp-element-button) {
  color: var(--fn-violet);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.fn-prose img,
.fn-featured-image {
  border-radius: var(--fn-radius);
}

.fn-post-list {
  display: grid;
  gap: 18px;
}

.fn-post-card {
  padding: 30px;
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  background: white;
}

.fn-post-card h2 {
  margin: 7px 0 10px;
}

.fn-empty-state {
  display: grid;
  min-height: 75vh;
  align-items: center;
  padding: calc(var(--fn-header-height) + 80px) 0 100px;
}

.fn-empty-state p:not(.fn-eyebrow) {
  margin: 24px 0 32px;
  color: var(--fn-muted);
  font-size: 18px;
}

/* WooCommerce and future plugin surfaces inherit the Funesth system. */
.fn-commerce-shell {
  min-height: 70vh;
  padding: calc(var(--fn-header-height) + 80px) 0 110px;
}

.woocommerce .woocommerce-breadcrumb {
  margin-bottom: 34px;
  color: var(--fn-muted);
  font-size: 12px;
  font-weight: 650;
}

.woocommerce .woocommerce-breadcrumb a {
  color: var(--fn-ink);
}

.woocommerce h1.page-title,
.woocommerce div.product .product_title,
.woocommerce-account .woocommerce h2,
.woocommerce-checkout .woocommerce h3 {
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 1;
}

.woocommerce h1.page-title {
  margin-bottom: 50px;
  font-size: clamp(48px, 6vw, 82px);
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto;
  margin: 0;
  padding: 14px 14px 22px;
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  background: white;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.woocommerce ul.products li.product:hover {
  box-shadow: var(--fn-shadow-sm);
  transform: translateY(-4px);
}

.woocommerce ul.products li.product a img {
  margin: 0 0 18px;
  border-radius: 13px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.woocommerce ul.products li.product .price {
  color: var(--fn-violet);
  font-weight: 800;
}

.woocommerce ul.products li.product .button {
  min-height: 42px;
  margin-top: 12px;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce .quantity .qty,
.woocommerce select,
body input[type="text"],
body input[type="email"],
body input[type="password"],
body input[type="search"],
body input[type="tel"],
body input[type="number"],
body textarea,
body select {
  min-height: 50px;
  padding: 11px 15px;
  border: 1px solid rgba(10, 10, 10, 0.13);
  border-radius: 11px;
  background: white;
  box-shadow: none;
}

body textarea {
  min-height: 130px;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus,
body input:focus,
body textarea:focus,
body select:focus {
  border-color: var(--fn-violet);
  outline: 3px solid rgba(104, 71, 245, 0.11);
}

.woocommerce form.checkout,
.woocommerce form.login,
.woocommerce form.register,
.woocommerce-cart .cart_totals,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce-MyAccount-content {
  padding: 30px;
  border: 1px solid var(--fn-border);
  border-radius: var(--fn-radius);
  background: white;
}

.woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--fn-border);
  border-radius: 14px;
  background: white;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
  border: 0;
  border-radius: 12px;
  background: white;
  box-shadow: var(--fn-shadow-sm);
}

.woocommerce-info,
.woocommerce-message {
  border-left: 4px solid var(--fn-violet);
}

.woocommerce-error {
  border-left: 4px solid #e83d61;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  margin: 0 0 28px;
  padding: 8px;
  border: 1px solid var(--fn-border);
  border-radius: 14px;
  background: white;
  list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 10px 13px;
  border-radius: 9px;
  font-weight: 700;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
  background: var(--fn-bg);
}

@media (max-width: 1180px) {
  .fn-primary-nav {
    gap: 20px;
  }

  .fn-hero {
    min-height: 800px;
  }

  .fn-hero-grid {
    gap: 25px;
  }

  .fn-hero h1 {
    font-size: clamp(68px, 7.8vw, 92px);
  }

  .fn-hero-card,
  .fn-hero-ghost-card {
    width: 235px;
  }

  .fn-hero-card--three {
    right: 65px;
  }

  .fn-hero-ghost-card {
    height: 250px;
  }

  .fn-footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}

@media (max-width: 960px) {
  :root {
    --fn-header-height: 76px;
  }

  .fn-container {
    width: min(calc(100% - 40px), var(--fn-container));
  }

  .fn-primary-nav,
  .fn-login-link {
    display: none;
  }

  .fn-menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 4px;
    padding: 0;
    border: 1px solid var(--fn-border);
    border-radius: 50%;
    background: white;
    cursor: pointer;
  }

  .fn-menu-toggle > span:not(.screen-reader-text) {
    width: 17px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--fn-ink);
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .fn-menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(5.5px) rotate(45deg);
  }

  .fn-menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .fn-menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-5.5px) rotate(-45deg);
  }

  .fn-mobile-menu {
    position: absolute;
    z-index: 999;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--fn-header-height));
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    padding: 34px 24px;
    background: var(--fn-bg);
    backdrop-filter: blur(18px);
  }

  .admin-bar .fn-mobile-menu {
    top: 100%;
    height: calc(100dvh - var(--fn-header-height) - 32px);
  }

  .fn-mobile-menu[hidden] {
    display: none;
  }

  .fn-mobile-menu a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--fn-border);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.04em;
  }

  .fn-hero {
    min-height: auto;
    padding-top: calc(var(--fn-header-height) + 80px);
  }

  .fn-hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .fn-hero h1 {
    max-width: 730px;
    font-size: clamp(64px, 10vw, 92px);
  }

  .fn-hero-art {
    width: min(720px, 100%);
    min-height: 650px;
    margin: 0 auto;
  }

  .fn-hero-card,
  .fn-hero-ghost-card {
    width: 255px;
  }

  .fn-hero-card--one {
    top: 110px;
    left: 7%;
  }

  .fn-hero-card--two {
    top: 220px;
    right: 4%;
  }

  .fn-hero-card--three {
    right: 30%;
    bottom: 10px;
  }

  .fn-hero-ghost-card {
    top: 28px;
    right: 8%;
    height: 268px;
  }

  .fn-floating-pill--available {
    top: 82px;
    right: 23%;
  }

  .fn-floating-pill--sold {
    top: 292px;
    right: 1%;
  }

  .fn-floating-pill--user {
    right: 7%;
    bottom: 98px;
  }

  .fn-intent-grid,
  .fn-tab-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fn-product-grid,
  .fn-date-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fn-step-grid {
    grid-template-columns: 1fr;
  }

  .fn-step {
    padding-left: 60px;
  }

  .fn-step::before {
    top: auto;
    right: auto;
    bottom: calc(100% + 4px);
    left: 18px;
    width: 1px;
    height: 35px;
  }

  .fn-step-number {
    position: absolute;
    top: 0;
    left: 0;
  }

  .fn-seller-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .fn-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .fn-footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --fn-header-height: 70px;
    --fn-radius-lg: 22px;
  }

  .admin-bar .fn-site-header {
    top: 46px;
  }

  .admin-bar .fn-mobile-menu {
    top: 100%;
    height: calc(100dvh - var(--fn-header-height) - 46px);
  }

  .fn-container {
    width: min(calc(100% - 28px), var(--fn-container));
  }

  .fn-brand-logo {
    width: 128px;
  }

  .fn-header-actions {
    gap: 9px;
  }

  .fn-header-actions .fn-button {
    display: none;
  }

  .fn-hero {
    padding: calc(var(--fn-header-height) + 64px) 0 40px;
  }

  .fn-hero h1 {
    font-size: clamp(50px, 15vw, 68px);
    letter-spacing: -0.075em;
  }

  .fn-hero-copy > p {
    margin-top: 25px;
    font-size: 16px;
  }

  .fn-hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-top: 31px;
  }

  .fn-hero-art {
    min-height: 485px;
    margin-top: 18px;
  }

  .fn-hero-card,
  .fn-hero-ghost-card {
    width: min(188px, 56vw);
    padding: 9px 9px 13px;
    border-radius: 18px;
  }

  .fn-hero-card img {
    border-radius: 11px;
  }

  .fn-hero-card strong {
    margin-top: 8px;
    font-size: 12px;
  }

  .fn-hero-card span {
    margin-top: 2px;
    font-size: 11px;
  }

  .fn-hero-ghost-card {
    top: 8px;
    right: 6%;
    height: 198px;
    border-width: 7px;
  }

  .fn-hero-card--one {
    top: 82px;
    left: 5%;
  }

  .fn-hero-card--two {
    top: 151px;
    right: 3%;
  }

  .fn-hero-card--three {
    right: auto;
    bottom: 0;
    left: 22%;
  }

  .fn-floating-pill {
    min-height: 32px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .fn-floating-pill--available {
    top: 55px;
    right: 22%;
  }

  .fn-floating-pill--sold {
    top: 211px;
    right: -2%;
  }

  .fn-floating-pill--user {
    right: 0;
    bottom: 57px;
  }

  .fn-intents {
    padding-bottom: 40px;
  }

  .fn-intent-grid,
  .fn-product-grid,
  .fn-date-grid,
  .fn-tab-panel,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .fn-intent-grid {
    gap: 12px;
  }

  .fn-intent-card {
    min-height: 145px;
    padding: 22px;
  }

  .fn-section {
    padding: 72px 0;
  }

  .fn-section-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 30px;
  }

  .fn-section-heading h2,
  .fn-how-card h2,
  .fn-seller-card h2 {
    font-size: 42px;
  }

  .fn-product-grid,
  .fn-date-grid {
    gap: 18px;
  }

  .fn-product-image img {
    aspect-ratio: 1.3 / 1;
  }

  .fn-how-section {
    padding-top: 20px;
  }

  .fn-how-card {
    padding: 43px 25px;
  }

  .fn-step-grid {
    gap: 46px;
    margin-top: 48px;
  }

  .fn-date-card {
    min-height: 270px;
    padding: 23px;
  }

  .fn-tab-list {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
  }

  .fn-tab-list button {
    flex: 0 0 auto;
  }

  .fn-seller-card {
    min-height: auto;
    gap: 33px;
    padding: 40px 25px;
  }

  .fn-footer-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .fn-footer-intro {
    grid-column: auto;
  }

  .fn-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .fn-page-hero h1,
  .fn-empty-state h1 {
    font-size: 52px;
  }

  .fn-commerce-shell {
    padding-top: calc(var(--fn-header-height) + 55px);
  }

  .woocommerce form.checkout,
  .woocommerce form.login,
  .woocommerce form.register,
  .woocommerce-cart .cart_totals,
  .woocommerce-checkout #order_review,
  .woocommerce-account .woocommerce-MyAccount-content {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
