:root {
  --tj-background: #ffffff;
  --tj-foreground: #231b2e;
  --tj-card: #ffffff;
  --tj-muted: #f7eadc;
  --tj-muted-foreground: #735f6f;
  --tj-border: rgba(35, 27, 46, 0.12);
  --tj-primary: #ff6b5f;
  --tj-primary-dark: #de3c38;
  --tj-primary-foreground: #ffffff;
  --tj-secondary: #00b6b2;
  --tj-secondary-dark: #008481;
  --tj-accent: #ffd84d;
  --tj-accent-foreground: #2d2600;
  --tj-peach: #ffb38a;
  --tj-lavender: #b58cff;
  --tj-sky: #69d6ff;
  --tj-mint: #97f0c5;
  --tj-radius: 1.5rem;
  --tj-radius-lg: 2rem;
  --tj-shadow-soft: 0 10px 35px rgba(35, 27, 46, 0.08);
  --tj-shadow-medium: 0 16px 45px rgba(35, 27, 46, 0.13);
  --tj-shadow-strong: 0 24px 70px rgba(35, 27, 46, 0.2);
  --tj-container: 1180px;
  --tj-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --tj-display: "Arial Rounded MT Bold", "Trebuchet MS", var(--tj-font);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.thinkjoy-site {
  margin: 0;
  background-color: var(--tj-background);
  background-image:
    radial-gradient(circle at 12% 10%, rgba(255, 216, 77, 0.18), transparent 28rem),
    radial-gradient(circle at 90% 18%, rgba(0, 182, 178, 0.10), transparent 30rem),
    radial-gradient(circle at 50% 92%, rgba(255, 107, 95, 0.10), transparent 32rem);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: left top, right top, center bottom;
  background-size: auto, auto, auto;
  background-attachment: scroll, scroll, scroll;
  color: var(--tj-foreground);
  font-family: var(--tj-font);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

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

.skip-link:focus {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  border-radius: 999px;
  background: var(--tj-foreground);
  color: var(--tj-background);
}

.tj-container {
  width: min(calc(100% - 2rem), var(--tj-container));
  margin-inline: auto;
}

.tj-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 0;
  box-shadow: none;
}

.tj-header__inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 292px;
}

.tj-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--tj-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  white-space: nowrap;
}


.tj-brand--image-only {
  gap: 0;
}

.tj-brand--image-only img {
  display: block;
}

.tj-brand img {
  width: clamp(220px, 24vw, 276px);
  height: auto;
  max-height: 276px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.tj-primary-nav {
  margin-left: auto;
}

.tj-primary-nav__list {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tj-primary-nav__list a {
  display: inline-flex;
  padding: 0.75rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 800;
  color: rgba(35, 27, 46, 0.76);
  transition: color 180ms ease, background 180ms ease;
}

.tj-primary-nav__list a:hover,
.tj-primary-nav__list a:focus {
  color: var(--tj-primary-dark);
  background: rgba(255, 107, 95, 0.1);
}

.tj-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.tj-icon-link {
  font-weight: 800;
  color: var(--tj-muted-foreground);
}

.tj-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--tj-card);
  box-shadow: var(--tj-shadow-soft);
}

.tj-menu-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin-inline: auto;
  background: var(--tj-foreground);
  border-radius: 999px;
}

.tj-button,
.wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 44px;
  padding: 0.8rem 1.15rem;
  border: 0;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.tj-button:hover,
.tj-button:focus {
  transform: translateY(-2px);
}

.tj-button--small {
  min-height: 38px;
  padding: 0.6rem 1rem;
}

.tj-button--large {
  min-height: 56px;
  padding: 1rem 1.45rem;
  font-size: 1.05rem;
}

.tj-button--full {
  width: 100%;
}

.tj-button--shop,
.wp-block-button__link {
  color: var(--tj-primary-foreground);
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-peach));
  box-shadow: 0 14px 35px rgba(255, 107, 95, 0.28);
}

.tj-button--shop:hover,
.tj-button--shop:focus,
.wp-block-button__link:hover,
.wp-block-button__link:focus {
  color: var(--tj-accent-foreground);
  background: linear-gradient(135deg, var(--tj-accent), #ffe988);
  box-shadow: 0 16px 38px rgba(255, 216, 77, 0.42);
}

.tj-button--coral {
  color: var(--tj-primary-foreground);
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-peach));
  box-shadow: 0 14px 35px rgba(255, 107, 95, 0.3);
}

.tj-button--teal {
  color: white;
  background: linear-gradient(135deg, var(--tj-secondary), var(--tj-mint));
  box-shadow: 0 14px 35px rgba(0, 182, 178, 0.24);
}

.tj-button--outline {
  color: var(--tj-foreground);
  border: 2px solid var(--tj-border);
  background: var(--tj-card);
}

.tj-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.tj-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 6rem);
}

.tj-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.tj-hero__copy {
  transform: translateX(-8px);
}

.tj-kicker {
  display: inline-flex;
  color: var(--tj-primary-dark);
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.78rem;
}


.tj-hero__stage {
  position: relative;
  min-height: clamp(360px, 48vw, 610px);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.tj-hero__stage::before,
.tj-hero__stage::after {
  content: "";
  position: absolute;
  inset: 8% 4% 6%;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
}

.tj-hero__stage::before {
  background:
    radial-gradient(circle at 52% 48%, rgba(255, 214, 85, 0.28) 0 18%, transparent 38%),
    radial-gradient(circle at 50% 50%, rgba(255, 107, 95, 0.22) 0 28%, transparent 58%),
    radial-gradient(circle at 58% 44%, rgba(0, 182, 178, 0.18) 0 16%, transparent 42%);
  filter: blur(10px);
  animation: tjHeroHaloPulse 5.5s ease-in-out infinite;
}

.tj-hero__stage::after {
  inset: 5% 0 4%;
  border: 2px solid rgba(255, 214, 85, 0.62);
  box-shadow:
    0 0 0 12px rgba(255, 214, 85, 0.12),
    0 0 42px rgba(255, 214, 85, 0.36),
    inset 0 0 36px rgba(255, 107, 95, 0.18);
  transform: rotate(-8deg);
  animation: tjHeroHaloDrift 7s ease-in-out infinite;
}

.tj-hero__archer {
  position: relative;
  z-index: 2;
  width: min(92%, 590px);
  filter: drop-shadow(0 32px 55px rgba(255, 107, 95, 0.35));
  animation: tjFloat 8s ease-in-out infinite;
}

.tj-hero__acai {
  position: absolute;
  z-index: 3;
  width: min(34%, 180px);
  right: 2%;
  bottom: 2%;
  filter: drop-shadow(0 20px 35px rgba(0, 182, 178, 0.45));
  animation: tjFloatAlt 6s ease-in-out infinite;
}

.tj-hero__title {
  margin: 0.65rem 0 1.25rem;
  font-family: var(--tj-display);
  font-weight: 1000;
  line-height: 0.82;
  letter-spacing: -0.08em;
  font-size: clamp(4.5rem, 16vw, 9.5rem);
}

.tj-hero__title span {
  display: block;
}

.tj-hero__title span:nth-child(1) {
  color: var(--tj-foreground);
}

.tj-hero__title span:nth-child(2) {
  color: var(--tj-secondary-dark);
}

.tj-hero__title span:nth-child(3) {
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-accent), var(--tj-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tj-hero__copy p {
  max-width: 35rem;
  margin: 0 0 2rem;
  color: var(--tj-muted-foreground);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.tj-section {
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.tj-section--muted {
  background: rgba(247, 234, 220, 0.62);
}

.tj-section__header {
  max-width: 48rem;
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.tj-section__header h2,
.tj-section__split h2,
.tj-about-grid h2 {
  margin: 0.3rem 0 0.9rem;
  font-family: var(--tj-display);
  line-height: 1;
  letter-spacing: -0.04em;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

.tj-section__header p {
  color: var(--tj-muted-foreground);
  font-size: 1.1rem;
}

.tj-section__split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.tj-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.tj-category-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: var(--tj-radius-lg);
  box-shadow: var(--tj-shadow-soft);
  isolation: isolate;
}

.tj-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tj-category-card:hover img {
  transform: scale(1.1);
}

.tj-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(35, 27, 46, 0.92), rgba(35, 27, 46, 0.3), transparent);
}

.tj-category-card__content {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  display: grid;
  gap: 0.45rem;
  padding: 1.5rem;
  color: white;
}

.tj-category-card__content span,
.tj-product-card__eyebrow {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.72rem;
  font-weight: 1000;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.tj-category-card__content strong {
  font-family: var(--tj-display);
  font-size: 1.8rem;
  line-height: 1;
}

.tj-category-card__content small {
  color: rgba(255, 255, 255, 0.78);
}

.tj-category-card__content em {
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 900;
}

.tj-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.tj-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius-lg);
  background: var(--tj-card);
  box-shadow: var(--tj-shadow-soft);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.tj-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tj-shadow-strong);
}

.tj-product-card__image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 107, 95, 0.22), rgba(255, 216, 77, 0.22));
}

