/*
 * teba-blocks.css
 * Styles every TEBA Shop plugin block output.
 * Selectors come directly from CSS-SELECTOR-MANIFEST.md v1.6.5.
 * Loaded after style.css.
 */

/* ============================================================
   SECTION MODIFIER CLASSES
   Applied by teba_shop_section_classes():
   ts-style-{default|light|dark|transparent|purple}
   ts-spacing-{compact|normal|large}
   ============================================================ */
.ts-style-default     { background: #F2EFE6; }
.ts-style-light       { background: #ffffff; }
.ts-style-dark        { background: #0B0B0C; color: #fff; }
.ts-style-transparent { background: transparent; }
.ts-style-purple      { background: #2D2557; color: #fff; }

.ts-spacing-compact { padding-top: 28px; padding-bottom: 28px; }
.ts-spacing-normal  { padding-top: 56px; padding-bottom: 56px; }
.ts-spacing-large   { padding-top: 80px; padding-bottom: 80px; }

/* ============================================================
   HERO SLIDER
   .teba-hero-slider wraps the whole component.
   Background comes from <picture class="teba-hero-slider__media">.
   JS handles slide transitions only — does NOT set height.
   Height is set here in CSS. Overlay color/opacity are CSS-only.
   ============================================================ */
.teba-hero-slider {
  position: relative;
  width: 100%;
  height: 620px;
  overflow: hidden;
  background: #2D2557;
  display: block;
  /* Override any WPBakery constraints */
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Court-line texture overlay */
.teba-hero-slider::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent 0, transparent 60px,
    rgba(255,255,255,.028) 60px, rgba(255,255,255,.028) 61px
  );
  pointer-events: none;
}

.teba-hero-slider__track {
  position: relative;
  width: 100%; height: 100%;
}

/* Each slide stacks absolutely; only .is-active is visible */
.teba-hero-slider__slide {
  position: absolute; inset: 0;
  opacity: 0;
  transition: opacity .7s ease;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.teba-hero-slider__slide.is-active { opacity: 1; }

/* Background picture — fills slide absolutely */
.teba-hero-slider__media {
  position: absolute; inset: 0; z-index: 0;
  display: block; width: 100%; height: 100%;
  overflow: hidden;
}
.teba-hero-slider__image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

/* Dark overlay — purple tint matching the navy brand */
.teba-hero-slider__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: #2D2557;
  opacity: .5;
  pointer-events: none;
}

/* Content */
.teba-hero-slider__content {
  position: relative; z-index: 2;
  padding: 0 56px;
  max-width: 660px; width: 100%;
}
.teba-hero-slider__content h2 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -.04em;
  line-height: .88;
  color: #fff;
  margin: 0 0 20px;
}
.teba-hero-slider__content p {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px; line-height: 1.55;
  color: rgba(255,255,255,.72);
  margin: 0 0 36px; max-width: 440px;
}
.teba-hero-slider__actions {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
}

/* Buttons */
.teba-hero-slider__button {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 6px;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.teba-hero-slider__button--primary {
  background: transparent; border: 2px solid #fff; color: #fff;
}
.teba-hero-slider__button--primary:hover { background: #fff; color: #0B0B0C; }
.teba-hero-slider__button--secondary {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.3); color: #fff;
}
.teba-hero-slider__button--secondary:hover { background: rgba(255,255,255,.24); }

/* Prev/Next arrows */
.teba-hero-slider__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff; font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.teba-hero-slider__arrow:hover { background: rgba(255,255,255,.28); }
.teba-hero-slider__arrow--prev { left: 20px; }
.teba-hero-slider__arrow--next { right: 20px; }

/* Dots — JS creates .teba-hero-slider__dot buttons here */
.teba-hero-slider__dots {
  position: absolute; bottom: 24px;
  left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10; align-items: center;
}
.teba-hero-slider__dot {
  width: 28px; height: 6px; border-radius: 3px;
  background: rgba(255,255,255,.3);
  border: none; cursor: pointer; padding: 0;
  transition: background .25s, width .25s;
}
.teba-hero-slider__dot.is-active {
  background: #B5A06D; width: 40px;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.ts-trust-bar {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  background: #fff;
  border-top: 1px solid rgba(26,26,26,.1);
  border-bottom: 1px solid rgba(26,26,26,.1);
  width: 100%;
}
.ts-trust-bar__item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 14px !important;
  padding: 22px 24px !important;
  border-right: 1px solid rgba(26,26,26,.08);
}
.ts-trust-bar__item:last-child { border-right: none; }
.ts-trust-bar__icon {
  font-size: 20px; flex-shrink: 0; margin-top: 2px; line-height: 1;
}
.ts-trust-bar__item > div { display: flex; flex-direction: column; gap: 3px; }
.ts-trust-bar__item strong {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 11.5px; font-weight: 900;
  text-transform: uppercase; letter-spacing: .04em;
  color: #0B0B0C; line-height: 1.1; display: block;
}
.ts-trust-bar__item span {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 11px; color: #777268; line-height: 1.35; display: block;
}

/* ============================================================
   EDITORIAL HEADING + OUTLINE BUTTON
   ============================================================ */
.ts-editorial-heading {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 16px;
  padding: 48px 40px 0;
  margin-bottom: 28px;
  background: #F2EFE6;
}
.ts-editorial-heading--left  { justify-content: space-between !important; }
.ts-editorial-heading--center { justify-content: center !important; text-align: center; }

.ts-editorial-heading__eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: #777268; display: block; margin-bottom: 8px;
}
.ts-editorial-heading__eyebrow::before { content: '— '; color: #D62246; }
.ts-editorial-heading h2 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: .95; color: #0B0B0C; margin: 0;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.ts-category-grid {
  display: grid !important;
  gap: 16px;
  padding: 0 40px 56px;
  background: #F2EFE6;
}
.ts-category-grid.ts-grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.ts-category-grid.ts-grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.ts-category-grid.ts-grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }

.ts-category-card {
  background: #fff;
  border: 1px solid rgba(26,26,26,.1);
  overflow: hidden; display: block;
  text-decoration: none; color: #0B0B0C;
  transition: box-shadow .2s;
}
.ts-category-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }
.ts-category-card > a { text-decoration: none; color: inherit; display: block; }

.ts-category-card__media {
  height: 180px; background: #EAE6D9;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.ts-category-card__media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .35s;
}
.ts-category-card:hover .ts-category-card__media img { transform: scale(1.04); }
.ts-category-card__media span {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 40px; font-weight: 900; color: #2A2A2A; opacity: .12;
}
.ts-category-card__body { padding: 18px 20px 22px; }
.ts-category-card__body h3 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 22px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em;
  color: #0B0B0C; margin: 0 0 5px;
}
.ts-category-card__body p {
  font-size: 12.5px; color: #777268; margin: 0 0 14px; line-height: 1.4;
}
.ts-category-card__body strong {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: #0B0B0C;
  display: flex; align-items: center; gap: 5px;
}

/* ============================================================
   TEAM STRIP
   The key fix: force flex layout and prevent WPBakery collapsing it
   ============================================================ */
.ts-team-strip {
  background: #F2EFE6;
  padding: 40px 40px;
  width: 100%;
  box-sizing: border-box;
  display: block;
}

/* __intro: heading left + SEE ALL right */
.ts-team-strip__intro {
  display: flex !important;
  align-items: center !important;
  gap: 24px;
  margin-bottom: 24px;
}
.ts-team-strip__intro h2 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 28px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.02em;
  line-height: .95; color: #0B0B0C; margin: 0;
}
.ts-team-strip__intro .ts-outline-button { margin-left: auto; }

/* Items scroll container */
.ts-team-strip__items {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  overflow-x: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  align-items: flex-start;
}
.ts-team-strip__items::-webkit-scrollbar { display: none; }

