.ff-homepage {
  --ff-yellow: #f4b400;
  --ff-black: #111111;
  --ff-white: #ffffff;
  --ff-cream: #fff4d5;
  --ff-green: #198b4a;
  --ff-pink: #ff4f9a;
  --ff-red: #d7261e;
  --ff-brown: #6b3b1f;
  --ff-line: rgba(17, 17, 17, 0.18);
  --ff-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  color: var(--ff-black);
  background: var(--ff-white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

.ff-homepage a {
  color: inherit;
  text-decoration: none;
}

.ff-homepage img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ff-container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

.ff-kicker {
  margin: 0 0 12px;
  color: var(--ff-yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ff-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 3px solid var(--ff-black);
  border-radius: 6px;
  box-shadow: 5px 5px 0 var(--ff-black);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.ff-button:hover,
.ff-button:focus-visible {
  transform: translate(3px, 3px);
  box-shadow: 2px 2px 0 var(--ff-black);
}

.ff-button--primary {
  background: var(--ff-yellow);
  color: var(--ff-black);
}

.ff-button--secondary {
  background: var(--ff-white);
  color: var(--ff-black);
}

.ff-button--ghost {
  background: transparent;
  color: var(--ff-white);
  border-color: var(--ff-white);
  box-shadow: 5px 5px 0 var(--ff-yellow);
}

.ff-section {
  padding: 76px 0;
}

.ff-section__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.ff-section__heading--row {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.ff-section h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.95;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-section p {
  margin: 0;
  font-size: 17px;
}

.ff-hero {
  position: relative;
  min-height: 760px;
  padding: 76px 0 50px;
  overflow: hidden;
  color: var(--ff-white);
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.92) 0%, rgba(17, 17, 17, 0.72) 42%, rgba(17, 17, 17, 0.08) 100%),
    url("../images/banners/hero_banner.png") center right / cover no-repeat,
    var(--ff-black);
}

.ff-hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 118px;
  background: repeating-linear-gradient(-8deg, var(--ff-yellow) 0 18px, transparent 18px 38px);
  opacity: 0.18;
}

.ff-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 38px;
}

.ff-hero__copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.88;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-hero__subtitle {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--ff-cream);
  font-size: clamp(19px, 2vw, 25px);
  font-weight: 800;
}

.ff-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 34px;
}

.ff-proof-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.ff-proof-list li {
  padding: 8px 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  color: var(--ff-cream);
  font-size: 13px;
  font-weight: 800;
}

.ff-hero__stage {
  position: relative;
  min-height: 620px;
}

.ff-hero__stage::before {
  content: "";
  position: absolute;
  inset: 70px 20px 40px;
  border: 4px solid var(--ff-yellow);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(244, 180, 0, 0.92), rgba(255, 244, 213, 0.85));
  box-shadow: var(--ff-shadow);
  transform: rotate(-2deg);
}

.ff-hero__character {
  position: absolute;
  width: min(48vw, 370px);
  filter: drop-shadow(10px 16px 0 rgba(0, 0, 0, 0.3));
}

.ff-hero__character--cow {
  left: 3%;
  bottom: 70px;
  z-index: 3;
}

.ff-hero__character--pig {
  right: 2%;
  bottom: 96px;
  z-index: 2;
}

.ff-hero__character--queen {
  left: 28%;
  top: 56px;
  z-index: 4;
}

.ff-categories {
  background:
    linear-gradient(180deg, rgba(244, 180, 0, 0.86), rgba(244, 180, 0, 0.94)),
    url("../images/banners/categories_banner.png") center / cover no-repeat,
    var(--ff-yellow);
}

.ff-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.ff-category-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 4px solid var(--ff-black);
  border-radius: 8px;
  background: var(--ff-white);
  box-shadow: 6px 6px 0 var(--ff-black);
}

.ff-category-card span {
  color: var(--ff-red);
  font-size: 14px;
  font-weight: 950;
}

.ff-category-card strong {
  font-size: 23px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-category-card em {
  color: var(--ff-brown);
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.ff-bestsellers {
  background: var(--ff-white);
}

.ff-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ff-product-card {
  overflow: hidden;
  border: 3px solid var(--ff-black);
  border-radius: 8px;
  background: var(--ff-white);
  box-shadow: 7px 7px 0 var(--ff-yellow);
}

.ff-product-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--ff-black);
}

.ff-product-card__body {
  padding: 18px;
}

