/** Shopify CDN: Minification failed

Line 397:24 Expected ":"
Line 397:47 Expected ":"
Line 397:71 Expected ":"
Line 397:92 Expected ":"
Line 397:124 Expected ":"
Line 397:149 Expected ":"
Line 397:223 Expected ":"
Line 397:275 Expected ":"
Line 945:3 Unexpected "="

**/
/* ==========================================================================
   TOWERBUDDIES — Custom Theme Styles
   Modern, playful, gamer-fantasy ecommerce theme
   ========================================================================== */

/* --- DESIGN TOKENS --- */
:root {
  --tb-blue: #4361EE;
  --tb-blue-dark: #3A56D4;
  --tb-blue-darker: #1B2138;
  --tb-blue-light: #EEF2FF;
  --tb-coral: #FF6B6B;
  --tb-coral-dark: #E85D5D;
  --tb-navy: #1B2138;
  --tb-navy-light: #2D3561;
  --tb-white: #FFFFFF;
  --tb-gray-50: #F8FAFC;
  --tb-gray-100: #F1F5F9;
  --tb-gray-200: #E2E8F0;
  --tb-gray-300: #CBD5E1;
  --tb-gray-400: #94A3B8;
  --tb-gray-500: #64748B;
  --tb-gray-600: #475569;
  --tb-gray-700: #334155;
  --tb-gray-800: #1E293B;
  --tb-gray-900: #0F172A;
  --tb-success: #10B981;
  --tb-warning: #F59E0B;
  --tb-font-heading: 'Nunito', system-ui, -apple-system, sans-serif;
  --tb-font-body: system-ui, -apple-system, 'Segoe UI', sans-serif;
  --tb-radius-xs: 6px;
  --tb-radius-sm: 8px;
  --tb-radius: 12px;
  --tb-radius-lg: 16px;
  --tb-radius-xl: 24px;
  --tb-radius-pill: 100px;
  --tb-shadow-sm: 0 1px 3px rgba(15,23,42,.06),0 1px 2px rgba(15,23,42,.04);
  --tb-shadow: 0 4px 16px rgba(15,23,42,.08);
  --tb-shadow-md: 0 8px 30px rgba(15,23,42,.1);
  --tb-shadow-lg: 0 16px 48px rgba(15,23,42,.12);
  --tb-transition: .25s cubic-bezier(.4,0,.2,1);
  --tb-transition-slow: .5s cubic-bezier(.4,0,.2,1);
  --tb-container: 1200px;
  --tb-container-sm: 720px;
}

/* --- LAYOUT --- */
.tb-container {
  width: 100%;
  max-width: var(--tb-container);
  margin-inline: auto;
  padding-inline: 20px;
}
.tb-container--sm { max-width: var(--tb-container-sm); }

/* --- BUTTONS --- */
.tb-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--tb-font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--tb-radius-pill);
  padding: 14px 32px;
  cursor: pointer;
  transition: all var(--tb-transition);
  white-space: nowrap;
  line-height: 1;
}
.tb-btn--primary {
  background: var(--tb-coral);
  color: var(--tb-white);
  border-color: var(--tb-coral);
}
.tb-btn--primary:hover {
  background: var(--tb-coral-dark);
  border-color: var(--tb-coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,107,107,.35);
}
.tb-btn--blue {
  background: var(--tb-blue);
  color: var(--tb-white);
  border-color: var(--tb-blue);
}
.tb-btn--blue:hover {
  background: var(--tb-blue-dark);
  border-color: var(--tb-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(67,97,238,.35);
}
.tb-btn--outline {
  background: transparent;
  color: var(--tb-white);
  border-color: rgba(255,255,255,.4);
}
.tb-btn--outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--tb-white);
}
.tb-btn--outline-dark {
  background: transparent;
  color: var(--tb-gray-800);
  border-color: var(--tb-gray-300);
}
.tb-btn--outline-dark:hover {
  border-color: var(--tb-blue);
  color: var(--tb-blue);
}
.tb-btn--sm { font-size: .875rem; padding: 10px 20px; }
.tb-btn--lg { font-size: 1.0625rem; padding: 18px 40px; }
.tb-btn--full { width: 100%; }

/* --- BADGES / TAGS --- */
.tb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tb-font-heading);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 6px 14px;
  border-radius: var(--tb-radius-pill);
  line-height: 1;
}
.tb-badge--blue { background: var(--tb-blue-light); color: var(--tb-blue); }
.tb-badge--coral { background: #FFF1F1; color: var(--tb-coral); }
.tb-badge--dark { background: var(--tb-navy); color: var(--tb-white); }

.tb-tag {
  display: inline-flex;
  align-items: center;
  font-size: .8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--tb-radius-pill);
  background: var(--tb-gray-100);
  color: var(--tb-gray-600);
  line-height: 1;
}

