/* ── RESET & BASE ─────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html, body {
  background: #ffffff;
  color: #111111;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { cursor: pointer; font-family: 'Inter', sans-serif; }

/* ── TYPOGRAPHY ───────────────────────────── */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #111;
}

/* ── LAYOUT ───────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.page-section {
  padding: 56px 24px;
  border-bottom: 1px solid #e5e5e5;
}

/* ── NAV ──────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  height: 56px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  justify-content: space-between;
}

.nav-logo {
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #111;
  z-index: 110;
  position: relative;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: #888;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active { color: #111; }

.nav-links a.active { font-weight: 700; }

/* Hamburger button */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease, width 0.3s ease;
  transform-origin: center;
}

/* Hamburger → X when open */
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 56px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
  z-index: 99;
  flex-direction: column;
  padding: 8px 0 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-8px);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.25,0.46,0.45,0.94),
              opacity 0.22s ease;
  pointer-events: none;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav-drawer a {
  display: block;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  border-bottom: 1px solid #f3f3f3;
  transition: color 0.15s, background 0.15s;
}

.nav-drawer a:last-child { border-bottom: none; }
.nav-drawer a:hover { color: #111; background: #f7f7f7; }
.nav-drawer a.active { color: #111; font-weight: 700; }

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-drawer { display: flex; }
}

/* ── BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 3px;
  border: none;
  transition: all 0.15s;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.btn-black { background: #111; color: #fff; }
.btn-black:hover { opacity: 0.85; }

.btn-outline {
  background: transparent;
  color: #111;
  border: 1.5px solid #111;
}
.btn-outline:hover { background: #111; color: #fff; }

.btn-ghost {
  background: transparent;
  color: #888;
  border: 1.5px solid #e5e5e5;
}
.btn-ghost:hover { border-color: #111; color: #111; }

.btn-lg { font-size: 15px; padding: 13px 28px; }
.btn-sm { font-size: 12px; padding: 7px 14px; }

/* ── SECTION LABELS ───────────────────────── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 20px;
}

/* ── FILTER BAR ───────────────────────────── */
.filter-wrap {
  border-bottom: 1px solid #e5e5e5;
  background: #fff;
  position: sticky;
  top: 56px;
  z-index: 90;
  overflow-x: auto;
}

.filter-wrap::-webkit-scrollbar { display: none; }

.filter-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  min-width: max-content;
}

.chip {
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  color: #888;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

.chip:hover { border-color: #111; color: #111; }
.chip.active { background: #111; color: #fff; border-color: #111; }

/* ── PRODUCT CARDS ────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 20px;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 540px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.product-card:hover .card-buy { background: #111; color: #fff; }

.card-thumb {
  aspect-ratio: 4/3;
  background: #f3f3f3;
  border-radius: 6px;
  margin-bottom: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.25s ease;
}

.product-card:hover .card-thumb { background: #ebebeb; }

/* Slide mockup */
.mockup {
  width: 72%;
  height: 72%;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.11), 0 2px 6px rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.m-head {
  height: 30%;
  flex-shrink: 0;
  padding: 7px 9px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 3px;
}

.m-bar { height: 3px; border-radius: 2px; }
.m-line { height: 1.5px; border-radius: 1px; background: rgba(255,255,255,0.22); }

.m-body {
  flex: 1;
  padding: 6px 9px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.ml { height: 1.5px; border-radius: 1px; background: rgba(0,0,0,0.09); }
.ml.d { background: rgba(0,0,0,0.2); }
.ml.w90 { width: 90%; } .ml.w80 { width: 80%; } .ml.w70 { width: 70%; }
.ml.w60 { width: 60%; } .ml.w50 { width: 50%; } .ml.w40 { width: 40%; }

.card-badge {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #111;
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px;
}

.card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 3px;
}

.card-name {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.card-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.55;
  margin-bottom: 12px;
}

.card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-slides { font-size: 12px; color: #bbb; font-weight: 500; }

.card-buy {
  font-size: 12px;
  font-weight: 700;
  background: transparent;
  color: #111;
  border: 1.5px solid #111;
  padding: 6px 14px;
  border-radius: 3px;
  transition: all 0.15s;
}

/* ── CATEGORY CARDS ───────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

@media (max-width: 768px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

.cat-card { cursor: pointer; }
.cat-card:hover .cat-arrow { transform: translateX(5px); }

.cat-img {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 12px;
  position: relative;
}

.cat-bg {
  width: 100%; height: 100%;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-coaches { background-image: url('../images/coaches.jpg'); background-position: center top; }
.cat-scouts  { background-image: url('../images/scouts.png'); background-position: center center; }
.cat-players { background-image: url('../images/players.jpg'); background-position: center top; }
.cat-club    { background-image: url('../images/club.png'); background-position: center center; }

/* Smooth zoom on hover */
.cat-card:hover .cat-bg { transform: scale(1.07); }

/* Persistent dark gradient overlay */
.cat-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.05) 0%,
    rgba(0,0,0,0.15) 35%,
    rgba(0,0,0,0.7) 100%
  );
  transition: background 0.4s ease;
  z-index: 1;
}

/* Deepen overlay on hover */
.cat-card:hover .cat-bg::before {
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.28) 35%,
    rgba(0,0,0,0.82) 100%
  );
}

