/* Curry's Swingtime Amusements — static styles
   Fonts are loaded in each HTML head (Anton, Barlow Condensed, Lilita One). */

:root {
  --poster-width: min(100%, calc((100vh - clamp(0rem, 4vw, 3rem)) * 0.7076));
  --foreground: oklch(0.16 0.065 284);
  --muted-foreground: oklch(0.554 0.046 257.417);
  --background: oklch(0.975 0.012 89);
  --brand-yellow: oklch(0.88 0.19 92);
  --brand-red: oklch(0.55 0.23 28);
  --brand-blue: oklch(0.63 0.18 235);
  --hero-foreground: oklch(0.99 0 0);
  --font-sans: "Barlow Condensed", sans-serif;
  --font-display: "Anton", sans-serif;
  --font-script: "Lilita One", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    linear-gradient(oklch(0.2 0.15 295 / 0.82), oklch(0.1 0.08 285 / 0.96)),
    url("../images/fairground-hero.jpg") center / cover no-repeat;
  background-attachment: fixed;
  background-color: oklch(0.1 0.08 285);
  color: var(--foreground);
  font-family: var(--font-sans);
}
h1, h2, h3, p, figure, ul { margin: 0; padding: 0; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

.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;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 200;
  border-bottom: 4px solid var(--brand-yellow);
  background: oklch(0.15 0.1 290 / 0.97);
  box-shadow: 0 5px 0 var(--brand-red);
}
.site-header-inner {
  width: min(100% - 2rem, 74rem); min-height: 5.5rem; margin-inline: auto;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 1rem;
}
.site-logo-link { position: relative; z-index: 210; display: block; width: clamp(11rem, 22vw, 16rem); min-width: 0; }
.site-logo { display: block; width: 100%; height: 5rem; object-fit: contain; }
.site-header-right { display: flex; align-items: center; gap: 0.5rem; }
.site-menu-button {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem;
  border: 0; border-radius: 0.5rem; cursor: pointer;
  color: var(--brand-yellow); background: transparent;
}
.site-menu-button:hover { background: oklch(1 0 0 / 0.1); }
.site-menu-button svg { width: 1.7rem; height: 1.7rem; }
.menu-panel { display: grid; border-top: 1px solid oklch(1 0 0 / 0.18); padding: 0.75rem 1rem 1.25rem; text-align: center; }
.menu-panel[hidden] { display: none; }
.menu-panel a {
  display: block; padding: 0.6rem; color: var(--hero-foreground);
  font-family: var(--font-display); font-size: 1.15rem; text-transform: uppercase;
  transition: color 150ms ease;
}
.menu-panel a:hover, .menu-panel a.menu-panel-active { color: var(--brand-yellow); }
.menu-panel .social-links-panel { justify-content: center; margin-top: 0.75rem; }

/* ---------- Social ---------- */
.social-links { display: flex; align-items: center; gap: 0.35rem; }
.social-links a {
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border: 2px solid var(--brand-yellow); border-radius: 9999px;
  color: var(--brand-yellow); background: oklch(1 0 0 / 0.06);
  transition: color 150ms ease, background 150ms ease, transform 150ms ease;
}
.social-links a:hover { color: oklch(0.15 0.1 290); background: var(--brand-yellow); transform: translateY(-2px); }
.social-links-footer { justify-content: center; margin-bottom: 0.9rem; }