/* --- SECTION SPACING --- */
.tb-section { padding-block: 80px; }
.tb-section--lg { padding-block: 100px; }
@media (max-width: 749px) {
  .tb-section { padding-block: 56px; }
  .tb-section--lg { padding-block: 72px; }
}

/* --- ANIMATIONS --- */
@keyframes tb-float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(3deg); }
}
@keyframes tb-float-reverse {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(12px) rotate(-2deg); }
}
@keyframes tb-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.tb-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.tb-animate.tb-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   HERO — WELCOME TO THE ARENA
   ========================================================================== */
.tb-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92vh;
  background: var(--tb-navy);
  overflow: hidden;
  text-align: center;
}
.tb-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.tb-hero__bg--mobile {
  display: none;
}
@media (max-width: 749px) {
  .tb-hero__bg--desktop { display: none; }
  .tb-hero__bg--mobile { display: block; }
}
.tb-hero__pattern {
  display: none;
}
/* Floating decorative blobs — hidden for image-based hero */\n.tb-hero__decor { display: none; }
.tb-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 1;
  pointer-events: none;
}
.tb-hero__content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 720px;
  margin-inline: auto;
}
.tb-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--tb-font-heading);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}
.tb-hero__eyebrow svg { width: 18px; height: 18px; }
.tb-hero__title {
  font-family: var(--tb-font-heading);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 900;
  color: var(--tb-white);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 4px 30px rgba(0,0,0,.3);
}
.tb-hero__title em {
  color: var(--tb-coral);
  font-style: normal;
  position: relative;
}
.tb-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,.9);
  line-height: 1.7;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
  max-width: 540px;
  margin-inline: auto;
  margin-bottom: 36px;
}
.tb-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.tb-hero__trust {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.tb-hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.tb-hero__trust-item svg { width: 18px; height: 18px; opacity: .9; }
@media (max-width: 749px) {
  .tb-hero { min-height: 88vh; }
  .tb-hero__content { padding: 100px 20px 60px; }
  .tb-hero__trust { gap: 16px; font-size: .8125rem; }
  .tb-hero__decor { display: none; }
  .tb-hero__actions { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */
.tb-trust-bar {
  background: var(--tb-white);
  border-bottom: 1px solid var(--tb-gray-200);
  padding-block: 18px;
}
.tb-trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.tb-trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: var(--tb-gray-600);
}
.tb-trust-bar__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--tb-radius);
  background: var(--tb-blue-light);
  color: var(--tb-blue);
  flex-shrink: 0;
}
.tb-trust-bar__icon svg { width: 18px; height: 18px; }
@media (max-width: 749px) {
  .tb-trust-bar__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    justify-items: start;
    max-width: 340px;
    margin-inline: auto;
  }
  .tb-trust-bar__item {
    font-size: .8125rem;
    gap: 10px;
  }
  .tb-trust-bar__icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }
}

/* ==========================================================================
   FEATURED CREW (Product Grid)
   ========================================================================== */