.cat-label-wrap {
  padding: 40px 16px 16px;
  background: transparent;
  width: 100%;
  position: relative;
  z-index: 2;
  transform: translateY(6px);
  transition: transform 0.38s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-card:hover .cat-label-wrap { transform: translateY(0); }

.cat-name {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.cat-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.3s ease 0.08s, transform 0.3s ease 0.08s;
}

.cat-card:hover .cat-sub { opacity: 1; transform: translateY(0); }

.cat-link {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s ease;
}

.cat-card:hover .cat-link { gap: 10px; }

.cat-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}


/* ── HOW IT WORKS BAR ─────────────────────── */
.how-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  align-items: center;
}

.how-step {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #555;
}

.step-num {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-sep { color: #ccc; }

/* ── BUNDLES ──────────────────────────────── */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (max-width: 640px) {
  .bundle-grid { grid-template-columns: 1fr; }
}

.bundle-card {
  background: #fff;
  border: 1.5px solid #e5e5e5;
  padding: 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 0.15s;
  position: relative;
}

.bundle-card:hover { border-color: #111; }

.bundle-save {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 800;
  background: #111;
  color: #fff;
  padding: 3px 8px;
  border-radius: 2px;
}

.bundle-name {
  font-size: 18px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.bundle-desc {
  font-size: 13px;
  color: #666;
  line-height: 1.55;
  margin-bottom: 14px;
}

.bundle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}

.bundle-tag {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
  color: #666;
  border-radius: 2px;
}

.bundle-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bundle-price {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  letter-spacing: -0.02em;
}

/* ── NEWSLETTER ───────────────────────────── */
.newsletter {
  background: #f7f7f7;
  padding: 40px 24px;
  border-top: 1px solid #e5e5e5;
}

.nl-inner {
  max-width: 560px;
}

.nl-title {
  font-size: 22px;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.nl-sub {
  font-size: 13px;
  color: #888;
  margin-bottom: 16px;
}

.nl-form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nl-input {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  border: 1.5px solid #e5e5e5;
  background: #fff;
  color: #111;
  padding: 11px 14px;
  border-radius: 3px;
  flex: 1;
  min-width: 200px;
  outline: none;
}

.nl-input:focus { border-color: #111; }
.nl-input::placeholder { color: #bbb; }

.nl-note { font-size: 11px; color: #bbb; margin-top: 8px; }

/* ── FOOTER ───────────────────────────────── */
.footer {
  border-top: 1px solid #e5e5e5;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  background: #fff;
}

.footer-logo {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #ccc;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #bbb;
  transition: color 0.15s;
}

.footer-links a:hover { color: #111; }

/* ── BREADCRUMB ───────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #aaa;
  padding: 14px 24px;
  border-bottom: 1px solid #e5e5e5;
}

.breadcrumb a { color: #aaa; transition: color 0.15s; }
.breadcrumb a:hover { color: #111; }
.breadcrumb span { color: #111; font-weight: 600; }
.breadcrumb-sep { color: #ddd; }

/* ── EMPTY STATE ──────────────────────────── */
.empty-state {
  padding: 80px 24px;
  text-align: center;
  color: #bbb;
}

.empty-state h3 { font-size: 18px; color: #888; margin-bottom: 8px; }
.empty-state p { font-size: 14px; }

/* ── GRID COUNT ───────────────────────────── */
.grid-meta {
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
  margin-bottom: 20px;
}