.tj-product-card__image--posters {
  background: linear-gradient(135deg, rgba(0, 182, 178, 0.22), rgba(255, 107, 95, 0.22));
}

.tj-product-card__image--stickers {
  background: linear-gradient(135deg, rgba(255, 216, 77, 0.24), rgba(0, 182, 178, 0.22));
}

.tj-product-card__image--digital {
  background: linear-gradient(135deg, rgba(0, 182, 178, 0.22), rgba(255, 216, 77, 0.25));
}

.tj-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.tj-product-card:hover .tj-product-card__image img {
  transform: scale(1.06);
}

.tj-product-card__badge,
.tj-product-card__quick {
  position: absolute;
  border-radius: 999px;
  font-weight: 1000;
}

.tj-product-card__badge {
  top: 1rem;
  left: 1rem;
  padding: 0.35rem 0.75rem;
  background: var(--tj-primary);
  color: white;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tj-product-card__quick {
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--tj-foreground);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.tj-product-card:hover .tj-product-card__quick {
  opacity: 1;
  transform: translateY(0);
  background: var(--tj-accent);
}

.tj-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem;
}

.tj-product-card__body .tj-product-card__eyebrow {
  color: var(--tj-muted-foreground);
}

.tj-product-card__title {
  margin: 0.25rem 0 0.7rem;
  font-family: var(--tj-display);
  font-size: 1.05rem;
  line-height: 1.2;
}

.tj-product-card__title a:hover {
  color: var(--tj-primary-dark);
}

.tj-swatches {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 1.2rem;
  margin-bottom: 0.65rem;
}

.tj-swatch {
  width: 17px;
  height: 17px;
  border: 1px solid var(--tj-border);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.tj-swatch-more,
.tj-product-card__meta {
  color: var(--tj-muted-foreground);
  font-size: 0.78rem;
}

.tj-product-card__footer {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
}

.tj-product-card__price {
  font-size: 1.28rem;
  font-weight: 1000;
}

.tj-feature-grid,
.tj-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

.tj-testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tj-feature-card,
.tj-testimonial-card,
.tj-post-card {
  border: 1px solid var(--tj-border);
  border-radius: var(--tj-radius-lg);
  background: var(--tj-card);
  box-shadow: var(--tj-shadow-soft);
}

.tj-feature-card {
  padding: 2rem 1.4rem;
  text-align: center;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tj-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--tj-shadow-medium);
}

.tj-feature-card__icon {
  display: block;
  width: 64px;
  height: 64px;
  margin: 0 auto 1.1rem;
  border-radius: 1.2rem;
  box-shadow: var(--tj-shadow-medium);
}

.tj-feature-card__icon--coral {
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-peach));
}

.tj-feature-card__icon--teal {
  background: linear-gradient(135deg, var(--tj-secondary), var(--tj-mint));
}

.tj-feature-card__icon--lavender {
  background: linear-gradient(135deg, var(--tj-lavender), var(--tj-sky));
}

.tj-feature-card__icon--sunshine {
  background: linear-gradient(135deg, var(--tj-accent), var(--tj-peach));
}

.tj-feature-card h2 {
  margin: 0 0 0.4rem;
  font-family: var(--tj-display);
  font-size: 1.28rem;
}

.tj-feature-card p,
.tj-testimonial-card p {
  margin: 0;
  color: var(--tj-muted-foreground);
}

.tj-testimonial-card {
  position: relative;
  padding: 2rem;
}

.tj-quote {
  position: absolute;
  top: -20px;
  left: 2rem;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-peach));
  color: white;
  font-size: 2.4rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(255, 107, 95, 0.3);
}

.tj-stars {
  margin: 0.4rem 0 1rem;
  color: var(--tj-accent);
  letter-spacing: 0.08em;
}

.tj-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.tj-testimonial-card__author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--tj-muted);
}

.tj-testimonial-card__author span {
  display: grid;
}

.tj-testimonial-card__author small {
  color: var(--tj-muted-foreground);
}

.tj-page-hero {
  padding: clamp(4rem, 8vw, 7rem) 0;
  text-align: center;
}

.tj-page-hero h1 {
  max-width: 920px;
  margin: 0 auto 1rem;
  font-family: var(--tj-display);
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-size: clamp(3rem, 8vw, 6rem);
}

.tj-page-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--tj-muted-foreground);
  font-size: 1.2rem;
}

.tj-page-hero--sunset {
  color: white;
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-peach), var(--tj-accent));
}

.tj-page-hero--sunset p {
  color: rgba(255, 255, 255, 0.86);
}

.tj-shop-controls {
  position: sticky;
  top: 82px;
  z-index: 50;
  padding: 1rem 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-block: 1px solid var(--tj-border);
}

.tj-shop-controls .tj-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.tj-filter-row,
.tj-search-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.tj-filter-pill,
.tj-search-row input,
.tj-search-row select {
  min-height: 44px;
  border: 2px solid var(--tj-border);
  border-radius: 999px;
  background: var(--tj-card);
  color: var(--tj-foreground);
  font-weight: 800;
}

.tj-filter-pill {
  padding: 0.6rem 1rem;
  cursor: pointer;
}

.tj-filter-pill.is-active,
.tj-filter-pill:hover {
  color: white;
  border-color: var(--tj-primary);
  background: var(--tj-primary);
}

.tj-search-row input,
.tj-search-row select {
  padding: 0.6rem 1rem;
}

.tj-count {
  color: var(--tj-muted-foreground);
  font-weight: 800;
}

.tj-empty-state {
  padding: 4rem 1rem;
  text-align: center;
}