.tb-crew { background: var(--tb-gray-50); }
.tb-crew__header { text-align: center; margin-bottom: 48px; }
.tb-crew__eyebrow {
  font-family: var(--tb-font-heading); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tb-blue);
  margin-bottom: 12px;
}
.tb-crew__title {
  font-family: var(--tb-font-heading); font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 900; color: var(--tb-gray-900); margin-bottom: 12px; letter-spacing: -.02em;
}
.tb-crew__subtitle {
  font-size: 1.0625rem; color: var(--tb-gray-500); max-width: 520px;
  margin-inline: auto; line-height: 1.6;
}
.tb-crew__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.tb-crew-card {
  background: var(--tb-white);
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
  transition: all var(--tb-transition);
  border: 1px solid var(--tb-gray-200);
}
.tb-crew-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tb-shadow-md);
  border-color: transparent;
}
.tb-crew-card__media {\n  position: relative;\n  aspect-ratio: 1 / 1;\n  overflow: hidden;\n  background: var(--tb-white);\n}\n.tb-crew-card__img {\n  width: 100%; height: 100%; object-fit: cover; object-position: center;\n  transition: transform var(--tb-transition-slow);\n}
.tb-crew-card:hover .tb-crew-card__img { transform: scale(1.06); }
.tb-crew-card__type-badge { position: absolute; top: 12px; left: 12px; z-index: 2; }
.tb-crew-card__info { padding: 20px; }
.tb-crew-card__name {
  font-family: var(--tb-font-heading); font-size: 1.125rem;
  font-weight: 800; margin-bottom: 4px;
}
.tb-crew-card__name a { color: var(--tb-gray-900); text-decoration: none; }
.tb-crew-card__name a:hover { color: var(--tb-blue); }
.tb-crew-card__price {
  font-family: var(--tb-font-heading); font-size: .95rem;
  font-weight: 700; color: var(--tb-blue); margin-bottom: 16px;
}
.tb-crew-card__compare {
  font-size: .875rem; font-weight: 500;
  color: var(--tb-gray-400); text-decoration: line-through; margin-left: 8px;
}
.tb-crew__footer { text-align: center; }
.tb-crew__promo {
  font-family: var(--tb-font-heading);
  font-size: .9rem;
  font-weight: 700;
  color: var(--tb-blue, #4361EE);
  margin: 0 0 12px;
  letter-spacing: .01em;
}
@media (max-width: 999px) {
  .tb-crew__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 549px) {
  .tb-crew__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
  .tb-crew-card__info { padding: 14px; }
  .tb-crew-card__name { font-size: .9375rem; }
}

/* ==========================================================================
   VIDEO SHORTS
   ========================================================================== */
.tb-shorts { background: var(--tb-white); }
.tb-shorts__header { text-align: center; margin-bottom: 40px; }
.tb-shorts__eyebrow {
  font-family: var(--tb-font-heading); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tb-blue);
  margin-bottom: 12px;
}
.tb-shorts__title {
  font-family: var(--tb-font-heading); font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 900; color: var(--tb-gray-900); margin-bottom: 12px; letter-spacing: -.02em;
}
.tb-shorts__subtitle {
  font-size: 1.0625rem; color: var(--tb-gray-500); max-width: 520px;
  margin-inline: auto; line-height: 1.6;
}
.tb-shorts__track { position: relative; }
.tb-shorts__slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.tb-shorts__slider::-webkit-scrollbar { display: none; }
.tb-shorts__item {
  flex: 0 0 calc(33.333% - 11px);
  scroll-snap-align: start;
  min-width: 0;
}
.tb-shorts__frame {
  position: relative;
  width: 100%;
  padding-bottom: 177.78%; /* 9:16 vertical shorts */
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
  background: var(--tb-gray-100);
}
.tb-shorts__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--tb-radius-lg);
}
.tb-shorts__caption {
  font-family: var(--tb-font-body);
  font-size: .875rem;
  font-weight: 600;
  color: var(--tb-gray-600);
  text-align: center;
  margin-top: 10px;
}
.tb-shorts__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--tb-white);
  border: 1px solid var(--tb-gray-200);
  color: var(--tb-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.12);
  transition: all .2s ease;
}
.tb-shorts__arrow:hover {
  background: var(--tb-blue);
  color: var(--tb-white);
  border-color: var(--tb-blue);
}
.tb-shorts__arrow--prev { left: -12px; }
.tb-shorts__arrow--next { right: -12px; }
@media (max-width: 749px) {
  .tb-shorts__item {
    flex: 0 0 85%;
  }
  .tb-shorts__arrow {
    display: flex;
  }
  .tb-shorts__arrow--prev { left: 6px; }
  .tb-shorts__arrow--next { right: 6px; }
}

/* ==========================================================================
   STORY STEPS — Choose Your Buddy
   ========================================================================== */
.tb-story { background: var(--tb-white); }
.tb-story__header { text-align: center; margin-bottom: 56px; }
.tb-story__eyebrow {
  font-family: var(--tb-font-heading); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tb-blue); margin-bottom: 12px;
}
.tb-story__title {
  font-family: var(--tb-font-heading); font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 900; color: var(--tb-gray-900); letter-spacing: -.02em; margin-bottom: 12px;
}
.tb-story__subtitle {
  font-size: 1.0625rem; color: var(--tb-gray-500); max-width: 520px;
  margin-inline: auto; line-height: 1.6;
}
.tb-story__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 32px;
  position: relative;
}
.tb-story__grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.66% + 40px);
  right: calc(16.66% + 40px);
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--tb-gray-300) 0, var(--tb-gray-300) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.tb-story-step { text-align: center; position: relative; z-index: 1; }
.tb-story-step__icon {
  display: flex; align-items: center; justify-content: center;
  width: 96px; height: 96px; margin: 0 auto 24px;
  border-radius: var(--tb-radius-xl);
  background: var(--tb-blue-light); color: var(--tb-blue);
  transition: all var(--tb-transition);
}
.tb-story-step__icon svg { width: 36px; height: 36px; }
.tb-story-step:hover .tb-story-step__icon {
  background: var(--tb-blue); color: var(--tb-white); transform: scale(1.08);
}
.tb-story-step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--tb-blue); color: var(--tb-white);
  font-family: var(--tb-font-heading); font-weight: 800; font-size: .8125rem;
  margin-bottom: 12px;
}
.tb-story-step__title {
  font-family: var(--tb-font-heading); font-size: 1.25rem; font-weight: 700;
  color: var(--tb-gray-900); margin-bottom: 8px;
}
.tb-story-step__text {
  font-size: .9375rem; color: var(--tb-gray-500); line-height: 1.6;
  max-width: 280px; margin-inline: auto;
}
.tb-story__footer { text-align: center; margin-top: 48px; }
@media (max-width: 749px) {
  .tb-story__grid {
    grid-template-columns: 1fr; gap: 40px;
    max-width: 360px; margin-inline: auto;
  }
  .tb-story__grid::before { display: none; }
}