.ff-product-card__body p {
  color: var(--ff-red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-product-card__body h3 {
  margin: 6px 0 8px;
  font-size: 22px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-product-card__body span {
  display: block;
  min-height: 48px;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
}

.ff-product-card__body a {
  display: inline-block;
  margin-top: 14px;
  color: var(--ff-black);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-decoration-color: var(--ff-yellow);
}

.ff-woocommerce-note {
  margin-top: 26px;
  padding: 14px 16px;
  border-left: 6px solid var(--ff-yellow);
  background: #f7f7f7;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
}

.ff-woocommerce-note code {
  display: inline-block;
  margin-left: 6px;
  color: var(--ff-black);
  font-weight: 950;
}

.ff-characters {
  color: var(--ff-white);
  background: var(--ff-black);
}

.ff-character-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.ff-character-card {
  min-height: 300px;
  padding: 14px;
  border: 3px solid var(--ff-yellow);
  border-radius: 8px;
  background: #1c1c1c;
}

.ff-character-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.ff-character-card h3 {
  margin: 14px 0 4px;
  color: var(--ff-yellow);
  font-size: 20px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-character-card p {
  color: var(--ff-cream);
  font-size: 14px;
  font-weight: 800;
}

.ff-about {
  background: var(--ff-cream);
}

.ff-about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 44px;
}

.ff-about__image {
  border: 4px solid var(--ff-black);
  border-radius: 8px;
  background: var(--ff-yellow);
  box-shadow: 8px 8px 0 var(--ff-black);
}

.ff-about__image img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.ff-about__copy p {
  margin-bottom: 18px;
  font-weight: 700;
}

.ff-about__copy .ff-button {
  margin-top: 10px;
}

.ff-newsletter {
  background: var(--ff-white);
}

.ff-newsletter__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  align-items: center;
  gap: 28px;
  padding: 38px;
  border: 4px solid var(--ff-black);
  border-radius: 8px;
  background: var(--ff-yellow);
  box-shadow: 8px 8px 0 var(--ff-black);
}

.ff-newsletter__panel h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
}

.ff-newsletter__form {
  display: flex;
  gap: 12px;
}

.ff-newsletter__form input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 3px solid var(--ff-black);
  border-radius: 6px;
  background: var(--ff-white);
  color: var(--ff-black);
  font-size: 16px;
  font-weight: 800;
}

.ff-footer {
  padding: 34px 0;
  color: var(--ff-white);
  background: var(--ff-black);
}

.ff-footer__grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ff-footer strong {
  color: var(--ff-yellow);
  font-size: 26px;
  font-weight: 950;
  text-transform: uppercase;
}

.ff-footer p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--ff-cream);
  font-size: 14px;
  font-weight: 700;
}

.ff-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

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

@media (max-width: 1024px) {
  .ff-hero {
    min-height: auto;
    padding-top: 58px;
    background:
      linear-gradient(90deg, rgba(17, 17, 17, 0.76) 0%, rgba(17, 17, 17, 0.46) 46%, rgba(17, 17, 17, 0.04) 100%),
      url("../images/banners/hero_banner.png") center right / cover no-repeat,
      var(--ff-black);
  }

  .ff-hero__grid,
  .ff-about__grid,
  .ff-newsletter__panel {
    grid-template-columns: 1fr;
  }

  .ff-hero__stage {
    min-height: 520px;
  }

  .ff-category-grid,
  .ff-character-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 700px) {
  .ff-container {
    width: min(100% - 28px, 1200px);
  }

  .ff-section {
    padding: 54px 0;
  }

  .ff-section__heading--row,
  .ff-footer__grid,
  .ff-newsletter__form {
    align-items: stretch;
    flex-direction: column;
  }

  .ff-button {
    width: 100%;
  }

  .ff-hero {
    padding-top: 42px;
    background:
      linear-gradient(180deg, rgba(17, 17, 17, 0.42) 0%, rgba(17, 17, 17, 0.22) 52%, rgba(17, 17, 17, 0.16) 100%),
      url("../images/banners/hero_banner.png") 58% center / cover no-repeat,
      var(--ff-black);
  }

  .ff-hero__copy h1,
  .ff-hero__subtitle,
  .ff-kicker {
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.82), 0 1px 0 var(--ff-black);
  }

  .ff-proof-list li {
    background: rgba(17, 17, 17, 0.46);
    border-color: rgba(255, 255, 255, 0.48);
  }

  .ff-hero__stage {
    min-height: 390px;
  }

  .ff-hero__stage::before {
    inset: 42px 0 28px;
  }

  .ff-hero__character {
    width: min(62vw, 250px);
  }

  .ff-hero__character--cow {
    left: -9%;
    bottom: 44px;
  }

  .ff-hero__character--pig {
    right: -9%;
    bottom: 58px;
  }

  .ff-hero__character--queen {
    left: 22%;
    top: 24px;
  }

  .ff-category-grid,
  .ff-product-grid,
  .ff-character-grid {
    grid-template-columns: 1fr;
  }

  .ff-newsletter__panel {
    padding: 24px;
  }

  .ff-footer__nav {
    justify-content: flex-start;
  }
}