.tj-stats {
  padding: 2.5rem 0;
  background: var(--tj-card);
  border-block: 1px solid var(--tj-border);
}

.tj-stats .tj-container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.tj-stat {
  text-align: center;
}

.tj-stat strong {
  display: block;
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--tj-display);
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1;
}

.tj-stat span {
  color: var(--tj-muted-foreground);
}

.tj-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr);
  gap: 4rem;
  align-items: center;
}

.tj-about-grid p {
  color: var(--tj-muted-foreground);
  font-size: 1.1rem;
}

.tj-about-mark {
  display: grid;
  place-items: center;
  min-height: 430px;
  border-radius: var(--tj-radius-lg);
  background: linear-gradient(135deg, var(--tj-primary), var(--tj-secondary), var(--tj-accent));
  color: rgba(255, 255, 255, 0.32);
  font-family: var(--tj-display);
  font-size: clamp(6rem, 16vw, 11rem);
  font-weight: 1000;
}

.tj-content {
  max-width: 820px;
}

.tj-content a,
.tj-link {
  color: var(--tj-primary-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.tj-post-grid {
  display: grid;
  gap: 1.25rem;
}

.tj-post-card {
  overflow: hidden;
}

.tj-post-card__body {
  padding: 1.4rem;
}

.tj-post-card__body h2 {
  margin-top: 0;
  font-family: var(--tj-display);
}

.tj-single__image {
  margin-bottom: 2rem;
  overflow: hidden;
  border-radius: var(--tj-radius-lg);
}

.tj-footer {
  padding: 4rem 0 1.5rem;
  background: var(--tj-foreground);
  color: var(--tj-background);
}

.tj-footer .tj-brand img {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.tj-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(160px, 1fr));
  gap: 2rem;
}

.tj-footer h2 {
  margin: 0 0 1rem;
  font-family: var(--tj-display);
  font-size: 1.15rem;
}

.tj-footer p,
.tj-footer a {
  color: rgba(255, 248, 239, 0.72);
}

.tj-footer a:hover {
  color: white;
}

.tj-footer ul {
  display: grid;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tj-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

.tj-socials a {
  display: inline-flex;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.tj-newsletter {
  display: flex;
  gap: 0.5rem;
}

.tj-newsletter input {
  min-width: 0;
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 1rem;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: white;
}

.tj-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 248, 239, 0.14);
  color: rgba(255, 248, 239, 0.6);
  font-size: 0.9rem;
}

.tj-footer__bottom nav {
  display: flex;
  gap: 1rem;
}

.tj-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  place-items: center;
  padding: 1rem;
}

.tj-modal.is-open {
  display: grid;
}

.tj-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 27, 46, 0.6);
  backdrop-filter: blur(8px);
}

.tj-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 520px);
  padding: 2rem;
  border-radius: var(--tj-radius-lg);
  background: var(--tj-card);
  box-shadow: var(--tj-shadow-strong);
}

.tj-modal__dialog h2 {
  margin-top: 0;
  font-family: var(--tj-display);
  font-size: 2rem;
}

.tj-modal__dialog .tj-newsletter input {
  background: var(--tj-muted);
  color: var(--tj-foreground);
}

.tj-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--tj-muted);
  cursor: pointer;
  font-size: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease var(--delay, 0ms), transform 600ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes tjHeroHaloPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.72;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

@keyframes tjHeroHaloDrift {
  0%, 100% {
    transform: rotate(-8deg) scale(0.98);
    opacity: 0.78;
  }
  50% {
    transform: rotate(6deg) scale(1.03);
    opacity: 1;
  }
}

@keyframes tjFloat {
  0%, 100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-14px) rotate(2deg);
  }
}

@keyframes tjFloatAlt {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-18px) rotate(3deg);
  }
}

@keyframes tjPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes tjSpin {
  to {
    transform: rotate(360deg);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1050px) {
  .tj-category-grid,
  .tj-product-grid,
  .tj-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tj-shop-controls .tj-container {
    align-items: stretch;
    flex-direction: column;
  }

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

@media (max-width: 820px) {
  .tj-header__actions {
    display: none;
  }

  .tj-menu-toggle {
    display: inline-flex;
    margin-left: auto;
    justify-content: center;
  }

  .tj-primary-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: none;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 0;
    box-shadow: none;
  }

  .nav-open .tj-primary-nav {
    display: block;
  }

  .tj-primary-nav__list {
    align-items: stretch;
    flex-direction: column;
  }

  .tj-primary-nav__list a {
    width: 100%;
  }

  .tj-hero__grid,
  .tj-about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .tj-hero__copy {
    transform: none;
  }

  .tj-hero__stage {
    order: -1;
    min-height: clamp(300px, 72vw, 520px);
  }

  .tj-button-row {
    justify-content: center;
  }

  .tj-section__split,
  .tj-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .tj-testimonial-grid,
  .tj-stats .tj-container {
    grid-template-columns: 1fr 1fr;
  }

  .tj-newsletter {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .tj-container {
    width: min(calc(100% - 1.2rem), var(--tj-container));
  }

  .tj-header__inner {
    min-height: 70px;
  }
}

@media (max-width: 760px) {
  body.thinkjoy-site {
    background-position: center, right -42vw top 6rem, left top, right top, center bottom;
    background-size: cover, 118vw auto, auto, auto, auto;
    background-attachment: scroll;
  }
}



@media (max-width: 1050px) {
  .tj-header__inner {
    min-height: 232px;
  }

  .tj-brand img {
    width: clamp(176px, 32vw, 220px);
    max-height: 220px;
  }
}

@media (max-width: 820px) {
  .tj-header__inner {
    min-height: 172px;
  }

  .tj-brand img {
    width: clamp(136px, 42vw, 168px);
    max-height: 168px;
  }

  .tj-primary-nav {
    inset: 172px 0 auto;
  }
}

@media (max-width: 520px) {
  .tj-header__inner {
    min-height: 132px;
  }

  .tj-brand img {
    width: clamp(104px, 48vw, 132px);
    max-height: 132px;
  }

  .tj-primary-nav {
    inset: 132px 0 auto;
  }
}


/* ==========================================================================
   HERO REFERENCE PATCH — 2026-08-11
   Matches supplied Think / Play / Joy hero reference while keeping the
   character artwork as independent animated transparent assets.
   ========================================================================== */

.tj-hero--reference {
  min-height: min(760px, calc(100vh - 90px));
  padding: clamp(2.5rem, 5vw, 4.75rem) 0 clamp(2.75rem, 5vw, 4.5rem);
  background:
    radial-gradient(circle at 15% 14%, rgba(255, 73, 126, 0.18), transparent 25%),
    radial-gradient(circle at 44% 88%, rgba(255, 213, 42, 0.14), transparent 22%),
    radial-gradient(circle at 92% 54%, rgba(69, 123, 255, 0.13), transparent 28%),
    #fff;
}

.tj-hero--reference .tj-hero__grid {
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}

.tj-hero--reference .tj-hero__copy {
  position: relative;
  z-index: 5;
  transform: none;
  padding-left: clamp(0rem, 1.5vw, 1rem);
}

.tj-kicker--drop {
  gap: 0.5rem;
  align-items: center;
  padding: 0.68rem 1.05rem;
  border-radius: 999px;
  color: #171717;
  background: #ffd400;
  font-size: clamp(0.72rem, 1vw, 0.9rem);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
  box-shadow: 0 8px 20px rgba(255, 212, 0, 0.18);
}

.tj-hero--reference .tj-hero__title {
  margin: clamp(1.6rem, 3vw, 2.4rem) 0 clamp(1.6rem, 2.5vw, 2.2rem);
  font-size: clamp(5rem, 9.2vw, 9.6rem);
  line-height: 0.78;
  letter-spacing: -0.065em;
}

.tj-hero--reference .tj-hero__title span:nth-child(1) {
  color: #ff2d68;
}

.tj-hero--reference .tj-hero__title span:nth-child(2) {
  color: #2374f5;
}

.tj-hero--reference .tj-hero__title span:nth-child(3) {
  color: #ffbd00;
  background: none;
  -webkit-text-fill-color: currentColor;
}

.tj-hero--reference .tj-hero__copy p {
  max-width: 31rem;
  margin: 0;
  color: #5c6f99;
  font-size: clamp(1.08rem, 1.55vw, 1.42rem);
  line-height: 1.42;
}

.tj-hero--reference .tj-hero__stage {
  min-height: clamp(470px, 48vw, 650px);
  width: 100%;
  max-width: 760px;
  justify-self: end;
  overflow: visible;
}

.tj-hero--reference .tj-hero__stage::before,
.tj-hero--reference .tj-hero__stage::after {
  display: none;
}

.tj-hero__halo {
  position: absolute;
  z-index: 0;
  width: min(86%, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 106, 173, 0.92), rgba(224, 79, 164, 0.74) 28%, rgba(158, 87, 205, 0.66) 61%, rgba(88, 112, 231, 0.35) 78%, transparent 100%);
  filter: blur(0.2px);
  box-shadow:
    0 0 55px rgba(255, 81, 160, 0.20),
    0 0 90px rgba(76, 113, 255, 0.12);
  animation: tjHeroHaloBreathe 7s ease-in-out infinite;
}

.tj-hero__orbit {
  position: absolute;
  z-index: 1;
  width: min(92%, 670px);
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 205, 0, 0.92);
  border-radius: 50%;
  transform: rotate(-9deg);
  animation: tjHeroOrbit 28s linear infinite;
}