/* ==========================================================================
   WHY TOWERBUDDIES
   ========================================================================== */
.tb-why { background: var(--tb-gray-50); }
.tb-why__header { text-align: center; margin-bottom: 56px; }
.tb-why__eyebrow {
  font-family: var(--tb-font-heading); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tb-blue); margin-bottom: 12px;
}
.tb-why__title {
  font-family: var(--tb-font-heading); font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 900; color: var(--tb-gray-900); letter-spacing: -.02em; margin-bottom: 12px;
}
.tb-why__subtitle {
  font-size: 1.0625rem; color: var(--tb-gray-500); max-width: 560px;
  margin-inline: auto; line-height: 1.6;
}
.tb-why__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.tb-why-card {
  background: var(--tb-white);
  border-radius: var(--tb-radius-lg);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--tb-gray-200);
  transition: all var(--tb-transition);
}
.tb-why-card:hover {
  border-color: var(--tb-blue-light);
  box-shadow: var(--tb-shadow);
  transform: translateY(-4px);
}
.tb-why-card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: var(--tb-radius);
  background: var(--tb-blue-light); color: var(--tb-blue);
  margin: 0 auto 20px;
}
.tb-why-card__icon svg { width: 24px; height: 24px; }
.tb-why-card__title {
  font-family: var(--tb-font-heading); font-size: 1.0625rem;
  font-weight: 700; color: var(--tb-gray-900); margin-bottom: 8px;
}
.tb-why-card__text {
  font-size: .875rem; color: var(--tb-gray-500); line-height: 1.6;
}
@media (max-width: 999px) { .tb-why__grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 549px) { .tb-why__grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   GUILD SIGNUP (Email Capture)
   ========================================================================== */
.tb-guild {
  background: var(--tb-navy);
  position: relative;
  overflow: hidden;
}
.tb-guild__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.tb-guild__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1;
  pointer-events: none;
}
.tb-guild__pattern {
  display: none;
}
.tb-guild__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 560px; margin-inline: auto;
}
.tb-guild__icon {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; border-radius: var(--tb-radius-lg);
  background: rgba(255,255,255,.08); color: var(--tb-coral);
  margin: 0 auto 24px;
}
.tb-guild__icon svg { width: 28px; height: 28px; }
.tb-guild__title {
  font-family: var(--tb-font-heading);
  font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 900; color: var(--tb-white); margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.6), 0 4px 30px rgba(0,0,0,.3);
}
.tb-guild__subtitle {
  font-size: 1.0625rem; color: rgba(255,255,255,.9);
  line-height: 1.7; margin-bottom: 36px;
  text-shadow: 0 1px 4px rgba(0,0,0,.5);
}
.tb-guild-form { display: flex; gap: 12px; max-width: 480px; margin-inline: auto; }
.tb-guild-form__input {
  flex: 1; padding: 16px 20px;
  border-radius: var(--tb-radius-pill);
  border: 2px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.08);
  color: var(--tb-white); font-size: 1rem;
  outline: none; transition: all var(--tb-transition);
}
.tb-guild-form__input::placeholder { color: rgba(255,255,255,.4); }
.tb-guild-form__input:hover,
.tb-guild-form__input:focus {
  border-color: var(--tb-coral);
  background: rgba(255,255,255,.12) !important;
}
.tb-guild-form__btn { flex-shrink: 0; }
.tb-guild__note {
  font-size: .8125rem; color: rgba(255,255,255,.5); margin-top: 16px;
  text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.tb-guild__success {
  color: var(--tb-success); font-weight: 600; font-size: 1.0625rem;
  display: none; text-align: center; padding: 20px;
}
.tb-guild-form--success .tb-guild-form { display: none; }
.tb-guild-form--success .tb-guild__success { display: block; }
@media (max-width: 549px) {
  .tb-guild-form { flex-direction: column; }
}

/* ==========================================================================
   REVIEWS / SOCIAL PROOF
   ========================================================================== */
.tb-reviews { background: var(--tb-white); }
.tb-reviews__header { text-align: center; margin-bottom: 48px; }
.tb-reviews__eyebrow {
  font-family: var(--tb-font-heading); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tb-blue); margin-bottom: 12px;
}
.tb-reviews__title {
  font-family: var(--tb-font-heading); font-size: clamp(1.75rem,4vw,2.5rem);
  font-weight: 900; color: var(--tb-gray-900); letter-spacing: -.02em;
}
.tb-reviews__count {
  font-family: var(--tb-font-body);
  font-size: .9375rem;
  color: var(--tb-gray-400);
  margin-top: 8px;
  letter-spacing: .01em;
}
.tb-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.tb-review-card {
  background: var(--tb-gray-50);
  border-radius: var(--tb-radius-lg);
  padding: 28px;
  border: 1px solid var(--tb-gray-200);
}
.tb-review-card__stars {
  display: flex; gap: 2px; margin-bottom: 16px; color: var(--tb-warning);
}
.tb-review-card__stars svg { width: 18px; height: 18px; fill: currentColor; }
.tb-review-card__text {
  font-size: .9375rem; color: var(--tb-gray-700); line-height: 1.7; margin-bottom: 20px;
}
.tb-review-card__author { display: flex; align-items: center; gap: 12px; }
.tb-review-card__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--tb-blue-light); color: var(--tb-blue);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--tb-font-heading); font-weight: 800; font-size: 1rem;
  flex-shrink: 0;
}
.tb-review-card__name { font-weight: 600; font-size: .9375rem; color: var(--tb-gray-900); }
.tb-review-card__meta { font-size: .8125rem; color: var(--tb-gray-400); }
@media (max-width: 999px) {
  .tb-reviews__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
}