/* Scroll layout (section is the scroll container) */
.ts-team-strip--scroll {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 20px !important;
  overflow-x: auto !important;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 40px 40px !important;
  align-items: flex-start;
}
.ts-team-strip--scroll::-webkit-scrollbar { display: none; }

/* Grid layout */
.ts-team-strip--grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
  gap: 20px !important;
  padding: 40px !important;
}

/* Individual team chip link */
.ts-team-strip__item,
.ts-team-strip__item--stacked {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  text-decoration: none;
  flex-shrink: 0 !important;
  min-width: 72px;
  transition: transform .2s;
}
.ts-team-strip__item:hover { transform: translateY(-3px); }

.ts-team-strip__item img {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(26,26,26,.15);
  display: block;
}
.ts-team-strip__logo-placeholder {
  width: 72px; height: 72px; border-radius: 50%;
  border: 2px solid rgba(26,26,26,.15);
  background: #EAE6D9;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 18px; font-weight: 900; color: #2A2A2A;
  flex-shrink: 0;
}
.ts-team-strip__city {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #777268;
  text-align: center; line-height: 1; display: block;
}
.ts-team-strip__name {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8.5px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: #2A2A2A;
  text-align: center; max-width: 80px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
  line-height: 1; display: block;
}

/* ============================================================
   PRODUCTS BLOCK + GRID
   ============================================================ */
.ts-products-block {
  padding: 0 40px 56px;
  background: #F2EFE6;
  display: block;
}
.ts-product-results-meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: #777268; margin-bottom: 20px; display: block;
}
/* Grid — !important overrides WPBakery flex */
.ts-products-grid {
  display: grid !important;
  gap: 16px;
}
.ts-products-grid[data-products-grid] {
  display: grid !important;
}
.ts-products-grid.ts-grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; }
.ts-products-grid.ts-grid-cols-3 { grid-template-columns: repeat(3, 1fr) !important; }
.ts-products-grid.ts-grid-cols-2 { grid-template-columns: repeat(2, 1fr) !important; }
.ts-products-grid.ts-grid-cols-1 { grid-template-columns: 1fr !important; }

/* Load more / loading */
.ts-load-more {
  display: block; margin: 32px auto 0;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: #0B0B0C; color: #fff; border: none;
  padding: 13px 32px; border-radius: 6px; cursor: pointer; transition: background .2s;
}
.ts-load-more:hover { background: #2A2A2A; }
.ts-product-loading {
  text-align: center; font-size: 12px; color: #777268; padding: 24px; display: block;
}
.ts-empty {
  font-size: 14px; color: #777268; text-align: center; padding: 32px; display: block;
}

/* ============================================================
   PRODUCT CARD — .ts-shop-card
   ============================================================ */
.ts-shop-card {
  background: #fff;
  border: 1px solid rgba(26,26,26,.1);
  overflow: hidden;
  display: flex !important;
  flex-direction: column !important;
  position: relative;
  transition: box-shadow .2s;
}
.ts-shop-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,.1); }