.tj-hero--reference .tj-hero__archer {
  position: absolute;
  z-index: 3;
  width: min(82%, 610px);
  max-height: 96%;
  object-fit: contain;
  filter: drop-shadow(0 28px 34px rgba(87, 35, 100, 0.20));
  transform-origin: 52% 62%;
  animation: tjHeroArcherFloat 7.5s ease-in-out infinite;
  will-change: transform;
}

.tj-hero--reference .tj-hero__acai {
  z-index: 4;
  width: min(25%, 170px);
  right: 0.5%;
  bottom: 3%;
  filter: drop-shadow(0 18px 26px rgba(68, 111, 255, 0.25));
  transform-origin: 50% 80%;
  animation: tjHeroAcaiFloat 5.8s ease-in-out infinite;
  will-change: transform;
}

@keyframes tjHeroArcherFloat {
  0%, 100% { transform: translate3d(0, 4px, 0) rotate(-0.5deg) scale(1); }
  50% { transform: translate3d(0, -15px, 0) rotate(0.8deg) scale(1.012); }
}

@keyframes tjHeroAcaiFloat {
  0%, 100% { transform: translate3d(0, 2px, 0) rotate(1deg); }
  50% { transform: translate3d(-8px, -20px, 0) rotate(-2deg); }
}

@keyframes tjHeroHaloBreathe {
  0%, 100% { transform: scale(0.985); opacity: 0.92; }
  50% { transform: scale(1.025); opacity: 1; }
}

@keyframes tjHeroOrbit {
  from { transform: rotate(-9deg); }
  to { transform: rotate(351deg); }
}

@media (max-width: 980px) {
  .tj-hero--reference {
    min-height: auto;
  }

  .tj-hero--reference .tj-hero__grid {
    grid-template-columns: 0.82fr 1.18fr;
    gap: 1rem;
  }

  .tj-hero--reference .tj-hero__title {
    font-size: clamp(4.5rem, 11vw, 7.25rem);
  }

  .tj-hero--reference .tj-hero__stage {
    min-height: clamp(400px, 54vw, 540px);
  }
}

@media (max-width: 760px) {
  .tj-hero--reference {
    padding-top: 2.25rem;
  }

  .tj-hero--reference .tj-hero__grid {
    grid-template-columns: 1fr;
  }

  .tj-hero--reference .tj-hero__copy {
    text-align: left;
  }

  .tj-hero--reference .tj-hero__title {
    font-size: clamp(4.5rem, 25vw, 7.5rem);
  }

  .tj-hero--reference .tj-hero__copy p {
    max-width: 28rem;
  }

  .tj-hero--reference .tj-hero__stage {
    min-height: clamp(390px, 108vw, 590px);
    max-width: 650px;
    justify-self: center;
    margin-top: 0.5rem;
  }

  .tj-hero--reference .tj-hero__archer {
    width: min(84%, 560px);
  }

  .tj-hero--reference .tj-hero__acai {
    right: 2%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tj-hero__halo,
  .tj-hero__orbit,
  .tj-hero--reference .tj-hero__archer,
  .tj-hero--reference .tj-hero__acai {
    animation: none !important;
  }
}


/* ==========================================================================
   SMOOTH STOREFRONT / SHOPIFY-LIKE COMMERCE UX — 2026-08-11
   ========================================================================== */

.tj-bag-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--tj-border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--tj-foreground);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.tj-bag-button:hover,
.tj-bag-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 107, 95, 0.45);
  background: #fff;
}

.tj-cart-count {
  display: grid;
  place-items: center;
  min-width: 1.45rem;
  height: 1.45rem;
  padding: 0 0.32rem;
  border-radius: 999px;
  background: var(--tj-foreground);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
}

.tj-store-entry {
  position: relative;
  overflow: hidden;
}

.tj-page-transition {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  transition: opacity 220ms ease;
}

.tj-page-transition span {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  background: #ffd400;
  color: #171717;
  font-weight: 1000;
  transform: translateY(8px);
  transition: transform 220ms ease;
}

.tj-page-transition.is-active {
  opacity: 1;
  pointer-events: auto;
}

.tj-page-transition.is-active span {
  transform: translateY(0);
}

.cart-drawer-open {
  overflow: hidden;
}

.tj-cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 850;
  visibility: hidden;
  pointer-events: none;
}

.tj-cart-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.tj-cart-drawer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  background: rgba(30, 22, 38, 0.38);
  backdrop-filter: blur(4px);
  transition: opacity 280ms ease;
}

.tj-cart-drawer.is-open .tj-cart-drawer__backdrop {
  opacity: 1;
}

.tj-cart-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(92vw, 430px);
  height: 100%;
  padding: 1.25rem;
  background: #fff;
  box-shadow: -28px 0 80px rgba(35, 27, 46, 0.16);
  transform: translate3d(102%, 0, 0);
  transition: transform 360ms cubic-bezier(.22, .8, .24, 1);
}

.tj-cart-drawer.is-open .tj-cart-drawer__panel {
  transform: translate3d(0, 0, 0);
}

.tj-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0 1rem;
  border-bottom: 1px solid var(--tj-border);
}