/* ==========================================================================
   PRODUCT — CHARACTER CARD INFO
   ========================================================================== */
.tb-product-char { background: var(--tb-gray-50); }
.tb-product-char__inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
/* Deal Banner */
.tb-deal {
  grid-column: 1/-1;
  background: linear-gradient(135deg, var(--tb-blue) 0%, var(--tb-blue-dark) 100%);
  border-radius: var(--tb-radius-lg);
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.tb-deal__icon { color: var(--tb-white); opacity: .8; flex-shrink: 0; }
.tb-deal__icon svg { width: 28px; height: 28px; }
.tb-deal__text { flex: 1; min-width: 200px; }
.tb-deal__heading {
  font-family: var(--tb-font-heading); font-size: 1.125rem;
  font-weight: 800; color: var(--tb-white); margin-bottom: 2px;
}
.tb-deal__sub { font-size: .875rem; color: rgba(255,255,255,.65); }
.tb-deal__tiers { display: flex; gap: 12px; flex-wrap: wrap; }
.tb-deal__tier {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.15); border-radius: var(--tb-radius-pill);
  padding: 10px 20px;
}
.tb-deal__tier-qty {
  font-family: var(--tb-font-heading); font-weight: 800; font-size: 1.125rem;
  color: var(--tb-coral);
}
.tb-deal__tier-label { font-size: .875rem; font-weight: 600; color: rgba(255,255,255,.9); }

/* Character Info Card */
.tb-char-card {
  background: var(--tb-white); border-radius: var(--tb-radius-lg);
  padding: 32px; border: 1px solid var(--tb-gray-200);
}
.tb-char-card__section {
  margin-bottom: 24px; padding-bottom: 24px;
  border-bottom: 1px solid var(--tb-gray-100);
}
.tb-char-card__section:last-child {
  margin-bottom: 0; padding-bottom: 0; border-bottom: none;
}
.tb-char-card__label {
  font-family: var(--tb-font-heading); font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .1em; color: var(--tb-gray-400);
  margin-bottom: 10px;
}
.tb-char-card__type {
  font-family: var(--tb-font-heading); font-size: 1.125rem;
  font-weight: 700; color: var(--tb-blue);
}
.tb-char-card__lore {
  font-size: .9375rem; color: var(--tb-gray-600); line-height: 1.7;
}
.tb-char-card__traits { display: flex; flex-wrap: wrap; gap: 8px; }

/* Specs Table */
.tb-specs {
  background: var(--tb-white); border-radius: var(--tb-radius-lg);
  padding: 32px; border: 1px solid var(--tb-gray-200);
}
.tb-specs__title {
  font-family: var(--tb-font-heading); font-size: 1.125rem;
  font-weight: 700; color: var(--tb-gray-900); margin-bottom: 20px;
}
.tb-specs__table { width: 100%; border-collapse: collapse; }
.tb-specs__table tr + tr { border-top: 1px solid var(--tb-gray-100); }
.tb-specs__table td { padding: 12px 0; font-size: .9375rem; }
.tb-specs__table td:first-child { font-weight: 600; color: var(--tb-gray-700); width: 40%; }
.tb-specs__table td:last-child { color: var(--tb-gray-500); }