.cf-mini-cart { position: relative; }
.cf-mini-cart.is-empty { display: none; }
.cf-mini-cart-toggle {
  position: relative;
  display: grid; place-items: center; width: 2.4rem; height: 2.4rem;
  border: 2px solid var(--brand-yellow); border-radius: 9999px;
  color: var(--brand-yellow); background: oklch(1 0 0 / 0.06);
  cursor: pointer;
}
.cf-mini-cart-toggle:hover { color: oklch(0.15 0.1 290); background: var(--brand-yellow); }
.cf-mini-cart-toggle svg { width: 1.2rem; height: 1.2rem; }
.cf-mini-cart-count {
  position: absolute; top: -0.45rem; right: -0.45rem;
  min-width: 1.3rem; height: 1.3rem; padding: 0 0.28rem;
  border: 2px solid var(--foreground); border-radius: 9999px;
  background: var(--brand-red); color: var(--hero-foreground);
  font-family: var(--font-display); font-size: 0.8rem; line-height: 1.05rem;
  text-align: center;
}
.cf-mini-cart-panel {
  position: absolute; top: calc(100% + 0.7rem); right: 0; z-index: 230;
  width: min(20.5rem, calc(100vw - 2rem));
  padding: 1rem 1.1rem 1.1rem;
  border: 4px solid var(--foreground);
  background: var(--brand-yellow); color: var(--foreground);
  box-shadow: 6px 6px 0 var(--brand-red);
  text-align: left;
}
.cf-mini-cart-heading {
  margin: 0 0 0.7rem;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 400;
  text-transform: uppercase;
}
.cf-mini-cart-items { display: grid; gap: 0.55rem; }
.cf-mini-cart-items li {
  display: flex; justify-content: space-between; gap: 0.75rem;
  font-size: 1.15rem; font-weight: 800; line-height: 1.3;
}
.cf-mini-cart-total {
  display: flex; justify-content: space-between; gap: 0.75rem;
  margin: 0.8rem 0 0.9rem; padding-top: 0.7rem;
  border-top: 3px solid var(--foreground);
  font-size: 1.25rem; font-weight: 900;
}
.cf-mini-cart-button {
  display: block; width: 100%; padding: 0.65rem 0.9rem;
  border: 4px solid var(--foreground); border-radius: 0.4rem;
  background: var(--brand-red); color: var(--hero-foreground) !important;
  box-shadow: 4px 4px 0 var(--foreground);
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
  text-align: center; text-decoration: none !important; text-transform: uppercase;
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 5px solid var(--brand-yellow); background: oklch(0.12 0.08 290);
  padding: 1.5rem; color: var(--hero-foreground); text-align: center; font-weight: 800;
}

/* ---------- Home poster ---------- */
.poster-page { min-height: 100vh; overflow: hidden; padding: clamp(1rem, 2vw, 1.5rem); padding-top: clamp(1rem, 2vw, 1.5rem); }
.poster-frame {
  position: relative; width: var(--poster-width); min-width: 320px; margin-inline: auto;
  isolation: isolate; box-shadow: 0 1.5rem 4rem oklch(0.05 0.04 285 / 0.65);
}
.poster-image { display: block; width: 100%; height: auto; }
.poster-deals {
  position: absolute; z-index: 3; top: 66.1%; left: 30.1%; width: 39.9%; height: 10.5%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.9%;
}
.poster-deal-button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; min-width: 0; gap: 0; cursor: pointer;
  border: clamp(2px, 0.45vw, 6px) solid var(--foreground);
  border-radius: clamp(0.4rem, 1vw, 0.8rem);
  color: var(--hero-foreground);
  box-shadow: 0 clamp(2px, 0.3vw, 4px) 0 var(--foreground);
  font-family: var(--font-display); line-height: 0.88; text-transform: uppercase;
  transition: transform 160ms ease, filter 160ms ease;
}
.poster-deal-button:hover, .poster-deal-button:focus-visible { transform: translateY(-3%); filter: brightness(1.12); }
.poster-deal-button:focus-visible { outline: clamp(2px, 0.35vw, 5px) solid var(--brand-yellow); outline-offset: 2px; }
.poster-deal-button-red { background: var(--brand-red); }
.poster-deal-button-blue { background: oklch(0.42 0.19 253); }
.poster-deal-button span { font-size: clamp(0.7rem, 2.4vw, 2rem); }
.poster-deal-button strong { color: var(--brand-yellow); font-size: clamp(1.1rem, 4.4vw, 3.7rem); font-weight: 400; }
.poster-deal-button small { font-size: clamp(0.7rem, 2.1vw, 1.8rem); }
.poster-book-cover { position: absolute; z-index: 3; right: 0; bottom: 0; width: 50.5%; height: 10.8%; background: oklch(0.2 0.15 295); }
.poster-status {
  max-width: 42rem; margin: 1rem auto 0; color: var(--hero-foreground);
  text-align: center; font-size: 0.95rem; font-weight: 800;
}

