/* ===========================================================
   Rass Jerseys — theme tokens & shared styles
   Grass-Green Premium · Light Mode
   =========================================================== */

:root {
  /* Brand */
  --primary:   #2D6A4F;   /* deep pitch green */
  --primary-d: #245540;   /* darker hover */
  --secondary: #52B788;   /* fresh grass green */
  --accent:    #FFD60A;   /* golden yellow — World Cup energy */

  /* Surfaces */
  --bg:        #F8FAF9;
  --surface:   #FFFFFF;
  --text:      #1A1A2E;
  --text-2:    #6B7280;
  --border:    #E5EDE9;

  /* WhatsApp brand */
  --wa:        #25D366;
  --wa-d:      #1EBE5A;
  --messenger: #0084FF;

  /* Shape (tweakable) */
  --r-card: 14px;
  --r-btn:  9px;
  --shadow:    0 2px 16px rgba(16, 40, 30, 0.07);
  --shadow-lg: 0 14px 40px rgba(16, 40, 30, 0.14);

  /* Type */
  --f-display: "Bebas Neue", sans-serif;
  --f-head:    "DM Sans", system-ui, sans-serif;
  --f-body:    "Inter", system-ui, sans-serif;
  --f-num:     "Space Grotesk", monospace;

  /* Layout */
  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection { background: var(--secondary); color: #fff; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Headings ---- */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.92;
  text-transform: uppercase;
}
.eyebrow {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.sect-title {
  font-family: var(--f-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  margin: 0;
}
.sect-kicker {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--secondary);
  margin: 0 0 10px;
}
.price {
  font-family: var(--f-num);
  font-weight: 700;
  font-feature-settings: "tnum" 1;
  letter-spacing: -0.01em;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: var(--r-btn);
  padding: 14px 22px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-d); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(45,106,79,.28); }
.btn-wa { background: var(--wa); color: #fff; }
.btn-wa:hover { background: var(--wa-d); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(37,211,102,.32); }
.btn-ghost {
  background: var(--surface); color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-ghost:hover { border-color: var(--secondary); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 1.5px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; display: flex; }
.btn-sm { padding: 10px 14px; font-size: 13.5px; }

/* WhatsApp glyph (simple, drawn with currentColor) */
.wa-glyph { width: 18px; height: 18px; flex: none; }

/* ---- Image placeholder ---- */
.ph {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg,
      rgba(0,0,0,0.022) 0 11px, rgba(0,0,0,0) 11px 22px);
  border-radius: inherit;
}
.ph-label {
  position: relative;
  font-family: var(--f-num);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-2);
  background: rgba(255,255,255,.72);
  padding: 5px 10px;
  border-radius: 6px;
  border: 1px solid var(--border);
  backdrop-filter: blur(2px);
}

/* ---- Badges ---- */
.tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 999px;
}
.tag-hot   { background: var(--accent); color: #3a2e00; }
.tag-new   { background: var(--primary); color: #fff; }

/* ---- Section rhythm ---- */
.section { padding: 86px 0; }
.section-tight { padding: 56px 0; }

/* ---- Utilities ---- */
.muted { color: var(--text-2); }
.center { text-align: center; }

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .wrap { padding: 0 18px; }
}
@media (max-width: 480px) {
  .wrap { padding: 0 14px; }
}