/* FAQ Accordion */
.tb-faq { grid-column: 1/-1; }
.tb-faq__title {
  font-family: var(--tb-font-heading); font-size: 1.5rem;
  font-weight: 800; color: var(--tb-gray-900); margin-bottom: 24px;
}
.tb-faq-item {
  background: var(--tb-white); border: 1px solid var(--tb-gray-200);
  border-radius: var(--tb-radius); margin-bottom: 8px;
  overflow: hidden; transition: border-color var(--tb-transition);
}
.tb-faq-item[open] { border-color: var(--tb-blue-light); }
.tb-faq-item summary {
  padding: 18px 24px;
  font-family: var(--tb-font-heading); font-weight: 700; font-size: .9375rem;
  color: var(--tb-gray-800); cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  list-style: none;
}
.tb-faq-item summary::-webkit-details-marker { display: none; }
.tb-faq-item summary::after {
  content: '+'; font-size: 1.25rem; font-weight: 300; color: var(--tb-gray-400);
  transition: transform var(--tb-transition);
}
.tb-faq-item[open] summary::after { content: '\2212'; color: var(--tb-blue); }
.tb-faq-item__answer {
  padding: 0 24px 18px; font-size: .9375rem;
  color: var(--tb-gray-600); line-height: 1.7;
}
@media (max-width: 749px) {
  .tb-product-char__inner { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CROSS-SELL — Complete Your Squad
   ========================================================================== */
.tb-cross-sell { background: var(--tb-white); }
.tb-cross-sell__header { text-align: center; margin-bottom: 40px; }
.tb-cross-sell__eyebrow {
  font-family: var(--tb-font-heading); font-size: .8125rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em; color: var(--tb-blue); margin-bottom: 12px;
}
.tb-cross-sell__title {
  font-family: var(--tb-font-heading); font-size: clamp(1.5rem,3vw,2rem);
  font-weight: 900; color: var(--tb-gray-900); letter-spacing: -.02em;
}
.tb-cross-sell__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
@media (max-width: 999px) {
  .tb-cross-sell__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 549px) {
  .tb-cross-sell__grid { grid-template-columns: repeat(2,1fr); gap: 12px; }
}

/* ==========================================================================
   PRODUCT PAGE TRUST LINE
   ========================================================================== */
.tb-product-trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  padding: 16px; border-radius: var(--tb-radius);
  background: var(--tb-gray-50); border: 1px solid var(--tb-gray-200);
  margin-top: 16px;
}
.tb-product-trust__item {
  display: flex; align-items: center; gap: 8px;
  font-size: .8125rem; font-weight: 600; color: var(--tb-gray-600);
}
.tb-product-trust__item svg {
  width: 16px; height: 16px; color: var(--tb-blue); flex-shrink: 0;
}

/* ==========================================================================
   ACCESSIBILITY
   ========================================================================== */
.tb-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;
}

/* ==========================================================================
   PRODUCT PAGE OVERRIDES (brand consistency on Horizon product-information)
   ========================================================================== */
.product-information {
  font-family: var(--tb-font-body);
}


   HEADER & ANNOUNCEMENT BAR
   ========================================================================== */

/* Announcement bar — navy bg with accent text */
.header-announcements {
  font-family: var(--tb-font-body) !important;
  font-weight: 600;
  letter-spacing: .03em;
}

/* Header bar — branded font */
.header {
  font-family: var(--tb-font-body);
}
.header .header__heading-text {
  font-family: var(--tb-font-heading);
  font-weight: 800;
  letter-spacing: -.02em;
}

/* ==========================================================================
   MOBILE DRAWER MENU
   ========================================================================== */

/* Panel background — clean white */
.menu-drawer {
  background: #ffffff !important;
  color: var(--tb-navy) !important;
  font-family: var(--tb-font-body);
}

/* Close button */
.menu-drawer .menu-drawer__close-button,
.menu-drawer .close-button {
  color: rgba(0,0,0,.5) !important;
  transition: color .2s ease;
}
.menu-drawer .menu-drawer__close-button:hover,
.menu-drawer .close-button:hover {
  color: var(--tb-blue) !important;
}

/* Navigation links */
.menu-drawer__menu-item {
  color: var(--tb-navy) !important;
  font-family: var(--tb-font-heading);
  font-weight: 700;
  font-size: 1.25rem !important;
  letter-spacing: -.01em;
  padding: 14px var(--drawer-padding, 20px) !important;
  transition: color .2s ease, background .2s ease, padding-left .2s ease;
  border-radius: 0;
  text-decoration: none !important;
}
.menu-drawer__menu-item:hover,
.menu-drawer__menu-item:focus-visible {
  color: var(--tb-blue) !important;
  background: rgba(0,0,0,.03) !important;
  padding-left: calc(var(--drawer-padding, 20px) + 6px) !important;
}

/* Active page link */
.menu-drawer__menu-item[aria-current="page"],
.menu-drawer__menu-item--active {
  color: var(--tb-blue) !important;
  position: relative;
}
.menu-drawer__menu-item[aria-current="page"]::before,
.menu-drawer__menu-item--active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 24px;
  border-radius: 4px;
  background: var(--tb-blue);
}

/* List item dividers */
.menu-drawer__list-item--divider {
  border-color: rgba(0,0,0,.08) !important;
}

/* Link text */
.menu-drawer__menu-item-text {
  color: inherit !important;
}

/* Utility links at bottom */
.menu-drawer__utility-links {
  border-color: rgba(0,0,0,.08) !important;
  color: rgba(0,0,0,.45) !important;
}

