/* RESET SINGKAT */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #000000;
  color: #ffffff;
}

/* SECTION BACKGROUND: DARK GREEN GRADIENT */
.tj-apparel-section {
  position: relative;
  min-height: 90vh;
  padding: 4rem 8vw 5rem;
  background: radial-gradient(circle at 0% 0%, #1a2b1a 0, #020408 55%, #273618 100%);
  overflow: hidden;
}

/* Flex kiri-kanan */
.tj-apparel-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
}

/* KIRI: JERSEY */
.tj-apparel-left {
  flex: 1;
  display: flex;
  justify-content: center;
}

.tj-apparel-jersey {
  max-height: 520px;
  width: auto;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.8));
}

/* KANAN: TEXT + BUTTON */
.tj-apparel-right {
  flex: 1.2;
  color: #f9fafb;
}

.tj-apparel-text {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.9rem;
  max-width: 520px;
}

/* CTA BUTTON (mirip tombol kuning sebelumnya) */
.tj-apparel-cta-wrapper {
  margin-top: 1.8rem;
}

.tj-cta-whatsapp {
  display: inline-block;
  padding: 0.9rem 3.5rem;
  background-color: #fbff00;
  color: #000000;
  font-family: 'Anton', Impact, system-ui, sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 10px solid #004dff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
}

.tj-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

/* LABEL BESAR DI BAWAH KANAN: "APPAREL PRI" */
.tj-apparel-label {
  position: absolute;
  right: 12vw;
  bottom: 2.8rem;
  font-family: 'Anton', Impact, system-ui, sans-serif;
  font-size: 3rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: #d4ff1c;
  line-height: 1.1;
  text-align: right;
}

/* Responsif ringan, tapi fokus tampilan desktop */
@media (max-width: 1024px) {
  .tj-apparel-inner {
    gap: 2.5rem;
  }

  .tj-apparel-label {
    right: 8vw;
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .tj-apparel-inner {
    flex-direction: column;
    text-align: center;
  }

  .tj-apparel-right {
    text-align: left;
  }

  .tj-apparel-label {
    position: static;
    margin-top: 2.5rem;
    text-align: center;
  }
}