.ts-shop-card__link {
  display: flex !important; flex-direction: column !important; flex: 1 !important;
  text-decoration: none; color: inherit;
}
.ts-shop-card__badge {
  position: absolute; top: 10px; left: 10px; z-index: 2;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 8.5px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 8px; border-radius: 3px;
  background: #D62246; color: #fff;
}
.ts-shop-card__image {
  width: 100%; height: 220px;
  object-fit: cover; display: block;
  background: #EAE6D9; flex-shrink: 0;
  transition: transform .35s;
}
.ts-shop-card:hover .ts-shop-card__image { transform: scale(1.04); }
.ts-shop-card__category {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: #777268; padding: 12px 14px 2px; display: block;
}
.ts-shop-card__title {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 14px; font-weight: 900;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1.15;
  color: #0B0B0C; padding: 4px 14px 10px; margin: 0;
}
.ts-shop-card__price {
  padding: 0 14px 16px; display: block;
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 15px; font-weight: 900; color: #0B0B0C; margin-top: auto;
}
.ts-shop-card__price del {
  font-size: 12px; color: #777268; font-weight: 400;
  font-family: 'Inter', system-ui, sans-serif; margin-right: 4px;
}
.ts-shop-card__price ins { text-decoration: none; color: #D62246; }
.ts-shop-card__actions { padding: 0 14px 14px; }
.ts-shop-card__button {
  display: block; width: 100%; text-align: center;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  background: #0B0B0C; color: #fff; padding: 11px; border-radius: 6px;
  text-decoration: none; transition: background .2s;
}
.ts-shop-card__button:hover { background: #2A2A2A; }

/* ============================================================
   PRODUCT FILTERS
   ============================================================ */
.ts-product-filters {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: flex-end; padding: 0 0 24px; margin-bottom: 8px;
  border-bottom: 1px solid rgba(26,26,26,.1);
}
.ts-product-filters label {
  display: flex; flex-direction: column; gap: 4px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #777268;
}
.ts-product-filters select,
.ts-product-filters input[type="number"] {
  font-size: 13px; border: 1.5px solid rgba(26,26,26,.2);
  border-radius: 6px; padding: 7px 10px; background: #fff; color: #0B0B0C;
}
.ts-filter-check { flex-direction: row !important; align-items: center !important; gap: 6px !important; }
.ts-product-filters button[type="submit"],
.ts-product-filters__reset {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 9px 18px; border-radius: 6px; cursor: pointer;
  border: 1.5px solid #0B0B0C; background: #0B0B0C; color: #fff; transition: background .15s;
}
.ts-product-filters__reset {
  background: transparent; color: #777268; border-color: rgba(26,26,26,.2);
}

/* ============================================================
   IMAGE CTA  (Official Outfitter Banner)
   Background image in <picture class="ts-image-cta__media">
   Overlay color/opacity in data attributes (read by JS if needed)
   Height set via CSS — uses data attribute as CSS var fallback
   ============================================================ */
.ts-image-cta {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #0B0B0C;
  box-sizing: border-box;
}
/* JS sets inline style height from data-height-desktop if available */

.ts-image-cta__media {
  position: absolute; inset: 0; z-index: 0;
  display: block; width: 100%; height: 100%; overflow: hidden;
}
.ts-image-cta__image {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center; display: block;
}
.ts-image-cta__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: #050505; opacity: .68;
}
.ts-image-cta__inner {
  position: relative; z-index: 2;
  padding: 64px 56px; max-width: 640px;
}
.ts-image-cta__eyebrow {
  display: block; width: 24px; height: 3px;
  background: #B5A06D; margin-bottom: 20px;
  font-size: 0; overflow: hidden;
}
.ts-image-cta__inner h2 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: clamp(36px, 5vw, 64px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: .9; color: #fff; margin: 0 0 20px;
}
.ts-image-cta__inner p {
  font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,.68); margin: 0 0 32px; max-width: 440px;
}
.ts-image-cta__button {
  display: inline-flex; align-items: center; gap: 8px;
  background: #2D2557; color: #fff;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 14px 26px; border-radius: 6px;
  text-decoration: none; transition: background .2s;
}
.ts-image-cta__button:hover { background: #3d3480; }

/* ============================================================
   NEWSLETTER BLOCK — .ts-newsletter / .ts-newsletter--signup
   Default style="purple" → .ts-style-purple adds navy bg
   ============================================================ */
.ts-newsletter--signup {
  width: 100%;
}
.ts-newsletter--signup.ts-style-purple {
  background: #2D2557 !important;
  color: #fff;
  padding: 72px 40px;
}
.ts-newsletter__inner {
  max-width: 640px; margin: 0 auto; text-align: center;
}
.ts-newsletter__eyebrow {
  display: block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10.5px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase;
  color: #B5A06D; margin-bottom: 14px;
}
.ts-newsletter__inner h2 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: clamp(28px, 5vw, 52px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.03em;
  line-height: .92; color: #fff; margin: 0 0 14px;
}
.ts-newsletter__inner p {
  font-size: 14.5px; line-height: 1.55;
  color: rgba(255,255,255,.65); margin: 0 0 32px;
}
.ts-newsletter__form {
  display: flex !important;
  max-width: 480px; margin: 0 auto;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 6px; overflow: hidden;
  background: rgba(255,255,255,.06);
}
.ts-newsletter__form input[type="email"] {
  flex: 1 !important; min-width: 0;
  background: transparent; border: none; outline: none;
  color: #fff; font-size: 14px; padding: 0 20px; height: 52px;
}
.ts-newsletter__form input[type="email"]::placeholder { color: rgba(255,255,255,.35); }
.ts-newsletter__form button[type="submit"] {
  background: #fff; color: #0B0B0C; border: none;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase;
  padding: 0 24px; height: 52px; flex-shrink: 0; cursor: pointer; transition: background .2s;
}
.ts-newsletter__form button[type="submit"]:hover { background: #F2EFE6; }
.ts-notify-form__message {
  font-size: 13px; color: rgba(255,255,255,.7); margin-top: 12px;
}

/* ============================================================
   SHOP FOOTER BLOCK — .ts-shop-footer
   ============================================================ */
.ts-shop-footer {
  background: #0B0B0C;
  color: rgba(255,255,255,.75);
  width: 100%;
  display: block;
}
.ts-shop-footer__grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1fr 1fr 1fr !important;
  gap: 48px;
  padding: 56px 40px 40px;
  max-width: 1440px; margin: 0 auto;
}
.ts-shop-footer__brand { display: flex; flex-direction: column; }
.ts-shop-footer__identity {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.ts-shop-footer__identity img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
}
.ts-shop-footer__identity strong {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 20px; font-weight: 900;
  text-transform: uppercase; color: #fff; letter-spacing: -.01em;
}
.ts-shop-footer__brand > p {
  font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,.5); margin: 0 0 20px; max-width: 280px;
}
.ts-shop-footer__socials { display: flex; gap: 8px; flex-wrap: wrap; }
.ts-shop-footer__socials a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: rgba(255,255,255,.08); border-radius: 6px;
  color: rgba(255,255,255,.6);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; font-weight: 700;
  text-decoration: none; transition: background .2s, color .2s;
}
.ts-shop-footer__socials a:hover { background: rgba(255,255,255,.18); color: #fff; }
.ts-shop-footer__menu h3 {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin: 0 0 18px;
}
.ts-shop-footer__links {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ts-shop-footer__links li a,
.ts-shop-footer__links li span {
  font-size: 13.5px; color: rgba(255,255,255,.6);
  text-decoration: none; transition: color .15s; line-height: 1;
}
.ts-shop-footer__links li a:hover { color: #fff; }
.ts-shop-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 40px;
  max-width: 1440px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.ts-shop-footer__bottom p {
  font-size: 12px; color: rgba(255,255,255,.3); margin: 0;
}
.ts-shop-footer__payments { display: flex; gap: 6px; flex-wrap: wrap; }
.ts-shop-footer__payments span {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  padding: 4px 9px; border-radius: 4px;
}

/* ============================================================
   TEAM HEADER
   ============================================================ */
.ts-team-header {
  display: flex; align-items: center; gap: 24px;
  padding: 48px 40px;
  background: var(--ts-team-color, #2D2557);
  color: #fff; width: 100%;
}
.ts-team-header img { width: 80px; height: 80px; object-fit: contain; border-radius: 50%; }
.ts-team-header h1 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: clamp(32px, 5vw, 56px); font-weight: 900;
  text-transform: uppercase; letter-spacing: -.03em;
  color: #fff; margin: 0 0 6px;
}
.ts-team-header p {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.6); margin: 0;
}

/* ============================================================
   COLLAB CARDS
   ============================================================ */
.ts-collab-grid {
  display: grid !important; gap: 16px; padding: 0 40px 56px;
}
.ts-collab-card {
  background: #fff; border: 1px solid rgba(26,26,26,.1);
  overflow: hidden; border-radius: 6px;
}
.ts-collab-card__image {
  width: 100%; aspect-ratio: 1; object-fit: cover; display: block;
}
.ts-collab-card__body { padding: 16px; }
.ts-collab-card__body h3 {
  font-family: 'Archivo Black', system-ui, sans-serif;
  font-size: 16px; text-transform: uppercase; color: #0B0B0C; margin: 0 0 8px;
}
.ts-collab-card__body p { font-size: 13px; color: #777268; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .teba-hero-slider { height: 520px; }
  .ts-trust-bar { grid-template-columns: repeat(2, 1fr) !important; }
  .ts-trust-bar__item:nth-child(2) { border-right: none; }
  .ts-products-grid.ts-grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .ts-category-grid.ts-grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }
  .ts-shop-footer__grid { grid-template-columns: 1fr 1fr !important; gap: 32px; }
  .ts-editorial-heading { padding: 40px 24px 0; }
  .ts-category-grid { padding: 0 24px 48px; }
  .ts-products-block { padding: 0 24px 48px; }
  .ts-image-cta__inner { padding: 48px 24px; }
  .ts-team-strip { padding: 32px 24px; }
  .ts-team-strip--scroll { padding: 32px 24px !important; }
}

@media (max-width: 640px) {
  .teba-hero-slider { height: 420px; }
  .teba-hero-slider__content { padding: 0 20px; }
  .teba-hero-slider__content h2 { font-size: 36px; }
  .teba-hero-slider__arrow { display: none; }
  .ts-trust-bar { grid-template-columns: 1fr !important; }
  .ts-trust-bar__item { border-right: none; border-bottom: 1px solid rgba(26,26,26,.08); }
  .ts-trust-bar__item:last-child { border-bottom: none; }
  .ts-products-grid.ts-grid-cols-4,
  .ts-products-grid.ts-grid-cols-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .ts-products-grid.ts-mobile-cols-1 { grid-template-columns: 1fr !important; }
  .ts-category-grid { grid-template-columns: repeat(2, 1fr) !important; padding: 0 16px 40px; }
  .ts-shop-footer__grid { grid-template-columns: 1fr !important; gap: 28px; padding: 40px 20px; }
  .ts-shop-footer__bottom { padding: 16px 20px; flex-direction: column; align-items: flex-start; }
  .ts-newsletter--signup.ts-style-purple { padding: 48px 20px; }
  .ts-newsletter__form { flex-direction: column !important; border-radius: 6px; }
  .ts-newsletter__form input[type="email"],
  .ts-newsletter__form button[type="submit"] { width: 100% !important; height: 48px !important; }
  .ts-image-cta { min-height: 380px; }
  .ts-image-cta__inner { padding: 40px 20px; }
  .ts-editorial-heading { flex-direction: column; align-items: flex-start; padding: 28px 16px 0; }
  .ts-team-strip, .ts-team-strip--scroll { padding: 24px 16px !important; }
  .ts-products-block { padding: 0 16px 40px; }
}

/* ============================================================
   PATCH — fixes from live screenshots
   ============================================================ */

/* 1. Hero — ensure font loads and image covers correctly */
.teba-hero-slider__content h2 {
  font-family: 'Archivo Black', 'Arial Black', system-ui, sans-serif !important;
  text-transform: uppercase !important;
}

/* 2. Hero CTA — white outline, not black filled */
.teba-hero-slider__button--primary {
  background: transparent !important;
  border: 2px solid #fff !important;
  color: #fff !important;
}
.teba-hero-slider__button--primary:hover {
  background: #fff !important;
  color: #0B0B0C !important;
}

/* 3. Newsletter — target BOTH class formats since section_classes
      may output --style-purple or --style-default depending on version */
.ts-newsletter--style-purple,
.ts-newsletter--signup.ts-newsletter--style-purple,
.ts-newsletter--signup.ts-style-purple,
section.ts-newsletter--signup[class*="purple"] {
  background: #2D2557 !important;
  color: #fff !important;
  padding: 72px 40px !important;
}

/* Also catch the theme footer newsletter if it doesn't have navy bg */
.ts-newsletter {
  background: #2D2557;
  color: #fff;
}

/* Newsletter text must be white regardless */
.ts-newsletter h2,
.ts-newsletter--signup h2,
.ts-newsletter__inner h2 { color: #fff !important; }
.ts-newsletter p,
.ts-newsletter--signup p,
.ts-newsletter__inner > p { color: rgba(255,255,255,.65) !important; }
.ts-newsletter__eyebrow { color: #B5A06D !important; }

/* 4. Team strip — fix placeholder circle colors and text layout */
.ts-team-strip__logo-placeholder {
  background: #EAE6D9 !important;
  color: #2A2A2A !important;
  font-size: 16px !important;
}

/* Force city and name to be on separate lines */
.ts-team-strip__city { display: block !important; margin-bottom: 2px !important; }
.ts-team-strip__name { display: block !important; }

/* 5. Product card — fix price layout and wishlist */
.ts-shop-card__image-wrap {
  position: relative;
  display: block !important;
  height: 220px !important;
  overflow: hidden !important;
  text-decoration: none;
}
.ts-shop-card__wishlist {
  position: absolute !important;
  top: 10px !important; right: 10px !important;
  width: 28px !important; height: 28px !important;
  background: rgba(255,255,255,.85) !important;
  border-radius: 50% !important;
  border: none !important;
  display: flex !important;
  align-items: center !important; justify-content: center !important;
  font-size: 14px !important;
  cursor: pointer !important;
  opacity: 0;
  transition: opacity .2s;
  z-index: 2 !important;
}
.ts-shop-card:hover .ts-shop-card__wishlist { opacity: 1; }

/* Fix pricing — sale price + strikethrough on same line */
.ts-shop-card__pricing {
  display: flex !important;
  align-items: baseline !important;
  gap: 8px !important;
  padding: 0 14px 16px !important;
  flex-wrap: wrap;
}
.ts-shop-card__price {
  padding: 0 !important;
  font-family: 'Archivo Black', system-ui, sans-serif !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  color: #0B0B0C !important;
}
.ts-shop-card__price--sale { color: #D62246 !important; }
.ts-shop-card__price-was {
  font-size: 12px !important;
  color: #777268 !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
}

/* Use __name not __title (shop-card.php uses __name) */
.ts-shop-card__name {
  font-family: 'Archivo Black', system-ui, sans-serif !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -.01em !important;
  line-height: 1.15 !important;
  color: #0B0B0C !important;
  padding: 4px 14px 6px !important;
  margin: 0 !important;
}

/* Add to bag button */
.ts-shop-card__add {
  display: block !important;
  width: calc(100% - 28px) !important;
  margin: 0 14px 14px !important;
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 10.5px !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
  background: #0B0B0C !important;
  color: #fff !important;
  border: none !important;
  padding: 11px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  transition: background .2s !important;
  margin-top: auto !important;
}
.ts-shop-card__add:hover { background: #2A2A2A !important; }

/* 6. Footer — ensure social chips and payment chips show */
.ts-footer__socials {
  display: flex !important;
  gap: 8px !important;
  flex-wrap: wrap !important;
  margin-bottom: 4px !important;
}
.ts-footer__payments {
  display: flex !important;
  gap: 6px !important;
  flex-wrap: wrap !important;
}
.ts-footer__bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

/* 7. Newsletter spacing compact on mobile */
@media (max-width: 640px) {
  .ts-newsletter--style-purple,
  .ts-newsletter--signup.ts-newsletter--style-purple { padding: 48px 20px !important; }
}