/* Backdrop */
.menu-drawer__backdrop {
  background: rgba(0,0,0,.4) !important;
  backdrop-filter: blur(4px) brightness(.7) !important;
}

/* Smooth entrance animation override */
.menu-drawer__animated-element {
  color: var(--tb-navy);
}

/* ==========================================================================
   COLLECTION / CATALOG PAGE
   ========================================================================== */

/* --- Collection Header --- */
.section--collection-heading {
  font-family: var(--tb-font-body);
}
.section--collection-heading h1 {
  font-family: var(--tb-font-heading);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--tb-navy);
}

/* --- Product Grid --- */
.product-grid-container {
  font-family: var(--tb-font-body);
}

.product-grid .product-card__content {
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-grid .product-card:hover .product-card__content {
  box-shadow: 0 8px 24px rgba(67,97,238,.12);
}

/* Card images */
.product-grid .card-gallery {
  border-radius: var(--tb-radius-lg);
  overflow: hidden;
}

/* Product title in grid */
.product-grid .product-card__content [class*="product-title"],
.product-grid .product-card__content .product-title {
  font-family: var(--tb-font-heading);
  font-weight: 700;
  color: var(--tb-navy);
}

/* Price styling */
.product-grid .product-card__content .price__current,
.product-grid .product-card__content .price {
  font-weight: 700;
  color: var(--tb-blue);
}

/* Quick add button on catalog cards (scoped — excludes gallery arrows) */
.product-grid .product-card quick-add-component .button,
.product-grid .product-card [class*="quick-add"] button:not(.slideshow-control) {
  background: var(--tb-blue);
  color: var(--tb-white);
  border: none;
  border-radius: var(--tb-radius-pill);
  font-weight: 700;
  font-family: var(--tb-font-body);
  transition: background .2s ease, transform .15s ease;
}
.product-grid .product-card .quick-add__button .add-to-cart-text {
  background: transparent;
}
.product-grid .product-card quick-add-component .button:hover,
.product-grid .product-card [class*="quick-add"] button:not(.slideshow-control):hover {
  background: var(--tb-blue-dark);
  transform: translateY(-1px);
}

/* Gallery arrows — clean white, no background */
.product-grid .product-card slideshow-arrows {
  mix-blend-mode: normal;
}
.product-grid .product-card slideshow-arrows .slideshow-control {
  background: transparent;
  color: var(--tb-white);
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45));
}

/* Filters bar */
.collection-wrapper [class*="filter"],
.collection-wrapper [class*="Filter"] {
  font-family: var(--tb-font-body);
}

/* Pagination */
.product-grid-container .pagination,
.product-grid-container nav[role="navigation"] {
  font-family: var(--tb-font-body);
}
.product-grid-container .pagination a,
.product-grid-container nav[role="navigation"] a {
  border-radius: var(--tb-radius-md);
  font-weight: 600;
}
.product-grid-container .pagination a:hover,
.product-grid-container nav[role="navigation"] a:hover {
  background: var(--tb-blue-light);
  color: var(--tb-blue);
}
.product-grid-container .pagination .current,
.product-grid-container nav[role="navigation"] [aria-current="page"] {
  background: var(--tb-blue);
  color: var(--tb-white);
  border-radius: var(--tb-radius-md);
}

/* ======================================================================
   TowerBuddies — Cart Featured Collection
   Styled to match the Product Recommendations section.
   ====================================================================== */

/* ---------- section background ------------------------------------------- */
[data-template="cart"] .ui-test-product-list .section-background {
  background: #fff !important;
}
[data-template="cart"] .ui-test-product-list .section-resource-list {
  background: #fff !important;
}

/* ---------- header — TB style -------------------------------------------- */
[data-template="cart"] .ui-test-product-list .section-resource-list__header {
  text-align: center !important;
  margin-bottom: 32px !important;
}