/* ---------- Video + gallery ---------- */
.section-kicker { margin-bottom: 0.45rem; color: var(--brand-yellow); font-size: 0.95rem; font-weight: 900; text-transform: uppercase; }
.section-title { color: var(--hero-foreground); font-family: var(--font-display); font-size: clamp(2.8rem, 7vw, 5rem); line-height: 0.96; text-transform: uppercase; font-weight: 400; }
.home-video { width: var(--poster-width); margin: 5rem auto 0; text-align: center; }
.video-embed {
  position: relative; margin-top: 2rem; aspect-ratio: 16 / 9; overflow: hidden;
  border: 4px solid var(--brand-yellow); box-shadow: 5px 5px 0 var(--brand-red); background: var(--foreground);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.home-gallery { width: var(--poster-width); margin: 5rem auto 2rem; text-align: center; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(0.6rem, 1.5vw, 1rem); margin-top: 2rem; }
.gallery-item { margin: 0; overflow: hidden; border: 4px solid var(--brand-yellow); background: var(--foreground); box-shadow: 5px 5px 0 var(--brand-red); }
.gallery-item-link { display: block; cursor: zoom-in; }
.gallery-item img { display: block; width: 100%; height: 100%; min-height: 12rem; aspect-ratio: 4 / 3; object-fit: cover; transition: transform 300ms ease; }
.gallery-item:hover img { transform: scale(1.04); }

.cf-lightbox {
  position: fixed; inset: 0; z-index: 500;
  display: grid; place-items: center;
  padding: 4.5rem 4rem 3rem; background: oklch(0.08 0.06 285 / 0.94);
}
.cf-lightbox[hidden] { display: none !important; }
.cf-lightbox__stage img {
  display: block; max-width: 92vw; max-height: 82vh; width: auto; height: auto;
  border: 5px solid var(--brand-yellow); box-shadow: 8px 8px 0 var(--brand-red);
  background: var(--foreground);
}
.cf-lightbox__close,
.cf-lightbox__prev,
.cf-lightbox__next {
  position: absolute; display: grid; place-items: center;
  width: 3rem; height: 3rem; border: 3px solid var(--brand-yellow);
  border-radius: 9999px; background: oklch(0.15 0.1 290); color: var(--brand-yellow);
  cursor: pointer; font-size: 1.8rem; line-height: 1;
}
.cf-lightbox__close { top: 1rem; right: 1rem; }
.cf-lightbox__prev { left: 0.75rem; top: 50%; transform: translateY(-50%); }
.cf-lightbox__next { right: 0.75rem; top: 50%; transform: translateY(-50%); }
.cf-lightbox__close:hover,
.cf-lightbox__prev:hover,
.cf-lightbox__next:hover { background: var(--brand-yellow); color: oklch(0.15 0.1 290); }
.cf-lightbox__count {
  position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
  color: var(--hero-foreground); font-weight: 800;
}

/* ---------- Inner pages ---------- */
.content-page { min-height: calc(100vh - 9rem); padding: clamp(3rem, 7vw, 6rem) max(1rem, calc((100% - 74rem) / 2)); color: var(--hero-foreground); }
.gallery-page-inner { width: var(--poster-width); margin-inline: auto; }
.content-heading { max-width: 50rem; margin: 0 auto 2.5rem; text-align: center; }
.content-heading p { color: var(--brand-yellow); font-weight: 900; text-transform: uppercase; }
.content-heading h1 { font-family: var(--font-display); font-size: clamp(3.5rem, 10vw, 7.5rem); line-height: 0.95; text-transform: uppercase; text-shadow: 4px 5px 0 var(--brand-red); font-weight: 400; }
.content-heading span { display: block; margin-top: 1rem; font-size: 1.2rem; font-weight: 700; }
.ticket-options { display: grid; gap: 1.5rem; max-width: 55rem; margin-inline: auto; }
.ticket-option {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 15rem; cursor: pointer; border: 5px solid var(--foreground); border-radius: 0.5rem;
  box-shadow: 8px 8px 0 var(--brand-yellow); color: var(--hero-foreground);
  font-family: var(--font-display); text-transform: uppercase;
}
.ticket-option-red { background: var(--brand-red); }
.ticket-option-blue { background: oklch(0.42 0.19 253); }
.ticket-option span { font-size: 2.2rem; }
.ticket-option strong { color: var(--brand-yellow); font-size: clamp(3.2rem, 8vw, 5.5rem); font-weight: 400; }
.content-note { margin-top: 2rem; text-align: center; font-weight: 800; }
.content-heading .product-lead { display: block; margin-top: 1rem; font-size: 1.2rem; font-weight: 700; }
.content-heading .product-lead p { margin: 0; color: inherit; font-weight: inherit; text-transform: none; }

.product-page .woocommerce-notices-wrapper,
.cart-page .woocommerce-notices-wrapper,
body.cf-design .woocommerce-notices-wrapper {
  max-width: 55rem;
  margin: 0 auto 1.5rem;
}
body.cf-design .woocommerce-message,
body.cf-design .woocommerce-info,
body.cf-design .woocommerce-error,
body.cf-design .woocommerce-error li,
body.cf-design .wc-block-components-notice-banner {
  border: 4px solid var(--foreground);
  background: var(--brand-yellow);
  color: var(--foreground);
  padding: 1.1rem 1.3rem;
  box-shadow: 6px 6px 0 var(--brand-red);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  list-style: none;
}
body.cf-design .woocommerce-message a,
body.cf-design .woocommerce-info a,
body.cf-design .woocommerce-message .button,
body.cf-design .wc-block-components-notice-banner a,
body.cf-design .wc-block-components-notice-banner__content {
  color: var(--brand-red);
  font-size: 1.35rem;
  font-weight: 900;
  text-decoration: underline;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 40rem;
  min-height: 15rem;
  margin: 0 auto;
  padding: 2rem 1.4rem 2.1rem;
  border: 5px solid var(--foreground);
  border-radius: 0.5rem;
  box-shadow: 8px 8px 0 var(--brand-yellow);
  color: var(--hero-foreground);
  font-family: var(--font-display);
  text-transform: uppercase;
  text-align: center;
}
.product-card > span { font-size: 2.2rem; }
.product-card > strong,
.product-card .woocommerce-Price-amount {
  color: var(--brand-yellow);
  font-size: clamp(3.2rem, 8vw, 5.5rem);
  font-weight: 400;
  line-height: 0.95;
}
.product-card form.cart {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.4rem;
  width: 100%;
  text-transform: none;
}
.product-card .quantity input {
  width: 4.6rem;
  height: 3.4rem;
  padding: 0;
  border: 4px solid var(--foreground);
  background: var(--hero-foreground);
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-align: center;
}
.product-card .single_add_to_cart_button {
  min-height: 3.4rem;
  padding: 0.55rem 1.5rem;
  border: 4px solid var(--foreground);
  background: var(--brand-yellow);
  color: var(--foreground);
  box-shadow: 4px 4px 0 var(--foreground);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}
.product-card .single_add_to_cart_button:hover,
.product-card .single_add_to_cart_button:focus-visible {
  filter: brightness(1.08);
}
.product-card #wc-stripe-express-checkout-element {
  width: 100%;
  max-width: 22rem;
  margin-top: 1rem !important;
}
.cf-product-or-checkout {
  display: grid;
  justify-items: center;
  width: 100%;
  max-width: 22rem;
  margin: 0.35rem auto 0;
  text-transform: none;
}
.cf-or-rule {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0.85rem 0 0.85rem;
  color: var(--hero-foreground);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cf-or-rule::before,
.cf-or-rule::after {
  content: "";
  flex: 1;
  border-bottom: 2px solid color-mix(in srgb, currentColor 45%, transparent);
}
.cf-product-checkout { width: 100%; }
.cf-checkout-button {
  display: block;
  width: 100%;
  min-height: 3.4rem;
  padding: 0.55rem 1.5rem;
  border: 4px solid var(--foreground);
  background: var(--brand-red);
  color: var(--hero-foreground);
  box-shadow: 4px 4px 0 var(--foreground);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
}
.cf-checkout-button:hover,
.cf-checkout-button:focus-visible {
  filter: brightness(1.08);
}
.product-copy {
  max-width: 40rem;
  margin: 2rem auto 0;
  text-align: center;
  font-size: 1.15rem;
  font-weight: 700;
}
.product-copy p + p { margin-top: 0.8rem; }
.product-other { max-width: 55rem; margin: 3rem auto 0; }
.product-other > p {
  margin-bottom: 1rem;
  color: var(--brand-yellow);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}
.product-back { color: var(--brand-yellow); font-weight: 900; text-transform: uppercase; }
.product-back:hover { color: var(--hero-foreground); }
.location-details { display: grid; gap: 1rem; max-width: 65rem; margin-inline: auto; }
.location-details > div {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 0.15rem 1rem;
  border: 4px solid var(--foreground); background: var(--brand-yellow); padding: 1.2rem;
  color: var(--foreground); box-shadow: 6px 6px 0 var(--brand-red);
}
.location-details svg { grid-row: span 2; width: 2rem; height: 2rem; color: var(--brand-red); }
.location-details strong { font-size: 1.3rem; text-transform: uppercase; }
.location-details span { font-weight: 700; }

/* ---------- Toast ---------- */
.toast-stack { position: fixed; top: 1rem; left: 50%; transform: translateX(-50%); z-index: 400; display: grid; gap: 0.5rem; width: min(22rem, calc(100% - 2rem)); }
.toast {
  border: 3px solid var(--foreground); border-radius: 0.5rem; background: var(--hero-foreground);
  padding: 0.8rem 1rem; box-shadow: 4px 4px 0 var(--brand-red);
  animation: toast-in 200ms ease;
}
.toast strong { display: block; font-family: var(--font-display); font-size: 1.1rem; text-transform: uppercase; }
.toast span { display: block; margin-top: 0.15rem; color: var(--muted-foreground); font-weight: 600; }
@keyframes toast-in { from { opacity: 0; transform: translateY(-8px); } }

@media (min-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .ticket-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .location-details { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 520px) {
  .poster-page { padding: 1rem 0.5rem 2rem; }
  .poster-frame { min-width: 0; }
  .home-video { margin-top: 3.5rem; }
  .video-embed { margin-top: 1.25rem; }
  .home-gallery { margin-top: 3.5rem; }
  .gallery-item img { min-height: 8rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .poster-deal-button, .gallery-item img, .toast { transition: none; animation: none; }
}

[hidden] { display: none !important; }

a.poster-deal-button,
a.ticket-option {
  color: var(--hero-foreground);
  text-decoration: none;
}

/* GeneratePress wrappers on design pages */
body.cf-design #page,
body.cf-design .site,
body.cf-design .grid-container,
body.cf-design .site-content,
body.cf-design .content-area,
body.cf-design .site-main,
body.cf-design .inside-article {
  display: block !important;
  float: none !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.cf-design .content-page,
body.cf-design .poster-page {
  width: 100%;
  box-sizing: border-box;
}
body.cf-design .entry-content,
body.cf-design .entry-header,
body.cf-design .widget-area {
  display: block !important;
  float: none !important;
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}
body.cf-design .widget-area { display: none !important; }

.cart-page .cart-panel,
.checkout-page .cart-panel {
  max-width: 70rem;
  margin-inline: auto;
  padding: clamp(1.2rem, 3vw, 2.2rem);
  border: 4px solid var(--foreground);
  background: var(--brand-yellow);
  color: var(--foreground);
  box-shadow: 8px 8px 0 var(--brand-red);
  --wp--preset--font-size--x-small: 1.1rem;
  --wp--preset--font-size--small: 1.2rem;
  --wp--preset--font-size--medium: 1.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.45;
}
.cart-page .wp-block-woocommerce-cart,
.cart-page .wp-block-woocommerce-cart.alignwide,
.cart-page .wc-block-cart,
.cart-page .wp-block-woocommerce-filled-cart-block,
.cart-page .wp-block-woocommerce-empty-cart-block {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  color: var(--foreground);
}
.cart-page .wc-block-cart__empty-cart__title,
.cart-page .wp-block-woocommerce-empty-cart-block .wp-block-heading {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
}
.cart-page .wp-block-woocommerce-empty-cart-block .wp-block-separator,
.cart-page .wp-block-woocommerce-empty-cart-block .wp-block-heading:not(.wc-block-cart__empty-cart__title),
.cart-page .wp-block-woocommerce-empty-cart-block .wc-block-grid,
.cart-page .wp-block-woocommerce-empty-cart-block .wp-block-product-new,
.cart-page .wp-block-woocommerce-cart-cross-sells-block {
  display: none !important;
}
.cart-page a {
  color: var(--foreground);
  text-decoration: underline;
}
.cart-page .wc-block-components-product-name,
.cart-page .wc-block-cart-item__product a,
.cart-page table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  color: var(--foreground);
  font-family: var(--font-display);
  font-size: 1.55rem !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  text-decoration: none;
  text-transform: uppercase;
}
.cart-page table.wc-block-cart-items .wc-block-cart-items__header,
.cart-page table.wc-block-cart-items .wc-block-cart-items__header th,
.cart-page .wc-block-cart .wc-block-cart__totals-title {
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em;
  line-height: 1.3 !important;
}
.cart-page table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__prices,
.cart-page table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__total,
.cart-page .wc-block-components-product-price,
.cart-page .wc-block-components-formatted-money-amount {
  font-size: 1.25rem !important;
  font-weight: 800;
  line-height: 1.3 !important;
}
.cart-page .wc-block-components-product-metadata,
.cart-page .wc-block-components-product-metadata .wc-block-components-product-metadata__description,
.cart-page .wc-block-components-product-metadata .wc-block-components-product-metadata__description > p,
.cart-page .wc-block-components-product-details {
  font-size: 1.1rem !important;
  line-height: 1.4 !important;
}
.cart-page .wp-block-woocommerce-cart-order-summary-block,
.cart-page .wc-block-components-totals-item,
.cart-page .wc-block-components-totals-item__label,
.cart-page .wc-block-components-totals-item__value,
.cart-page .wc-block-components-panel__button,
.cart-page .wc-block-components-totals-shipping__via,
.cart-page .wc-block-components-express-payment-continue-rule {
  font-size: 1.15rem !important;
  line-height: 1.4 !important;
}
.cart-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.cart-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.5rem !important;
  font-weight: 800 !important;
}
.cart-page .wc-block-components-quantity-selector {
  width: 8rem;
}
.cart-page .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  font-size: 1.3rem !important;
  font-weight: 800;
}
.cart-page .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
  font-size: 1.3rem !important;
  opacity: 1;
}
.cart-page .content-note,
.cart-page .product-back {
  font-size: 1.25rem;
}
.cart-page table.wc-block-cart-items,
.cart-page table.wc-block-cart-items td,
.cart-page table.wc-block-cart-items th {
  background: transparent !important;
  color: var(--foreground);
}
.cart-page .wp-block-woocommerce-cart-order-summary-block,
.cart-page .wc-block-components-totals-wrapper {
  color: var(--foreground);
}
.cart-page input[type="text"],
.cart-page input[type="number"],
.cart-page input[type="search"],
.cart-page select,
.cart-page textarea,
.cart-page .wc-block-components-quantity-selector input,
.cart-page .wc-block-components-text-input input {
  background: var(--hero-foreground);
  border: 3px solid var(--foreground);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-weight: 700;
}
.cart-page .wc-block-components-button,
.cart-page .wc-block-cart__submit-button,
.cart-page .wp-block-button__link,
.cart-page .wc-block-components-totals-coupon__button {
  background: var(--brand-red) !important;
  color: var(--hero-foreground) !important;
  border: 4px solid var(--foreground) !important;
  border-radius: 0.4rem !important;
  box-shadow: 4px 4px 0 var(--foreground);
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  text-decoration: none !important;
}
.cart-page .wc-block-components-button:hover,
.cart-page .wc-block-cart__submit-button:hover,
.cart-page .wp-block-button__link:hover {
  filter: brightness(1.08);
}
.cart-page .wc-block-cart .wc-block-cart__submit-container--sticky {
  background: var(--brand-yellow) !important;
}
.cart-page .wc-block-components-product-metadata,
.cart-page .wc-block-cart-item__prices,
.cart-page .wc-block-components-product-price,
.cart-page .wc-block-components-totals-item {
  color: var(--foreground);
}