.tj-cart-drawer__eyebrow {
  display: block;
  color: var(--tj-muted-foreground);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tj-cart-drawer__header h2 {
  margin: 0.1rem 0 0;
  font-family: var(--tj-display);
  font-size: 1.8rem;
}

.tj-cart-drawer__close {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--tj-border);
  border-radius: 50%;
  background: #fff;
  color: var(--tj-foreground);
  font-size: 1.55rem;
  cursor: pointer;
}

.tj-cart-drawer__content {
  display: flex;
  flex: 1;
  min-height: 0;
  flex-direction: column;
}

.tj-cart-drawer__items {
  display: grid;
  gap: 0.9rem;
  overflow: auto;
  padding: 1rem 0;
}

.tj-cart-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 0.9rem;
  align-items: center;
}

.tj-cart-item__image {
  overflow: hidden;
  aspect-ratio: 1;
  border-radius: 1rem;
  background: var(--tj-muted);
}

.tj-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tj-cart-item__body {
  display: grid;
  gap: 0.18rem;
}

.tj-cart-item__title {
  color: var(--tj-foreground);
  font-weight: 900;
  line-height: 1.25;
}

.tj-cart-item__meta {
  color: var(--tj-muted-foreground);
  font-size: 0.82rem;
}

.tj-cart-drawer__summary {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--tj-border);
}

.tj-cart-drawer__summary > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.08rem;
}

.tj-cart-drawer__summary p {
  margin: 0.45rem 0 1rem;
  color: var(--tj-muted-foreground);
  font-size: 0.78rem;
}

.tj-cart-drawer__view-cart {
  display: block;
  margin-top: 0.8rem;
  text-align: center;
  color: var(--tj-foreground);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.tj-cart-drawer__empty {
  display: grid;
  place-items: center;
  gap: 1rem;
  margin: auto 0;
  padding: 2rem 0;
  text-align: center;
}

.tj-cart-drawer__empty p {
  max-width: 18rem;
  color: var(--tj-muted-foreground);
  font-size: 1.05rem;
}

.tj-shop-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 920;
  max-width: min(88vw, 340px);
  padding: 0.85rem 1rem;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  background: var(--tj-foreground);
  color: #fff;
  box-shadow: var(--tj-shadow-strong);
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tj-shop-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tj-quick-add {
  position: relative;
}

.tj-quick-add.is-loading {
  opacity: 0.74;
  cursor: wait;
}

.tj-product-grid {
  transition: opacity 150ms ease, transform 150ms ease;
}

.tj-product-grid.is-filtering {
  opacity: 0.72;
  transform: translateY(3px);
}

.tj-shop-page .tj-page-hero {
  padding-bottom: 2.5rem;
}

.tj-shop-controls {
  top: 0;
  box-shadow: 0 12px 34px rgba(35, 27, 46, 0.05);
}

@media (max-width: 760px) {
  .tj-header__actions {
    gap: 0.45rem;
  }

  .tj-bag-button {
    padding-inline: 0.65rem;
  }

  .tj-bag-button > span:first-child {
    display: none;
  }

  .tj-cart-drawer__panel {
    width: min(94vw, 430px);
  }

  .tj-shop-controls .tj-container {
    align-items: stretch;
  }

  .tj-filter-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .tj-filter-row::-webkit-scrollbar {
    display: none;
  }

  .tj-filter-pill {
    flex: 0 0 auto;
  }

  .tj-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tj-page-transition,
  .tj-page-transition span,
  .tj-cart-drawer__backdrop,
  .tj-cart-drawer__panel,
  .tj-product-grid,
  .tj-shop-toast {
    transition: none !important;
  }
}


/* ==========================================================================
   FINAL HERO REFERENCE MATCH — supplied screenshot, 2026-08-11
   This block intentionally overrides earlier hero rules.
   ========================================================================== */

.tj-hero.tj-hero--reference {
  position: relative;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 85, 139, 0.17) 0, rgba(255, 85, 139, 0.08) 15%, transparent 31%),
    radial-gradient(circle at 43% 93%, rgba(255, 219, 92, 0.14) 0, transparent 24%),
    radial-gradient(circle at 94% 55%, rgba(76, 119, 255, 0.13) 0, transparent 30%),
    #fff url("../images/hero-joy-pattern.svg") repeat;
  background-size: auto, auto, auto, 360px 210px;
}

.tj-hero--reference .tj-container {
  width: min(calc(100% - 2rem), 1500px);
}

.tj-hero--reference .tj-hero__grid {
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(650px, 1.22fr);
  gap: 0;
  align-items: stretch;
  min-height: clamp(560px, 40vw, 625px);
}

.tj-hero--reference .tj-hero__copy {
  position: relative;
  z-index: 8;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transform: none;
  padding: 2.8rem 1rem 2.7rem clamp(3.2rem, 6.3vw, 6.25rem);
  text-align: left;
}