[data-template="cart"] .ui-test-product-list .section-resource-list__header .blocks__heading,
[data-template="cart"] .ui-test-product-list .section-resource-list__header h2,
[data-template="cart"] .ui-test-product-list .section-resource-list__header h3,
[data-template="cart"] .ui-test-product-list .section-resource-list__header [class*="heading"] {
  font-family: var(--tb-font-heading, 'Nunito', sans-serif) !important;
  font-size: clamp(1.75rem, 4vw, 2.5rem) !important;
  font-weight: 900 !important;
  color: var(--tb-gray-900, #1a1a2e) !important;
  letter-spacing: -.02em !important;
}

/* "View all" button — pill style in TB blue */
[data-template="cart"] .ui-test-product-list .section-resource-list__content .button,
[data-template="cart"] .ui-test-product-list .section-resource-list__content a[class*="button"] {
  background: var(--tb-blue, #4361EE) !important;
  color: var(--tb-white, #fff) !important;
  border: none !important;
  border-radius: 100px !important;
  font-family: var(--tb-font-body, system-ui) !important;
  font-weight: 700 !important;
  font-size: .85rem !important;
  transition: background .2s, transform .15s !important;
}
[data-template="cart"] .ui-test-product-list .section-resource-list__content .button:hover,
[data-template="cart"] .ui-test-product-list .section-resource-list__content a[class*="button"]:hover {
  background: var(--tb-blue-dark, #3451d1) !important;
  transform: translateY(-1px) !important;
}

/* ---------- grid gap ----------------------------------------------------- */
[data-template="cart"] .ui-test-product-list .resource-list--grid {
  --resource-list-column-gap-desktop: 24px !important;
  --resource-list-row-gap-desktop: 24px !important;
  gap: 24px !important;
}

/* ---------- cards -------------------------------------------------------- */
[data-template="cart"] .ui-test-product-list .product-card {
  background: var(--tb-white, #fff) !important;
  border-radius: var(--tb-radius-lg, 16px) !important;
  overflow: hidden !important;
  transition: all var(--tb-transition, .25s ease) !important;
  border: 1px solid var(--tb-gray-200, #e5e7eb) !important;
}

[data-template="cart"] .ui-test-product-list .product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: var(--tb-shadow-md, 0 8px 24px rgba(0,0,0,.12)) !important;
  border-color: transparent !important;
}

/* card image */
[data-template="cart"] .ui-test-product-list .card-gallery {
  aspect-ratio: 1 / 1;
  overflow: hidden !important;
}

[data-template="cart"] .ui-test-product-list .card-gallery img {
  transition: transform var(--tb-transition-slow, .4s ease) !important;
}

[data-template="cart"] .ui-test-product-list .product-card:hover .card-gallery img {
  transform: scale(1.06) !important;
}

/* card info */
[data-template="cart"] .ui-test-product-list .product-card .product-card__content,
[data-template="cart"] .ui-test-product-list .product-card .card__content {
  padding: 20px !important;
}

/* product title */
[data-template="cart"] .ui-test-product-list .product-card .product-title,
[data-template="cart"] .ui-test-product-list .product-card [class*="title"] a {
  font-family: var(--tb-font-heading, 'Nunito', sans-serif) !important;
  font-size: 1.125rem !important;
  font-weight: 800 !important;
  color: var(--tb-gray-900, #1a1a2e) !important;
  text-decoration: none !important;
  margin-bottom: 4px !important;
}

[data-template="cart"] .ui-test-product-list .product-card .product-title a:hover {
  color: var(--tb-blue, #4361EE) !important;
}

/* price */
[data-template="cart"] .ui-test-product-list .product-card .price,
[data-template="cart"] .ui-test-product-list .product-card [class*="price"] {
  font-family: var(--tb-font-heading, 'Nunito', sans-serif) !important;
  font-size: .95rem !important;
  font-weight: 700 !important;
  color: var(--tb-blue, #4361EE) !important;
}

/* ---------- quick-add button — blue pill --------------------------------- */
[data-template="cart"] .ui-test-product-list .product-card quick-add-component .button,
[data-template="cart"] .ui-test-product-list .product-card [class*="quick-add"] button:not(.slideshow-control) {
  background: var(--tb-blue, #4361EE) !important;
  color: var(--tb-white, #fff) !important;
  border: none !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  font-family: var(--tb-font-body, system-ui) !important;
  font-size: .85rem !important;
  transition: background .2s, transform .15s !important;
}

[data-template="cart"] .ui-test-product-list .product-card .quick-add__button .add-to-cart-text {
  background: transparent !important;
}

[data-template="cart"] .ui-test-product-list .product-card quick-add-component .button:hover,
[data-template="cart"] .ui-test-product-list .product-card [class*="quick-add"] button:not(.slideshow-control):hover {
  background: var(--tb-blue-dark, #3451d1) !important;
  transform: translateY(-1px) !important;
}

/* ---------- gallery arrows — white, no background ------------------------ */
[data-template="cart"] .ui-test-product-list .product-card slideshow-arrows {
  mix-blend-mode: normal !important;
}

[data-template="cart"] .ui-test-product-list .product-card slideshow-arrows .slideshow-control {
  background: transparent !important;
  color: var(--tb-white, #fff) !important;
  border: none !important;
  border-radius: 0 !important;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .45)) !important;
}

/* ---------- mobile ------------------------------------------------------- */
@media (max-width: 549px) {
  [data-template="cart"] .ui-test-product-list .section-resource-list__header {
    margin-bottom: 24px !important;
  }

  [data-template="cart"] .ui-test-product-list .resource-list--grid {
    gap: 12px !important;
  }

  [data-template="cart"] .ui-test-product-list .product-card .product-card__content,
  [data-template="cart"] .ui-test-product-list .product-card .card__content {
    padding: 14px !important;
  }

  [data-template="cart"] .ui-test-product-list .product-card .product-title,
  [data-template="cart"] .ui-test-product-list .product-card [class*="title"] a {
    font-size: 1rem !important;
  }
}