.checkout-page .cart-panel,
.checkout-page .wp-block-woocommerce-checkout,
.checkout-page .wc-block-checkout {
  --wp--preset--font-size--x-small: 1.1rem;
  --wp--preset--font-size--small: 1.2rem;
  --wp--preset--font-size--medium: 1.5rem;
  font-size: 1.2rem;
}
.checkout-page .wp-block-woocommerce-checkout,
.checkout-page .wp-block-woocommerce-checkout.alignwide,
.checkout-page .wc-block-checkout {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  color: var(--foreground);
}
.checkout-page a { color: var(--foreground); }
.checkout-page h2,
.checkout-page .wc-block-components-title,
.checkout-page .wc-block-components-checkout-step__title,
.checkout-page .wc-block-components-checkout-step__heading,
.checkout-page legend,
.checkout-page .wc-block-checkout__sidebar h2 {
  color: var(--foreground) !important;
  font-size: 1.5rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}
.checkout-page .wc-block-components-checkout-step__description,
.checkout-page .wc-block-components-radio-control__label,
.checkout-page .wc-block-components-radio-control__description,
.checkout-page .wc-block-components-checkbox__label,
.checkout-page .wc-block-components-totals-item,
.checkout-page .wc-block-components-totals-item__label,
.checkout-page .wc-block-components-totals-item__value,
.checkout-page .wc-block-components-product-name,
.checkout-page .wc-block-components-formatted-money-amount,
.checkout-page .wc-block-components-express-payment-continue-rule,
.checkout-page .wc-block-components-express-payment__title,
.checkout-page .wc-block-components-panel__button,
.checkout-page .wc-block-checkout__terms,
.checkout-page .wc-block-components-address-form__address_2-toggle,
.checkout-page .wc-block-components-local-pickup-select,
.checkout-page .wc-block-components-shipping-rates-control__package {
  font-size: 1.2rem !important;
  line-height: 1.45 !important;
  color: var(--foreground);
}
.checkout-page .wc-block-components-product-metadata,
.checkout-page .wc-block-components-product-metadata p,
.checkout-page .wc-block-components-product-metadata .wc-block-components-product-metadata__description,
.checkout-page .wc-block-components-product-metadata .wc-block-components-product-metadata__description > p,
.checkout-page .wc-block-components-product-details {
  font-size: 1.15rem !important;
  line-height: 1.4 !important;
}
.checkout-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
.checkout-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
}
.checkout-page label,
.checkout-page .wc-block-components-text-input label,
.checkout-page .wc-block-components-combobox label,
.checkout-page .wc-block-components-select-input label,
.checkout-page .wc-block-components-text-input.has-value label,
.checkout-page .wc-block-components-text-input.is-active label,
.checkout-page .wc-block-components-combobox.is-active label,
.checkout-page .wc-block-components-select-input.is-active label,
.checkout-page .wc-block-components-text-input input:-webkit-autofill + label {
  color: var(--foreground) !important;
  font-size: 1.05rem !important;
  font-weight: 800 !important;
  transform: none !important;
  top: 5px !important;
}
.checkout-page input[type="text"],
.checkout-page input[type="email"],
.checkout-page input[type="tel"],
.checkout-page input[type="number"],
.checkout-page input[type="password"],
.checkout-page textarea,
.checkout-page select,
.checkout-page .wc-block-components-text-input input,
.checkout-page .wc-block-components-combobox input,
.checkout-page .wc-block-components-country-input input,
.checkout-page .wc-block-components-state-input input {
  background: var(--hero-foreground) !important;
  border: 3px solid var(--foreground) !important;
  color: var(--foreground) !important;
  font-family: var(--font-sans) !important;
  font-size: 1.25rem !important;
  font-weight: 700;
  min-height: 3.6rem;
  padding-top: 1.35rem !important;
}
.checkout-page .wc-block-components-button,
.checkout-page .wc-block-components-checkout-place-order-button,
.checkout-page .wp-block-button__link {
  background: var(--brand-red) !important;
  color: var(--hero-foreground) !important;
  border: 4px solid var(--foreground) !important;
  border-radius: 0.4rem !important;
  box-shadow: 4px 4px 0 var(--foreground);
  font-family: var(--font-display) !important;
  font-size: 1.35rem !important;
  font-weight: 400 !important;
  text-transform: uppercase;
  text-decoration: none !important;
}
.checkout-page .content-note,
.checkout-page .product-back {
  font-size: 1.25rem;
}
.checkout-page .wc-block-components-checkbox__input,
.checkout-page input[type="checkbox"],
.checkout-page input[type="radio"] {
  width: 1.25rem;
  height: 1.25rem;
  accent-color: var(--brand-red);
}
body.cf-design #colophon {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
}
body.cf-design.admin-bar .site-header { top: 32px; }
@media (max-width: 782px) {
  body.cf-design.admin-bar .site-header { top: 46px; }
}
