/** Shopify CDN: Minification failed

Line 136:0 Unexpected "}"
Line 157:0 Unexpected "}"
Line 463:0 Unexpected "}"

**/
/* ============================================================
   TB Print – Custom Homepage Styles
   Upload to: Shopify Admin → Themes → Edit code → Assets → Add file
   Filename: tbprint-styles.css
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --tbp-ink: #0f0f0e;
  --tbp-paper: #f5f2ec;
  --tbp-paper-mid: #ede9e1;
  --tbp-white: #ffffff;
  --tbp-gold: #39d7f3ff;
  --tbp-gold-dark: #39d7f3ff;
  --tbp-muted: #6b6860;
  --tbp-radius: 4px;
}

/* ── SPLIT HERO ── */
.tbp-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  min-height: 500px;
  position: relative;
}

.tbp-hero-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 10;
  pointer-events: none;
}

.tbp-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.5rem;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.tbp-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 0;
}

.tbp-panel:hover::before {
  transform: scale(1.04);
}

.tbp-panel--print::before {
  background-image: var(--tbp-print-bg, url(''));
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.tbp-panel--merch::before {
  background-image: var(--tbp-merch-bg, url(''));
  transition: transform 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
}

.tbp-panel--print:hover::before,
.tbp-panel--merch:hover::before {
  transform: scale(1.04);
}
.tbp-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,0.85) 0%, rgba(10,10,9,0.5) 30%, rgba(10,10,9,0) 55%);
  z-index: 0;
  pointer-events: none;
}

.tbp-panel__content {
  position: relative;
  z-index: 1;
  animation: tbpFadeUp 0.7s ease both;
}

.tbp-panel--print .tbp-panel__content { animation-delay: 0.15s; }
.tbp-panel--merch .tbp-panel__content { animation-delay: 0.3s; }

@keyframes tbpFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.tbp-panel__tag {
  .tbp-panel__tag {
  display: none;}
  background: rgba(19, 18, 18, 0.8);
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 1rem;
}

.tbp-panel__title {

  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 80px);
  letter-spacing: 0.03em;
  color: var(--tbp-white);
  line-height: 0.95;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
}

.tbp-panel__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.75rem;
}

.tbp-pill {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 4px 10px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
}

.tbp-panel__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.0);
  line-height: 1.6;
  max-width: 300px;
  margin-bottom: 1.5rem;
  css.tbp-panel__desc {
  color: #ffffff !important;
}
}

.tbp-panel__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: var(--tbp-radius);
  transition: all 0.2s;
}

.tbp-panel--print .tbp-panel__btn {
  background: var(--tbp-white);
  color: var(--tbp-ink);
}
.tbp-panel--print .tbp-panel__btn:hover {
  background: var(--tbp-paper);
}
.tbp-panel--merch .tbp-panel__btn {
  background: var(--tbp-gold);
  color: var(--tbp-ink);
}
.tbp-panel--merch .tbp-panel__btn:hover {
  background: var(--tbp-gold-dark);
  color: var(--tbp-white);
}

.tbp-panel__btn svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.tbp-panel__btn:hover svg {
  transform: translateX(3px);
}

/* ── TRUST BAR ── */
.tbp-trust-bar {
  background: var(--tbp-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  padding: 1.1rem 2.5rem;
  flex-wrap: wrap;
}

.tbp-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.tbp-trust-item svg {
  color: var(--tbp-gold);
  flex-shrink: 0;
}

/* ── ABOUT ── */
.tbp-about {
  background: var(--tbp-paper-mid);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.tbp-about__text {
  padding: 5rem 4rem;
  border-right: 1px solid rgba(15, 15, 14, 0.1);
}

.tbp-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tbp-gold-dark);
  margin-bottom: 1rem;
  display: block;
}

.tbp-about__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 1.25rem;
  color: var(--tbp-ink);
}

.tbp-about__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--tbp-muted);
  max-width: 400px;
}

.tbp-about__stats {
  padding: 5rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-content: center;
}

.tbp-stat__num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.02em;
  line-height: 1;
  color: var(--tbp-ink);
}

.tbp-stat__label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--tbp-muted);
  margin-top: 4px;
}

/* ── TESTIMONIALS ── */
.tbp-testimonials {
  padding: 6rem 2.5rem;
  background: var(--tbp-paper);
}

.tbp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.tbp-section-header__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.02em;
  color: var(--tbp-ink);
}

.tbp-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}

.tbp-testimonial-card {
  background: var(--tbp-white);
  border: 1px solid rgba(15, 15, 14, 0.08);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
}

.tbp-testimonial-card::before {
  content: '"';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--tbp-paper-mid);
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
}

.tbp-testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}

.tbp-testimonial-card__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--tbp-gold);
}

.tbp-testimonial-card__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.25rem;
}

.tbp-testimonial-card__author {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--tbp-ink);
}

/* ── CLUB SHOPS CTA ── */
.tbp-club-cta {
  background: var(--tbp-ink);
  padding: 5rem 2.5rem;
  text-align: center;
}

.tbp-club-cta__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  letter-spacing: 0.02em;
  color: var(--tbp-white);
  margin-bottom: 1rem;
}

.tbp-club-cta__body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.tbp-club-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: var(--tbp-radius);
  background: var(--tbp-gold);
  color: var(--tbp-ink);
  transition: background 0.2s;
}

.tbp-club-cta__btn:hover {
  background: #dfc080;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .tbp-panel__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .tbp-pill {
    flex: 0 0 calc(50% - 6px);
    text-align: center;
  }
}
  .tbp-hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  .tbp-panel {
    min-height: 50vh;
  }
  .tbp-hero-divider {
    display: none;
  }
  .tbp-about {
    grid-template-columns: 1fr;
  }
  .tbp-about__text {
    border-right: none;
    border-bottom: 1px solid rgba(15, 15, 14, 0.1);
    padding: 3rem 2rem;
  }
  .tbp-about__stats {
    padding: 3rem 2rem;
  }
  .tbp-trust-bar {
    gap: 1.5rem;
  }
}