.tj-hero--reference .tj-kicker--drop {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 clamp(1.65rem, 2.4vw, 2.25rem);
  padding: 0.62rem 1.08rem;
  border: 0;
  border-radius: 999px;
  background: #ffd400;
  box-shadow: none;
  color: #171717;
  font-size: clamp(0.72rem, 0.85vw, 0.88rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

.tj-hero--reference .tj-kicker__spark {
  font-size: 1.05em;
  line-height: 1;
}

.tj-hero--reference .tj-hero__title {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  font-size: clamp(5.2rem, 6.9vw, 7rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.tj-hero--reference .tj-hero__title span {
  display: block;
  width: fit-content;
}

.tj-hero--reference .tj-hero__title span:nth-child(1) {
  color: #ff2d68;
}

.tj-hero--reference .tj-hero__title span:nth-child(2) {
  color: #2477f3;
}

.tj-hero--reference .tj-hero__title span:nth-child(3) {
  color: #f9bb00;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.tj-hero--reference .tj-hero__intro,
.tj-hero--reference .tj-hero__copy p {
  max-width: 31rem;
  margin: clamp(2.65rem, 3.4vw, 3.35rem) 0 0;
  color: #61729a;
  font-size: clamp(1.04rem, 1.32vw, 1.34rem);
  font-weight: 400;
  line-height: 1.42;
}

.tj-hero--reference .tj-hero__stage {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: none;
  min-height: 100%;
  justify-self: stretch;
  overflow: visible;
  isolation: isolate;
}

.tj-hero--reference .tj-hero__stage::before,
.tj-hero--reference .tj-hero__stage::after {
  display: none !important;
}

.tj-hero--reference .tj-hero__halo {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 53%;
  width: clamp(500px, 38vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 41% 29%,
      rgba(244, 118, 184, 0.94) 0,
      rgba(224, 82, 169, 0.89) 28%,
      rgba(188, 83, 190, 0.82) 53%,
      rgba(137, 98, 208, 0.72) 73%,
      rgba(93, 126, 229, 0.44) 88%,
      rgba(94, 128, 232, 0.10) 100%);
  box-shadow:
    0 0 35px rgba(231, 73, 169, 0.15),
    0 0 86px rgba(88, 116, 230, 0.16);
  filter: none;
  transform: translate(-50%, -49%);
  animation: tjReferenceHaloBreath 7.8s ease-in-out infinite;
}

.tj-hero--reference .tj-hero__orbit {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 53%;
  width: clamp(535px, 41vw, 615px);
  aspect-ratio: 1;
  border: 1.6px dashed rgba(255, 206, 0, 0.96);
  border-radius: 50%;
  transform: translate(-50%, -49%) rotate(-8deg);
  animation: tjReferenceOrbit 34s linear infinite;
}

.tj-hero--reference .tj-hero__character {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

.tj-hero--reference .tj-hero__character--archer {
  top: 50%;
  left: 52%;
  width: clamp(545px, 41vw, 625px);
  transform: translate(-50%, -48%);
  animation: tjReferenceArcherFloat 7.2s ease-in-out infinite;
}

.tj-hero--reference .tj-hero__archer {
  position: static;
  display: block;
  width: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  filter: drop-shadow(0 23px 24px rgba(86, 37, 100, 0.14));
  animation: none;
  transform: none;
}

.tj-hero--reference .tj-hero__character--acai {
  right: 1.2%;
  bottom: -7%;
  z-index: 5;
  width: clamp(130px, 11vw, 168px);
  animation: tjReferenceAcaiFloat 5.7s ease-in-out infinite;
}

.tj-hero--reference .tj-hero__acai {
  position: static;
  display: block;
  width: 100%;
  max-width: none;
  filter: drop-shadow(0 17px 20px rgba(63, 100, 230, 0.20));
  animation: none;
  transform: none;
}

/* Keep the archer mostly still and premium-looking; movement is intentionally subtle. */
@keyframes tjReferenceArcherFloat {
  0%, 100% {
    transform: translate(-50%, -48%) translate3d(0, 5px, 0) rotate(-0.25deg);
  }
  50% {
    transform: translate(-50%, -48%) translate3d(0, -10px, 0) rotate(0.4deg);
  }
}

@keyframes tjReferenceAcaiFloat {
  0%, 100% {
    transform: translate3d(0, 3px, 0) rotate(1deg);
  }
  50% {
    transform: translate3d(-8px, -13px, 0) rotate(-1.6deg);
  }
}

@keyframes tjReferenceHaloBreath {
  0%, 100% {
    transform: translate(-50%, -49%) scale(0.99);
    opacity: 0.96;
  }
  50% {
    transform: translate(-50%, -49%) scale(1.018);
    opacity: 1;
  }
}

@keyframes tjReferenceOrbit {
  from {
    transform: translate(-50%, -49%) rotate(-8deg);
  }
  to {
    transform: translate(-50%, -49%) rotate(352deg);
  }
}

@media (min-width: 1500px) {
  .tj-hero--reference .tj-hero__grid {
    min-height: 625px;
  }
}

@media (max-width: 1120px) {
  .tj-hero--reference .tj-container {
    width: min(calc(100% - 1.5rem), 1100px);
  }

  .tj-hero--reference .tj-hero__grid {
    grid-template-columns: minmax(330px, 0.8fr) minmax(500px, 1.2fr);
    min-height: 540px;
  }

  .tj-hero--reference .tj-hero__copy {
    padding-left: clamp(1.8rem, 4vw, 3.6rem);
  }

  .tj-hero--reference .tj-hero__title {
    font-size: clamp(4.55rem, 8vw, 6.2rem);
  }

  .tj-hero--reference .tj-hero__halo {
    left: 52%;
    width: clamp(430px, 48vw, 520px);
  }

  .tj-hero--reference .tj-hero__orbit {
    left: 52%;
    width: clamp(465px, 52vw, 555px);
  }

  .tj-hero--reference .tj-hero__character--archer {
    left: 51%;
    width: clamp(470px, 53vw, 565px);
  }
}

@media (max-width: 820px) {
  .tj-hero--reference {
    padding-top: 1.6rem;
  }

  .tj-hero--reference .tj-container {
    width: min(calc(100% - 1.5rem), 720px);
  }

  .tj-hero--reference .tj-hero__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tj-hero--reference .tj-hero__copy {
    order: 1;
    justify-content: flex-start;
    padding: 1.3rem 1rem 1rem;
  }

  .tj-hero--reference .tj-kicker--drop {
    margin-bottom: 1.55rem;
  }

  .tj-hero--reference .tj-hero__title {
    font-size: clamp(4.8rem, 20vw, 7.15rem);
  }

  .tj-hero--reference .tj-hero__intro,
  .tj-hero--reference .tj-hero__copy p {
    margin-top: 2rem;
    font-size: clamp(1.03rem, 4vw, 1.24rem);
  }

  .tj-hero--reference .tj-hero__stage {
    order: 2;
    min-height: clamp(400px, 104vw, 590px);
    margin-top: 0.75rem;
  }

  .tj-hero--reference .tj-hero__halo {
    top: 48%;
    left: 50%;
    width: min(78vw, 525px);
  }

  .tj-hero--reference .tj-hero__orbit {
    top: 48%;
    left: 50%;
    width: min(85vw, 570px);
  }

  .tj-hero--reference .tj-hero__character--archer {
    top: 48%;
    left: 50%;
    width: min(84vw, 560px);
  }

  .tj-hero--reference .tj-hero__character--acai {
    right: 2%;
    bottom: -3%;
    width: min(25vw, 150px);
  }
}

@media (max-width: 480px) {
  .tj-hero--reference .tj-hero__copy {
    padding-inline: 0.35rem;
  }

  .tj-hero--reference .tj-hero__title {
    font-size: clamp(4.25rem, 23vw, 6rem);
  }

  .tj-hero--reference .tj-hero__stage {
    min-height: 390px;
  }

  .tj-hero--reference .tj-hero__character--acai {
    bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tj-hero--reference .tj-hero__halo,
  .tj-hero--reference .tj-hero__orbit,
  .tj-hero--reference .tj-hero__character--archer,
  .tj-hero--reference .tj-hero__character--acai {
    animation: none !important;
  }
}


/* ==========================================================================
   HERO SCREENSHOT COLOR CALIBRATION — 2026-08-11
   Final palette pass based directly on the supplied visual reference.
   ========================================================================== */

.tj-hero.tj-hero--reference {
  --tj-hero-pink: #ff2b68;
  --tj-hero-blue: #2777f3;
  --tj-hero-yellow: #fbbb00;
  --tj-hero-pill: #ffd500;
  --tj-hero-copy: #61729a;
  --tj-hero-orbit: #ffd12a;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 91, 145, 0.18) 0, rgba(255, 91, 145, 0.075) 16%, transparent 31%),
    radial-gradient(circle at 43% 92%, rgba(255, 220, 92, 0.15) 0, transparent 25%),
    radial-gradient(circle at 94% 54%, rgba(76, 121, 255, 0.14) 0, transparent 30%),
    #fff url("../images/hero-joy-pattern.svg") repeat;
}

.tj-hero--reference .tj-kicker--drop {
  background: var(--tj-hero-pill);
  color: #171717;
}

.tj-hero--reference .tj-hero__title span:nth-child(1) {
  color: var(--tj-hero-pink);
}

.tj-hero--reference .tj-hero__title span:nth-child(2) {
  color: var(--tj-hero-blue);
}

.tj-hero--reference .tj-hero__title span:nth-child(3) {
  color: var(--tj-hero-yellow);
}

.tj-hero--reference .tj-hero__intro,
.tj-hero--reference .tj-hero__copy p {
  color: var(--tj-hero-copy);
}

.tj-hero--reference .tj-hero__halo {
  background:
    radial-gradient(circle at 42% 29%,
      #ef75b5 0%,
      #e55ca7 25%,
      #d552a7 42%,
      #bb55b4 57%,
      #9d63c8 72%,
      #8177da 86%,
      rgba(111, 137, 231, 0.46) 96%,
      rgba(111, 137, 231, 0.08) 100%);
  box-shadow:
    0 0 38px rgba(225, 81, 165, 0.18),
    0 0 90px rgba(95, 119, 222, 0.15);
}

.tj-hero--reference .tj-hero__orbit {
  border-color: var(--tj-hero-orbit);
}


/* ==========================================================================
   NEW UPLOADED HERO REFERENCE — FINAL COLOR MATCH
   Source: supplied 2048×834 hero screenshot.
   ========================================================================== */

.tj-hero.tj-hero--reference {
  --tj-hero-pink: #ff3369;
  --tj-hero-blue: #217cff;
  --tj-hero-yellow: #f5c615;
  --tj-hero-pill: #ffd500;
  --tj-hero-copy: #5c6a8a;
  --tj-hero-orbit: #ffd52a;

  background:
    radial-gradient(circle at 10% 8%,
      rgba(255, 118, 157, 0.23) 0%,
      rgba(255, 165, 190, 0.12) 16%,
      rgba(255, 255, 255, 0) 32%),
    radial-gradient(circle at 43% 93%,
      rgba(255, 224, 111, 0.19) 0%,
      rgba(255, 242, 190, 0.11) 16%,
      rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 95% 56%,
      rgba(110, 151, 255, 0.17) 0%,
      rgba(185, 205, 255, 0.10) 18%,
      rgba(255, 255, 255, 0) 34%),
    #ffffff url("../images/hero-joy-pattern.svg") repeat;
}

.tj-hero--reference .tj-kicker--drop {
  background: var(--tj-hero-pill) !important;
  color: #101010 !important;
}

.tj-hero--reference .tj-hero__title span:nth-child(1) {
  color: var(--tj-hero-pink) !important;
}

.tj-hero--reference .tj-hero__title span:nth-child(2) {
  color: var(--tj-hero-blue) !important;
}

.tj-hero--reference .tj-hero__title span:nth-child(3) {
  color: var(--tj-hero-yellow) !important;
  -webkit-text-fill-color: var(--tj-hero-yellow) !important;
}

.tj-hero--reference .tj-hero__intro,
.tj-hero--reference .tj-hero__copy p {
  color: var(--tj-hero-copy) !important;
}

.tj-hero--reference .tj-hero__halo {
  background:
    radial-gradient(circle at 39% 29%,
      #ef86b9 0%,
      #e56daf 18%,
      #da589f 35%,
      #c04fa7 50%,
      #a95eb9 64%,
      #9470cb 77%,
      #817fd8 88%,
      rgba(117, 142, 226, 0.40) 96%,
      rgba(117, 142, 226, 0.05) 100%) !important;

  box-shadow:
    0 0 42px rgba(221, 89, 165, 0.16),
    0 0 95px rgba(111, 136, 228, 0.16) !important;
}

.tj-hero--reference .tj-hero__orbit {
  border-color: var(--tj-hero-orbit) !important;
}

/* The reference uses extremely pale background motifs. */
.tj-hero.tj-hero--reference {
  background-blend-mode: normal;
}

/* APPROVAL BUILD: clean nav, screenshot-matched hero, isolated storefront cart */
.tj-header__inner{min-height:84px!important}
.tj-brand img{width:clamp(128px,12vw,168px)!important;max-height:70px!important}
.tj-hero.tj-hero--reference{
 --tj-hero-pink:rgb(255,51,105);--tj-hero-blue:rgb(33,124,255);--tj-hero-yellow:rgb(245,198,21);
 --tj-hero-pill:rgb(255,213,0);--tj-hero-copy:rgb(92,106,140);--tj-hero-orbit:rgb(255,213,42);
 background:
 radial-gradient(circle at 9% 9%,rgba(255,112,151,.24),transparent 31%),
 radial-gradient(circle at 43% 94%,rgba(255,221,94,.19),transparent 27%),
 radial-gradient(circle at 96% 56%,rgba(95,139,255,.17),transparent 34%),
 #fff url("../images/hero-joy-pattern.svg") repeat!important}
.tj-hero--reference .tj-kicker--drop{background:rgb(255,213,0)!important;color:#111!important}
.tj-hero--reference .tj-hero__title span:nth-child(1){color:rgb(255,51,105)!important}
.tj-hero--reference .tj-hero__title span:nth-child(2){color:rgb(33,124,255)!important}
.tj-hero--reference .tj-hero__title span:nth-child(3){color:rgb(245,198,21)!important;-webkit-text-fill-color:rgb(245,198,21)!important}
.tj-hero--reference .tj-hero__intro,.tj-hero--reference .tj-hero__copy p{color:rgb(92,106,140)!important}
.tj-hero--reference .tj-hero__halo{background:radial-gradient(circle at 40% 26%,#ef86b9 0%,#e766ae 20%,#db51a1 39%,#c24daa 57%,#a65bbe 72%,#8b6fd0 84%,rgba(111,139,226,.48) 95%,rgba(111,139,226,.06) 100%)!important}
.tj-hero--reference .tj-hero__orbit{border-color:rgb(255,213,42)!important}
.tj-shop-page{background:#fafafa}
.tj-shop-controls{position:sticky;top:84px!important;z-index:70;padding:.85rem 0 1rem;border-top:1px solid rgba(35,27,46,.08);border-bottom:1px solid rgba(35,27,46,.09);background:rgba(255,255,255,.96);backdrop-filter:blur(16px)}
.tj-shop-controls__inner{display:grid;gap:.8rem}
.tj-shop-controls__top{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.tj-store-bag{display:inline-flex;align-items:center;gap:.55rem;min-height:40px;padding:.55rem .75rem .55rem 1rem;border:1px solid rgba(35,27,46,.13);border-radius:999px;background:#fff;font-weight:900;cursor:pointer}
.tj-filter-row{display:flex;gap:.45rem;overflow-x:auto;scrollbar-width:none}.tj-filter-row::-webkit-scrollbar{display:none}
.tj-search-row{display:grid;grid-template-columns:minmax(0,1fr) minmax(160px,210px);gap:.6rem}
.tj-product-card{border:1px solid rgba(35,27,46,.08);border-radius:18px;background:#fff;box-shadow:none}
.tj-product-card .tj-button--shop{background:#231b2e;color:#fff;box-shadow:none}
.tj-cart-drawer{position:fixed!important;inset:0!important;z-index:1000!important;visibility:hidden;pointer-events:none}
.tj-cart-drawer.is-open{visibility:visible;pointer-events:auto}
.tj-cart-drawer__panel{position:absolute!important;top:0!important;right:0!important;bottom:0!important;width:min(92vw,430px)!important;height:100dvh!important;margin:0!important;border-radius:0!important;background:#fff}
@media(max-width:760px){.tj-header__inner{min-height:70px!important}.tj-brand img{width:122px!important;max-height:58px!important}.tj-shop-controls{top:70px!important}.tj-search-row{grid-template-columns:1fr}}


/* ==========================================================================
   APPROVED STORE BUTTON PALETTE — theme blue + yellow hover
   ========================================================================== */

.tj-header__actions .tj-button--shop,
.tj-store-entry,
.tj-shop-page .tj-button--shop,
.tj-product-card .tj-button--shop,
.tj-cart-drawer .tj-button--shop,
.tj-store-bag {
  background: #217cff !important;
  border-color: #217cff !important;
  color: #ffffff !important;
  box-shadow: none;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.tj-header__actions .tj-button--shop:hover,
.tj-header__actions .tj-button--shop:focus-visible,
.tj-store-entry:hover,
.tj-store-entry:focus-visible,
.tj-shop-page .tj-button--shop:hover,
.tj-shop-page .tj-button--shop:focus-visible,
.tj-product-card .tj-button--shop:hover,
.tj-product-card .tj-button--shop:focus-visible,
.tj-cart-drawer .tj-button--shop:hover,
.tj-cart-drawer .tj-button--shop:focus-visible,
.tj-store-bag:hover,
.tj-store-bag:focus-visible {
  background: #ffd52a !important;
  border-color: #ffd52a !important;
  color: #171717 !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(255, 213, 42, 0.24);
}

.tj-header__actions .tj-button--shop:focus-visible,
.tj-store-entry:focus-visible,
.tj-shop-page .tj-button--shop:focus-visible,
.tj-store-bag:focus-visible {
  outline: 3px solid rgba(33, 124, 255, 0.28);
  outline-offset: 3px;
}


/* ==========================================================================
   APPROVAL CHANGE — 3× LARGER TOP-NAV LOGO
   ========================================================================== */
.tj-brand {
  flex: 0 0 auto;
  overflow: visible;
}

.tj-brand img {
  width: clamp(300px, 30vw, 420px) !important;
  max-width: none !important;
  max-height: 150px !important;
  height: auto !important;
}

.tj-header__inner {
  min-height: 150px !important;
}

@media (max-width: 1100px) {
  .tj-brand img {
    width: clamp(230px, 27vw, 320px) !important;
    max-height: 125px !important;
  }

  .tj-header__inner {
    min-height: 125px !important;
  }
}

@media (max-width: 760px) {
  .tj-brand img {
    width: 220px !important;
    max-height: 105px !important;
  }

  .tj-header__inner {
    min-height: 105px !important;
  }
}


/* ==========================================================================
   TOP-LEFT LOGO — TRUE 3× VISUAL SCALE
   Keeps navigation vertically compact while enlarging the logo artwork.
   ========================================================================== */
.tj-header {
  overflow: visible !important;
}

.tj-header__inner {
  min-height: 96px !important;
  overflow: visible !important;
}

.tj-brand {
  position: relative;
  z-index: 5;
  width: 180px !important;
  height: 76px !important;
  flex: 0 0 180px !important;
  overflow: visible !important;
}

.tj-brand img {
  position: absolute !important;
  left: 0 !important;
  top: 50% !important;
  width: 360px !important;
  max-width: none !important;
  max-height: none !important;
  height: auto !important;
  transform: translateY(-50%) !important;
  transform-origin: left center !important;
}

.tj-primary-nav {
  margin-left: 180px !important;
}

@media (max-width: 1100px) {
  .tj-brand {
    width: 145px !important;
    height: 70px !important;
    flex-basis: 145px !important;
  }
  .tj-brand img {
    width: 290px !important;
  }
  .tj-primary-nav {
    margin-left: 145px !important;
  }
}

@media (max-width: 760px) {
  .tj-header__inner {
    min-height: 82px !important;
  }
  .tj-brand {
    width: 120px !important;
    height: 62px !important;
    flex-basis: 120px !important;
  }
  .tj-brand img {
    width: 240px !important;
  }
  .tj-primary-nav {
    margin-left: 0 !important;
  }
}


/* ==========================================================================
   TOP-NAV LOGO VISIBILITY FIX — cropped asset, stable layout
   ========================================================================== */
.tj-header,
.tj-header__inner {
  overflow: visible !important;
}

.tj-header__inner {
  min-height: 138px !important;
  display: flex !important;
  align-items: center !important;
}

.tj-brand.tj-brand--image-only {
  position: static !important;
  display: flex !important;
  align-items: center !important;
  width: 330px !important;
  height: auto !important;
  flex: 0 0 330px !important;
  overflow: visible !important;
}

.tj-brand.tj-brand--image-only img {
  position: static !important;
  display: block !important;
  width: 330px !important;
  max-width: 330px !important;
  max-height: none !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.tj-primary-nav {
  margin-left: auto !important;
}

@media (max-width: 1180px) {
  .tj-header__inner {
    min-height: 118px !important;
  }

  .tj-brand.tj-brand--image-only {
    width: 260px !important;
    flex-basis: 260px !important;
  }

  .tj-brand.tj-brand--image-only img {
    width: 260px !important;
    max-width: 260px !important;
  }
}

@media (max-width: 760px) {
  .tj-header__inner {
    min-height: 96px !important;
  }

  .tj-brand.tj-brand--image-only {
    width: 205px !important;
    flex-basis: 205px !important;
  }

  .tj-brand.tj-brand--image-only img {
    width: 205px !important;
    max-width: 205px !important;
  }
}


/* ==========================================================================
   HERO CHARACTER VISIBILITY + ANIMATION FIX
   Above-fold artwork is always rendered; animation stays on each character.
   ========================================================================== */
.tj-hero--reference .tj-hero__stage {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.tj-hero--reference .tj-hero__character {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.tj-hero--reference .tj-hero__character--archer {
  z-index: 4 !important;
  animation: tjReferenceArcherFloat 7.2s ease-in-out infinite !important;
}

.tj-hero--reference .tj-hero__character--acai {
  z-index: 6 !important;
  animation: tjReferenceAcaiFloat 5.7s ease-in-out infinite !important;
}

.tj-hero--reference .tj-hero__archer,
.tj-hero--reference .tj-hero__acai {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}


/* FINAL TOP-NAV LOGO SIZE CHANGE — 2× approved size. No other changes. */
.tj-brand.tj-brand--image-only {
  width: 660px !important;
  flex-basis: 660px !important;
}

.tj-brand.tj-brand--image-only img {
  width: 660px !important;
  max-width: 660px !important;
}

@media (max-width: 1180px) {
  .tj-brand.tj-brand--image-only {
    width: 520px !important;
    flex-basis: 520px !important;
  }

  .tj-brand.tj-brand--image-only img {
    width: 520px !important;
    max-width: 520px !important;
  }
}

@media (max-width: 760px) {
  .tj-brand.tj-brand--image-only {
    width: 410px !important;
    flex-basis: 410px !important;
  }

  .tj-brand.tj-brand--image-only img {
    width: 410px !important;
    max-width: 410px !important;
  }
}


/* TOP-NAV LOGO — reduced by 1× from the previous 2× enlargement. */
.tj-brand.tj-brand--image-only {
  width: 330px !important;
  flex-basis: 330px !important;
}

.tj-brand.tj-brand--image-only img {
  width: 330px !important;
  max-width: 330px !important;
}

@media (max-width: 1180px) {
  .tj-brand.tj-brand--image-only {
    width: 260px !important;
    flex-basis: 260px !important;
  }

  .tj-brand.tj-brand--image-only img {
    width: 260px !important;
    max-width: 260px !important;
  }
}

@media (max-width: 760px) {
  .tj-brand.tj-brand--image-only {
    width: 205px !important;
    flex-basis: 205px !important;
  }

  .tj-brand.tj-brand--image-only img {
    width: 205px !important;
    max-width: 205px !important;
  }
}
