/* ════════════════════════════════════════════════════════
   KITCRAFT — GLOBAL STYLESHEET
   One shared file for every section. Sections are loaded
   dynamically into index.html, so all CSS lives here —
   never duplicate <style> blocks inside /sections/*.html.
════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════
   1. GLOBAL RESET, VARIABLES, TYPOGRAPHY, NAVBAR, HERO
   (variables renamed to --hero-* to avoid collisions with
   the Why KitCraft section's own design-token scope)
════════════════════════════════════════════════════════ */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  /* Nav is position:fixed (76px tall) — without this, clicking a nav
     link (#Templates/#features/#how) jumps straight to the anchor and
     leaves the first ~76px of that section hidden underneath it. */
  html { scroll-padding-top: 90px; }

  :root {
    --hero-white: #FFFFFF;
    --hero-black: #111111;
    --hero-gray: #666666;
    --hero-light-bg: #FAFAFA;
    --hero-border: #E8E8E8;
    --hero-gold: #B8972A;
    --hero-gold-light: #D4AF37;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--hero-white);
    color: var(--hero-black);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 64px;
    height: 76px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--hero-black);
    text-decoration: none;
  }

  .nav-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--hero-black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-logo-mark svg { width: 17px; height: 17px; }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 48px;
    list-style: none;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    letter-spacing: -0.1px;
    transition: color 0.15s;
  }

  .nav-links a:hover { color: var(--hero-black); }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
  }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 14px;
  font-weight: 500;
  color: var(--hero-black);
  background: none;
  border: 1px solid var(--hero-border);
  border-radius: 9px;
  padding: 10px 22px;

  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
  letter-spacing: -0.1px;

  transition: border-color 0.15s, background 0.15s;
}

.btn-ghost:hover {
  border-color: #999;
  background: #F5F5F5;
}

  .btn-primary {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--hero-black);
    border: none;
    border-radius: 9px;
    padding: 11px 26px;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
    letter-spacing: -0.1px;
  }

  .btn-primary:hover { background: #222; }
  .btn-primary:active { transform: scale(0.98); }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 42% 58%;
    padding-top: 76px;
    overflow: hidden;
  }

  .hero-jersey-image{
  width:530px;
  max-width:100%;
  height:auto;
  object-fit:contain;
  filter:
    drop-shadow(0 52px 96px rgba(0,0,0,0.26))
    drop-shadow(0 14px 40px rgba(0,0,0,0.14));
}

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px 80px 60px;
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hero-gray);
    margin-bottom: 28px;
  }

  .hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--hero-gold);
  }

  .hero-heading {
    font-size: 76px;
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -3px;
    color: var(--hero-black);
    margin-bottom: 28px;
    max-width: 520px;
  }

  .hero-heading em {
    font-style: normal;
    color: var(--hero-gray);
  }

  .hero-sub {
    font-size: 17px;
    font-weight: 400;
    color: var(--hero-gray);
    line-height: 1.65;
    max-width: 290px;
    margin-bottom: 44px;
    letter-spacing: -0.1px;
  }

  .hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 72px;
  }

  .cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--hero-black);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 26px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: -0.2px;
    transition: background 0.15s, transform 0.1s;
  }

  .cta-primary:hover { background: #222; }
  .cta-primary:active { transform: scale(0.98); }

  .cta-primary svg { width: 16px; height: 16px; }

  .cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    color: var(--hero-black);
    font-size: 15px;
    font-weight: 500;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1.5px solid var(--hero-border);
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
    letter-spacing: -0.2px;
    transition: border-color 0.15s, background 0.15s;
  }

  .cta-secondary:hover { border-color: #aaa; background: #F5F5F5; }

  .cta-secondary svg { width: 16px; height: 16px; }

  /* TRUSTED BY */
  .trusted-label {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #C8C8C3;
    margin-bottom: 14px;
  }

  .trusted-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }

  .trusted-club {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111;
    opacity: 0.18;
    transition: opacity 0.2s;
    cursor: default;
    line-height: 1;
  }

  .trusted-club:hover { opacity: 0.45; }

  /* HERO RIGHT — 3D JERSEY SHOWCASE */
  .hero-right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hero-light-bg);
    overflow: hidden;
  }

  .hero-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 70% at 55% 45%, #F0EDE5 0%, #FAFAFA 100%);
  }

  /* Big radial gold glow behind jersey */
  .jersey-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184,151,42,0.08) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
  }

  /* Jersey wrapper — float animation */
  .jersey-wrapper {
    position: relative;
    z-index: 2;
    animation: floatJersey 6s ease-in-out infinite;
    transform-origin: center center;
  }

  @keyframes floatJersey {
    0%, 100% { transform: translateY(0px) rotate(-2deg); }
    50% { transform: translateY(-18px) rotate(-2deg); }
  }

  /* Main jersey SVG */
  .jersey-3d {
    width: 530px;
    height: auto;
    filter: drop-shadow(0 52px 96px rgba(0,0,0,0.26)) drop-shadow(0 14px 40px rgba(0,0,0,0.14));
  }

  /* Floating fabric swatches panel — top right */
  .float-swatches {
    position: absolute;
    right: 44px;
    top: 88px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 5;
    animation: floatPanel1 6s ease-in-out infinite;
    animation-delay: 0.5s;
    min-width: 128px;
  }

  @keyframes floatPanel1 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }

  .swatch-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #BBB;
    margin-bottom: 6px;
  }

  .swatch-row {
    display: flex;
    gap: 7px;
  }

  .fabric-swatch {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: transform 0.15s, border-color 0.15s;
    position: relative;
  }
  .fabric-swatch:hover { transform: scale(1.1); }
  .fabric-swatch.active { border-color: #999; }
  .swatch-ivory  { background: #F5F2EA; border-color: #E0DDD5 !important; }
  .swatch-black  { background: #111111; }
  .swatch-gold   { background: linear-gradient(135deg, #D4AF37 0%, #8B6914 100%); }
  .swatch-navy   { background: #1A2F5A; }
  .swatch-red    { background: #C0392B; }

  .swatch-name {
    font-size: 9px;
    color: #AAA;
    text-align: center;
    margin-top: 2px;
    font-weight: 500;
  }

  .fabric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Floating zoom controls — bottom left */
  .float-toolbar {
    position: absolute;
    bottom: 80px;
    left: 44px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 12px;
    padding: 6px;
    display: flex;
    align-items: center;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 5;
    animation: floatPanel2 6s ease-in-out infinite;
    animation-delay: 1s;
  }

  @keyframes floatPanel2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
  }

  .toolbar-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 7px;
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    color: #666;
  }

  .toolbar-btn:hover { background: #F0F0F0; }
  .toolbar-btn.active { background: #111; color: #fff; }
  .toolbar-btn svg { width: 15px; height: 15px; }
  .toolbar-divider { width: 1px; height: 20px; background: #EEE; margin: 0 2px; }

  /* Floating mini customization panel — bottom right */
  .float-badge {
    position: absolute;
    bottom: 80px;
    right: 44px;
    background: rgba(255,255,255,0.97);
    border: 1px solid rgba(0,0,0,0.07);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    z-index: 5;
    animation: floatPanel3 6s ease-in-out infinite;
    animation-delay: 1.5s;
    min-width: 150px;
  }

  @keyframes floatPanel3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
  }

  .mini-panel-section {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .mini-panel-sep {
    height: 1px;
    background: #F0F0F0;
    margin: 2px 0;
  }

  .mini-panel-title {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C0C0C0;
  }

  .mini-panel-value {
    font-size: 12px;
    font-weight: 700;
    color: #111;
    letter-spacing: -0.2px;
  }

  .mini-color-row {
    display: flex;
    align-items: center;
    gap: 5px;
  }

  .mini-color-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
    display: inline-block;
  }

  .mini-color-label {
    font-size: 10px;
    font-weight: 600;
    color: #999;
    letter-spacing: -0.1px;
  }

  /* SCROLLED NAV */
  nav.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.06); }

/* ════════════════════════════════════════════════════════
   2. SPORTS CATEGORIES SECTION  (sports-*)
════════════════════════════════════════════════════════ */

  .sports-section {
    position: relative;
    width: 100%;
    background: #F8FAFC;
    padding: 120px 80px;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
  }

  .sports-section * {
    box-sizing: border-box;
  }

  .sports-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .sports-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
  }

  .sports-blob-1 {
    width: 360px;
    height: 360px;
    top: -100px;
    left: -120px;
    background: radial-gradient(circle, #cdeedd 0%, transparent 70%);
  }

  .sports-blob-2 {
    width: 380px;
    height: 380px;
    bottom: -140px;
    right: -120px;
    background: radial-gradient(circle, #d6c8f4 0%, transparent 70%);
  }

  .sports-blob-3 {
    width: 260px;
    height: 260px;
    top: 40%;
    right: 10%;
    background: radial-gradient(circle, #f3e2b8 0%, transparent 70%);
    opacity: 0.25;
  }

  .sports-dots {
    position: absolute;
    top: 50px;
    right: 70px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.7;
  }

  .sports-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* HEADER */

  .sports-header {
    text-align: center;
    margin-bottom: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .sports-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid #ECE3C8;
    border-radius: 999px;
    background: #FFFDF7;
    color: #9C8027;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
  }

  .sports-badge-icon {
    color: #C9A84C;
  }

  .sports-heading {
    font-size: 44px;
    line-height: 1.18;
    font-weight: 700;
    color: #111111;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
  }

  .sports-description {
    font-size: 17px;
    line-height: 1.65;
    color: #5B5B5B;
    max-width: 560px;
    margin: 0;
  }

  /* BENTO GRID */

  .sports-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-auto-rows: minmax(220px, auto);
    gap: 24px;
  }

  .sports-card-large {
    grid-column: span 1;
    min-height: 420px;
  }

  .sports-card-medium {
    grid-column: span 1;
    min-height: 300px;
    align-self: center;
  }

  /* CARD BASE */

  .sports-card {
    position: relative;
    background: #FFFFFF;
    background-image:
      radial-gradient(circle at 85% -10%, rgba(201, 168, 76, 0.08) 0%, transparent 55%),
      radial-gradient(circle at -10% 110%, rgba(0, 0, 0, 0.025) 0%, transparent 50%);
    border: 1px solid #ECECEC;
    border-radius: 28px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: visible;
    min-height: 320px;
    box-shadow: 0 14px 36px rgba(20, 20, 20, 0.05);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.32s ease;
  }

  .sports-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 28%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 1;
  }

  .sports-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 32px 64px rgba(20, 20, 20, 0.12);
  }

  .sports-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 60%;
  }

  .sports-corner-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #6B6B6B;
    z-index: 3;
  }

  .sports-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 18px;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .sports-card:hover .sports-icon-circle {
    transform: scale(1.06);
  }

  .sports-card-title {
    font-size: 25px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 10px;
  }

  .sports-card-title span {
    font-weight: 500;
    color: #6B6B6B;
  }

  .sports-card-text {
    font-size: 14px;
    line-height: 1.55;
    color: #6B6B6B;
    margin: 0 0 16px;
  }

  .sports-divider {
    width: 30px;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 16px;
  }

  .sports-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
  }

  .sports-tag {
    font-size: 11px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid #ECECEC;
    background: #FAFAFA;
    color: #4A4A4A;
    white-space: nowrap;
  }

  .sports-link {
    font-size: 14px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .sports-arrow {
    transition: transform 0.25s ease;
  }

  .sports-card:hover .sports-arrow {
    transform: translateX(5px);
  }

  /* JERSEY */

  .sports-jersey-wrap {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 46%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -28px;
    margin-bottom: -16px;
  }

  .sports-jersey-glow {
    position: absolute;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.16) 0%, transparent 72%);
    filter: blur(6px);
    opacity: 0;
    transition: opacity 0.32s ease;
    z-index: -1;
  }

  .sports-card:hover .sports-jersey-glow {
    opacity: 1;
  }

  .sports-jersey {
    width: 100%;
    max-width: 190px;
    height: auto;
    filter: drop-shadow(0 22px 28px rgba(0, 0, 0, 0.16));
    transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
    animation: sports-jersey-float 5s ease-in-out infinite;
  }

  @keyframes sports-jersey-float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  .sports-card:hover .sports-jersey {
    animation-play-state: paused;
    transform: translateY(-10px) rotate(4deg) scale(1.05);
  }

  /* ACCENT COLORS — applied via underline, icon, tag text, glow */

  .sports-card-cricket .sports-divider {
    background: #18794E;
  }

  .sports-card-cricket .sports-icon-circle {
    color: #18794E;
    border-color: #CFEAD9;
    background: #F0FAF4;
  }

  .sports-card-cricket::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -10%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(24, 121, 78, 0.10) 0%, transparent 70%);
    opacity: 0.4;
    transition: opacity 0.32s ease;
    z-index: 0;
  }

  .sports-card-cricket:hover::before {
    opacity: 1;
  }

  .sports-card-cricket .sports-link {
    color: #18794E;
  }

  .sports-card-football .sports-divider {
    background: #1A56DB;
  }

  .sports-card-football .sports-icon-circle {
    color: #1A56DB;
    border-color: #CFE0F7;
    background: #EFF5FE;
  }

  .sports-card-football::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.10) 0%, transparent 70%);
    opacity: 0.4;
    transition: opacity 0.32s ease;
    z-index: 0;
  }

  .sports-card-football:hover::before {
    opacity: 1;
  }

  .sports-card-football .sports-link {
    color: #1A56DB;
  }

  .sports-card-kabaddi .sports-divider {
    background: #D9711B;
  }

  .sports-card-kabaddi .sports-icon-circle {
    color: #D9711B;
    border-color: #F6DDC2;
    background: #FEF6EC;
  }

  .sports-card-kabaddi::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -10%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(217, 113, 27, 0.12) 0%, transparent 70%);
    opacity: 0.4;
    transition: opacity 0.32s ease;
    z-index: 0;
  }

  .sports-card-kabaddi:hover::before {
    opacity: 1;
  }

  .sports-card-kabaddi .sports-link {
    color: #D9711B;
  }

  .sports-card-esports .sports-divider {
    background: #7C3AED;
  }

  .sports-card-esports .sports-icon-circle {
    color: #7C3AED;
    border-color: #E2D4FB;
    background: #F7F2FE;
  }

  .sports-card-esports::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 60%;
    height: 180%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    opacity: 0.4;
    transition: opacity 0.32s ease;
    z-index: 0;
  }

  .sports-card-esports:hover::before {
    opacity: 1;
  }

  .sports-card-esports .sports-link {
    color: #7C3AED;
  }

  /* CTA */

  .sports-cta-wrap {
    display: flex;
    justify-content: center;
    margin-top: 56px;
  }

  .sports-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #ECECEC;
    border-radius: 999px;
    padding: 15px 30px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .sports-cta:hover {
    transform: translateY(-3px);
    border-color: #E6D7A8;
    box-shadow: 0 14px 30px rgba(201, 168, 76, 0.18);
  }

  .sports-cta-icon {
    color: #C9A84C;
  }

  .sports-cta-arrow {
    transition: transform 0.25s ease;
  }

  .sports-cta:hover .sports-cta-arrow {
    transform: translateX(4px);
  }

  /* RESPONSIVE */

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

    .sports-jersey {
      max-width: 350px;
    }
  }

  @media (max-width: 860px) {
    .sports-section {
      padding: 80px 24px;
    }

    .sports-heading {
      font-size: 34px;
    }

    .sports-grid {
      grid-template-columns: 1fr;
    }

    .sports-card {
      flex-direction: column;
      align-items: flex-start;
      min-height: auto;
      padding: 28px;
    }

    .sports-card-content {
      max-width: 100%;
    }

    .sports-jersey-wrap {
      width: 100%;
      margin-top: 20px;
      justify-content: center;
    }

    .sports-jersey {
      max-width: 160px;
    }

    .sports-corner-btn {
      top: 20px;
      right: 20px;
    }
  }

/* ════════════════════════════════════════════════════════
   3. WHY KITCRAFT SECTION  (why-kitcraft, wk-*)
════════════════════════════════════════════════════════ */


  /* ── CSS variables (match KitCraft design system) ── */
  :root {
    --gold: #C9A84C;
    --gold-light: #E8C96B;
    --gold-glow: rgba(201,168,76,0.12);
    --black: #0a0a0a;
    --white: #ffffff;
    --border: rgba(0,0,0,0.08);
    --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
    --radius: 20px;
  }

  /* ══════════════════════════════════════════
     WHY KITCRAFT SECTION
  ══════════════════════════════════════════ */
  .why-kitcraft {
    position: relative;
    padding: 140px 60px 160px;
    overflow: hidden;
    background: #fff;
  }

  /* subtle dot-grid texture */
  .why-kitcraft::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0,0,0,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
  }

  /* blurred gold glow behind heading */
  .why-kitcraft::after {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.10) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
  }

  .why-kitcraft__inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* ── heading block ── */
  .why-kitcraft__header {
    text-align: center;
    margin-bottom: 88px;
  }

  .why-kitcraft__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
  }

  .why-kitcraft__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  .why-kitcraft__heading {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 24px;
  }

  .why-kitcraft__heading .gold-period {
    color: var(--gold);
  }

  .why-kitcraft__subtext {
    font-size: 17px;
    line-height: 1.65;
    color: #666;
    max-width: 520px;
    margin: 0 auto;
  }

  /* ── 2×2 card grid ── */
  .why-kitcraft__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* ── base card ── */
  .wk-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    overflow: hidden;
    cursor: default;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    box-shadow: var(--shadow-sm);
  }

  /* gold accent line — animates on hover */
  .wk-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    border-radius: 0 0 3px 3px;
    transition: width 0.45s cubic-bezier(.22,.68,0,1.2);
  }

  .wk-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(201,168,76,0.15);
    border-color: rgba(201,168,76,0.25);
  }

  .wk-card:hover::before {
    width: 100%;
  }

  /* icon box */
  .wk-card__icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #f5f5f5;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
    flex-shrink: 0;
  }

  .wk-card:hover .wk-card__icon-box {
    background: rgba(201,168,76,0.10);
  }

  .wk-card__icon-box svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2);
  }

  .wk-card:hover .wk-card__icon-box svg {
    transform: rotate(-8deg) scale(1.1);
  }

  .wk-card__title {
    font-size: 22px;
    font-weight: 750;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 10px;
    line-height: 1.2;
  }

  .wk-card__desc {
    font-size: 15px;
    line-height: 1.65;
    color: #777;
    max-width: 340px;
    margin-bottom: 28px;
  }

  /* card arrow link */
  .wk-card__arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--gold);
    text-decoration: none;
    transition: gap 0.25s ease;
  }

  .wk-card__arrow:hover { gap: 10px; }

  .wk-card__arrow svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ══ CARD 1 — AI Design (with jersey mini-preview) ══ */
  /* Black Gold Jersey */
.wk-card--ai .card-visual{
    position:absolute;
   width:260px;      /* 180 → 260 */

    right:-30px;      /* image baher yeil */
    bottom:-30px;


    pointer-events:none;

    transform:rotate(-8deg);

    filter:drop-shadow(0 18px 40px rgba(0,0,0,.18));

    transition:all .45s cubic-bezier(.22,.68,0,1.2);
}

.ai-jerseys{
    position:absolute;
    right:-20px;
    bottom:-10px;

    width:260px;
    height:180px;

    pointer-events:none;
    z-index:1;
}

.ai-jerseys .jersey{
    position:absolute;
    transition:.45s cubic-bezier(.22,.68,0,1.2);
    filter:drop-shadow(0 18px 35px rgba(0,0,0,.18));
}

/* Left */
.jersey-left{
     width:clamp(92px, 10vw, 150px);
    left:0;
    bottom:5px;

    transform:rotate(-18deg);
    z-index:1;
}

/* Center */
.jersey-center{
     width:clamp(100px, 30vw, 165px);
    left:62px;
    bottom:10px;

    z-index:3;
}

/* Right */
.jersey-right{
    width:clamp(82px, 10vw, 140px);
    right:0;
    bottom:5px;

    transform:rotate(18deg);
    z-index:2;
}

.wk-card--ai:hover .jersey-left{
    transform:translateX(-8px) rotate(-24deg);
}

.wk-card--ai:hover .jersey-center{
    transform:translateY(-8px) scale(1.05);
}

.wk-card--ai:hover .jersey-right{
    transform:translateX(8px) rotate(24deg);
}

.wk-card--ai:hover .card-visual{
    transform:rotate(-3deg) scale(1.06);

    filter:drop-shadow(0 30px 60px rgba(0,0,0,.28));
}

  /* AI suggestion chips */
  .ai-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
  }

  .ai-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 11px;
    border-radius: 100px;
    border: 1px solid rgba(201,168,76,0.3);
    background: rgba(201,168,76,0.06);
    font-size: 11.5px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.01em;
  }

  .ai-chip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
  }

  @media (max-width:768px){

    /* Hide left & right jerseys */
    .jersey-left,
    .jersey-right{
        display:none;
    }

    /* Show only center jersey */
    .jersey-center{
        display:block;
        width:160px;       /* adjust as needed */
        left:90%;
        bottom:8px;
        transform:translateX(-50%);
    }

    .ai-jerseys{
        width:100%;
        height:120px;
        right:0;
        bottom:0;
    }

}

  /* ══ CARD 2 — Live Preview (jersey strip + color dots) ══ */
  .wk-card--preview .card-visual {
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 155px;
    opacity: 0.20;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
  }

  .wk-card--preview:hover .card-visual {
    opacity: 0.35;
    transform: scale(1.06) rotate(3deg);
  }

  .preview-jersey{
    position:absolute;
    right:-15px;
    bottom:-12px;
    width:170px;
    pointer-events:none;
    transition:.4s;
}

.preview-jersey img{
    width:100%;
    display:block;
    filter:drop-shadow(0 20px 35px rgba(0,0,0,.18));
}

.wk-card--preview:hover .preview-jersey{
    transform:translateY(-8px) rotate(4deg) scale(1.05);
}

  .preview-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }

  .preview-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .preview-dot:hover { transform: scale(1.2); }

  .preview-dot.active {
    box-shadow: 0 0 0 3px rgba(201,168,76,0.5), 0 2px 8px rgba(0,0,0,0.15);
  }

  .preview-label {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: #aaa;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* live indicator */
  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 100px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.2);
    font-size: 11px;
    font-weight: 700;
    color: #16a34a;
    letter-spacing: 0.04em;
    margin-bottom: 16px;
  }

  .live-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: live-pulse 1.6s ease-in-out infinite;
  }

  @keyframes live-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
  }

  /* ══ CARD 3 — Team Management (avatars) ══ */
  .team-avatars {
    display: flex;
    align-items: center;
    margin-bottom: 28px;
  }

  .team-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    flex-shrink: 0;
  }

  .team-avatar:first-child { margin-left: 0; }

  .team-count {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    margin-left: -10px;
    background: #f0f0f0;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .team-label {
    margin-left: 14px;
    font-size: 12.5px;
    font-weight: 600;
    color: #999;
  }

  /* squad roster mini table */
  .squad-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 28px;
  }

  .squad-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid rgba(0,0,0,0.05);
  }

  .squad-number {
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    width: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .squad-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    flex: 1;
  }

  .squad-pos {
    font-size: 10.5px;
    font-weight: 700;
    color: #bbb;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ══ CARD 4 — Export (progress animation) ══ */
  .export-widget {
    margin-bottom: 28px;
  }

  .export-files {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .export-file {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fafafa;
  }

  .export-file-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
    flex-shrink: 0;
  }

  .export-file-icon.png {
    background: rgba(201,168,76,0.12);
    color: var(--gold);
    border: 1px solid rgba(201,168,76,0.2);
  }

  .export-file-icon.pdf {
    background: rgba(239,68,68,0.08);
    color: #ef4444;
    border: 1px solid rgba(239,68,68,0.15);
  }

  .export-file-info { flex: 1; }

  .export-file-name {
    font-size: 12.5px;
    font-weight: 650;
    color: #333;
    margin-bottom: 4px;
  }

  .export-progress-bar {
    height: 3px;
    border-radius: 100px;
    background: #eee;
    overflow: hidden;
  }

  .export-progress-fill {
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: fill-progress 2.4s ease-in-out infinite;
  }

  .export-progress-fill.pdf-fill {
    animation-delay: 0.6s;
    animation-duration: 3s;
  }

  @keyframes fill-progress {
    0%   { width: 0%; }
    60%  { width: 100%; }
    100% { width: 100%; }
  }

  .export-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .export-check svg {
    width: 10px;
    height: 10px;
    stroke: #22c55e;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  /* ── scroll reveal ── */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(.22,.68,0,1.2);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* staggered grid children */
  .why-kitcraft__grid .wk-card:nth-child(1) { transition-delay: 0.05s; }
  .why-kitcraft__grid .wk-card:nth-child(2) { transition-delay: 0.15s; }
  .why-kitcraft__grid .wk-card:nth-child(3) { transition-delay: 0.25s; }
  .why-kitcraft__grid .wk-card:nth-child(4) { transition-delay: 0.35s; }

  /* ── responsive ── */
  @media (max-width: 900px) {
    .why-kitcraft__grid { grid-template-columns: 1fr; }
    .why-kitcraft { padding: 100px 32px 120px; }
  }

  @media (max-width: 600px) {
    .why-kitcraft { padding: 80px 20px 100px; }
    .wk-card { padding: 28px; }
    .why-kitcraft__heading { font-size: 38px; }
  }

/* ════════════════════════════════════════════════════════
   4. INTERACTIVE DESIGN STUDIO SECTION  (studio-*)
════════════════════════════════════════════════════════ */

  .studio-section {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    padding: 120px 80px;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
  }

  .studio-section * {
    box-sizing: border-box;
  }

  .studio-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .studio-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
  }

  .studio-blob-1 {
    width: 380px;
    height: 380px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, #f0d99a 0%, transparent 70%);
  }

  .studio-blob-2 {
    width: 420px;
    height: 420px;
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle, #f3e2b8 0%, transparent 70%);
  }

  .studio-dots {
    position: absolute;
    top: 60px;
    right: 60px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, #e5e5e5 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.6;
  }

  .studio-container {
    position: relative;
    z-index: 1;
    max-width: 1360px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: center;
  }

  /* LEFT SIDE */

  .studio-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .studio-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid #ECE3C8;
    border-radius: 999px;
    background: #FFFDF7;
    color: #9C8027;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
  }

  .studio-badge-icon {
    color: #C9A84C;
  }

  .studio-heading {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 700;
    color: #111111;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
  }

  .studio-heading-accent {
    color: #C9A84C;
  }

  .studio-description {
    font-size: 17px;
    line-height: 1.65;
    color: #5B5B5B;
    max-width: 460px;
    margin: 0 0 32px;
  }

  .studio-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .studio-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
    color: #2B2B2B;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 14px;
    padding: 12px 18px;
    width: 100%;
    max-width: 340px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .studio-feature-item:hover {
    transform: translateY(-2px);
    border-color: #E6D7A8;
    box-shadow: 0 8px 20px rgba(201, 168, 76, 0.12);
  }

  .studio-feature-check {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #C9A84C;
    color: #fff;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .studio-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #D9B85B, #BD9636);
    color: #1A1404;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    padding: 16px 30px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 10px 24px rgba(201, 168, 76, 0.28);
  }

  .studio-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(201, 168, 76, 0.38);
  }

  .studio-cta-arrow {
    transition: transform 0.25s ease;
  }

  .studio-cta:hover .studio-cta-arrow {
    transform: translateX(4px);
  }

  /* RIGHT SIDE — EDITOR MOCKUP */

  .studio-right {
    display: flex;
    justify-content: center;
  }

  .studio-editor {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(20, 20, 20, 0.08);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
  }

  .studio-editor:hover {
    transform: translateY(-6px);
    box-shadow: 0 40px 90px rgba(20, 20, 20, 0.12);
  }

  .studio-editor-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid #F0F0F0;
  }

  .studio-brand {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .studio-brand-mark {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: #111111;
    color: #C9A84C;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .studio-brand-name {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #111111;
  }

  .studio-brand-name span {
    font-weight: 500;
    color: #9C9C9C;
  }

  .studio-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .studio-icon-btn {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    border: 1px solid #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #8A8A8A;
    cursor: pointer;
  }

  .studio-zoom {
    font-size: 13px;
    color: #6B6B6B;
    margin-right: 4px;
  }

  .studio-btn-ghost {
    font-size: 13px;
    font-weight: 500;
    color: #2B2B2B;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 9px 16px;
    cursor: pointer;
  }

  .studio-btn-gold {
    font-size: 13px;
    font-weight: 600;
    color: #1A1404;
    background: linear-gradient(135deg, #D9B85B, #BD9636);
    border: none;
    border-radius: 10px;
    padding: 9px 16px;
    cursor: pointer;
  }

  .studio-editor-body {
    display: grid;
    grid-template-columns: 88px 1fr 250px;
    min-height: 480px;
  }

  /* TOOLBAR */

  .studio-toolbar {
    border-right: 1px solid #F0F0F0;
    padding: 20px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .studio-tool {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 4px;
    border-radius: 14px;
    font-size: 11px;
    color: #6B6B6B;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }

  .studio-tool:hover {
    background: #FAFAFA;
    transform: translateY(-2px);
  }

  .studio-tool-active {
    background: #FFFBEF;
    border: 1px solid #ECE3C8;
    color: #9C8027;
  }

  .studio-tool-icon {
    font-size: 17px;
  }

  /* CANVAS */

  .studio-canvas {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 50% 50%, #FCF6E3 0%, transparent 60%),
      #FFFFFF;
    border-right: 1px solid #F0F0F0;
    padding: 40px;
    overflow: hidden;
  }

  .studio-canvas-glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 168, 76, 0.18) 0%, transparent 70%);
    filter: blur(10px);
  }

  .studio-jersey{
    position:relative;
    width:635px;
    height:auto;
    object-fit:contain;

    filter:drop-shadow(0 25px 35px rgba(0,0,0,.18));

    animation:studio-float 4s ease-in-out infinite;

    z-index:2;
}

  @keyframes studio-float {

    0%,
    100% {
      transform: translateY(0px);
    }

    50% {
      transform: translateY(-10px);
    }
  }

  .studio-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 11px;
    font-weight: 500;
    color: #3A3A3A;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
    animation: studio-chip-float 5s ease-in-out infinite;
    white-space: nowrap;
  }

  .studio-chip-tl {
    top: 18%;
    left: 0;
    animation-delay: 0s;
  }

  .studio-chip-tr {
    top: 22%;
    right: 0;
    animation-delay: 0.6s;
  }

  .studio-chip-ml {
    top: 52%;
    left: -4%;
    animation-delay: 1.2s;
  }

  .studio-chip-mr {
    top: 56%;
    right: -4%;
    animation-delay: 1.8s;
  }

  .studio-chip-b {
    bottom: 6%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2.4s;
  }

  @keyframes studio-chip-float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-6px);
    }
  }

  .studio-chip-b {
    animation-name: studio-chip-float-b;
  }

  @keyframes studio-chip-float-b {

    0%,
    100% {
      transform: translateX(-50%) translateY(0);
    }

    50% {
      transform: translateX(-50%) translateY(-6px);
    }
  }

  /* PROPERTIES PANEL */

  .studio-properties {
    padding: 22px 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    overflow-y: auto;
  }

  .studio-prop-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .studio-prop-label {
    font-size: 11px;
    font-weight: 600;
    color: #8A8A8A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .studio-prop-row {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .studio-logo-thumb {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #111111;
    color: #C9A84C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
  }

  .studio-input-btn {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: #2B2B2B;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 9px 12px;
    cursor: pointer;
  }

  .studio-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #2B2B2B;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 10px 12px;
  }

  .studio-input-icon {
    font-size: 12px;
    color: #B0B0B0;
  }

  .studio-color-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #4A4A4A;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 9px 12px;
  }

  .studio-swatch {
    width: 22px;
    height: 22px;
    border-radius: 7px;
  }

  .studio-export-row {
    display: flex;
    gap: 8px;
  }

  .studio-export-btn {
    flex: 1;
    font-size: 12px;
    font-weight: 500;
    color: #2B2B2B;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 10px;
    padding: 9px 0;
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
  }

  .studio-export-btn:hover {
    border-color: #C9A84C;
    transform: translateY(-2px);
  }

  /* BOTTOM PALETTE */

  .studio-palette {
    display: flex;
    justify-content: center;
    gap: 14px;
    padding: 18px;
    border-top: 1px solid #F0F0F0;
  }

  .studio-palette-dot {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s ease;
  }

  .studio-palette-dot:hover {
    transform: scale(1.15);
  }

  .studio-palette-active {
    outline: 2px solid #C9A84C;
    outline-offset: 3px;
  }

  /* RESPONSIVE */

  @media (max-width: 1100px) {
    .studio-container {
      grid-template-columns: 1fr;
    }

    .studio-editor-body {
      grid-template-columns: 70px 1fr 220px;
    }
  }

  @media (max-width: 860px) {
    .studio-section {
      padding: 80px 24px;
    }

    .studio-heading {
      font-size: 36px;
    }

    .studio-editor-body {
      grid-template-columns: 1fr;
    }

    .studio-toolbar {
      flex-direction: row;
      justify-content: center;
      border-right: none;
      border-bottom: 1px solid #F0F0F0;
      overflow-x: auto;
    }

    .studio-canvas {
      border-right: none;
      border-bottom: 1px solid #F0F0F0;
    }

    .studio-chip-ml,
    .studio-chip-mr {
      display: none;
    }
  }

/* ════════════════════════════════════════════════════════
   5. PREMIUM TEMPLATE LIBRARY SECTION  (templates-*)
════════════════════════════════════════════════════════ */

  .templates-section {
    position: relative;
    width: 100%;
    background: #FFFFFF;
    padding: 120px 80px;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-sizing: border-box;
  }

  .templates-section * {
    box-sizing: border-box;
  }

  .templates-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }

  .templates-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.3;
  }

  .templates-blob-1 {
    width: 380px;
    height: 380px;
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, #f3e2b8 0%, transparent 70%);
  }

  .templates-blob-2 {
    width: 400px;
    height: 400px;
    bottom: -160px;
    right: -140px;
    background: radial-gradient(circle, #cdeedd 0%, transparent 70%);
  }

  .templates-dots {
    position: absolute;
    top: 60px;
    right: 70px;
    width: 160px;
    height: 160px;
    background-image: radial-gradient(circle, #e0e0e0 1px, transparent 1px);
    background-size: 14px 14px;
    opacity: 0.6;
  }

  .templates-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
  }

  /* HEADER */

  .templates-header {
    text-align: center;
    margin-bottom: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .templates-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid #ECE3C8;
    border-radius: 999px;
    background: #FFFDF7;
    color: #9C8027;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
  }

  .templates-badge-icon {
    color: #C9A84C;
  }

  .templates-heading {
    font-size: 44px;
    line-height: 1.18;
    font-weight: 700;
    color: #111111;
    margin: 0 0 18px;
    letter-spacing: -0.02em;
  }

  .templates-description {
    font-size: 17px;
    line-height: 1.65;
    color: #5B5B5B;
    max-width: 560px;
    margin: 0;
  }

  /* FILTER BAR */

  .templates-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 14px 20px;
    background: rgba(250, 250, 250, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid #ECECEC;
    border-radius: 20px;
  }

  .templates-search {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 12px;
    padding: 10px 16px;
    min-width: 240px;
    flex: 1;
    max-width: 320px;
  }

  .templates-search-icon {
    width: 14px;
    height: 14px;
    border: 1.5px solid #9A9A9A;
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
  }

  .templates-search-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 1.5px;
    background: #9A9A9A;
    bottom: -3px;
    right: -4px;
    transform: rotate(45deg);
  }

  .templates-search-input {
    border: none;
    outline: none;
    background: transparent;
    font-size: 13.5px;
    color: #2B2B2B;
    width: 100%;
    font-family: inherit;
  }

  .templates-search-input::placeholder {
    color: #ABABAB;
  }

  .templates-chips {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }

  .templates-chip {
    font-size: 13px;
    font-weight: 500;
    color: #4A4A4A;
    background: rgba(255,255,255,0.6);
    border: 1px solid #ECECEC;
    border-radius: 999px;
    padding: 9px 18px;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .templates-chip:hover {
    transform: translateY(-2px);
    border-color: #E6D7A8;
  }

  .templates-chip-active {
    background: #C9A84C;
    border-color: #C9A84C;
    color: #1A1404;
    font-weight: 600;
  }

  .templates-chip-active:hover {
    transform: translateY(-2px);
  }

  /* BENTO GALLERY */

  .templates-gallery {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 24px;
  }

  .templates-card-featured {
    grid-column: 1;
    grid-row: 1 / span 2;
  }

  .templates-card-medium:nth-of-type(2) {
    grid-column: 2 / span 2;
    grid-row: 1;
  }

  .templates-card-medium:nth-of-type(3) {
    grid-column: 2 / span 2;
    grid-row: 2;
  }

  .templates-card-small {
    grid-column: span 1;
  }

  /* CARD BASE */

  .templates-card {
    position: relative;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    border-radius: 28px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    min-height: 220px;
    box-shadow: 0 14px 32px rgba(20, 20, 20, 0.05);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease;
  }

  .templates-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 56px rgba(20, 20, 20, 0.1);
    border-color: #E6D7A8;
  }

  .templates-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 30%);
    opacity: 0.6;
    pointer-events: none;
  }

  .templates-corner-btn {
    position: absolute;
    top: 22px;
    right: 22px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid #ECECEC;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #6B6B6B;
    z-index: 3;
  }

  /* FEATURED CARD */

  .templates-card-featured {
    min-height: 480px;
    padding: 32px;
    background: linear-gradient(180deg, #FFFCF3 0%, #FFFFFF 60%);
    border-color: #ECE3C8;
    box-shadow: 0 20px 48px rgba(201,168,76,0.12);
  }

  .templates-card-featured:hover {
    box-shadow: 0 32px 64px rgba(201,168,76,0.2);
  }

  .templates-popular-tag {
    position: absolute;
    top: 22px;
    left: 22px;
    font-size: 11px;
    font-weight: 600;
    color: #9C8027;
    background: #FFFBEF;
    border: 1px solid #ECE3C8;
    border-radius: 999px;
    padding: 6px 14px;
    z-index: 3;
  }

  .templates-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 320px;
    height: 320px;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(201,168,76,0.26) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 0;
  }

  /* JERSEY */

  .templates-jersey-wrap {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 140px;
  }

  .templates-jersey {
    width: 100%;
    max-width: 170px;
    height: auto;
    filter: drop-shadow(0 18px 26px rgba(0,0,0,0.16));
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .templates-card:hover .templates-jersey {
    transform: scale(1.06);
  }

  .templates-card-featured .templates-jersey {
    max-width: 240px;
  }

  /* FOOTER */

  .templates-card-footer {
    position: relative;
    z-index: 2;
  }

  .templates-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }

  .templates-badge-pill {
    font-size: 10.5px;
    font-weight: 600;
    border-radius: 999px;
    padding: 5px 11px;
  }

  .templates-badge-premium {
    color: #9C8027;
    background: #FFFBEF;
    border: 1px solid #ECE3C8;
  }

  .templates-badge-free {
    color: #18794E;
    background: #F0FAF4;
    border: 1px solid #CFEAD9;
  }

  .templates-badge-sport {
    color: #4A4A4A;
    background: #FAFAFA;
    border: 1px solid #ECECEC;
  }

  .templates-card-title {
    font-size: 19px;
    font-weight: 700;
    color: #111111;
    margin: 0 0 6px;
  }

  .templates-card-desc {
    font-size: 13px;
    line-height: 1.55;
    color: #6B6B6B;
    margin: 0 0 16px;
    max-width: 320px;
  }

  .templates-link {
    font-size: 13.5px;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .templates-arrow {
    transition: transform 0.25s ease;
  }

  .templates-card:hover .templates-arrow {
    transform: translateX(5px);
  }

  /* CTA */

  .templates-cta-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 56px;
  }

  .templates-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    color: #111111;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #ECECEC;
    border-radius: 999px;
    padding: 15px 30px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .templates-cta:hover {
    transform: translateY(-3px);
    border-color: #E6D7A8;
    box-shadow: 0 14px 30px rgba(201, 168, 76, 0.18);
  }

  .templates-cta-arrow {
    transition: transform 0.25s ease;
  }

  .templates-cta:hover .templates-cta-arrow {
    transform: translateX(4px);
  }

  .templates-caption {
    font-size: 13px;
    color: #9C9C9C;
    margin: 0;
  }

  /* RESPONSIVE */

  @media (max-width: 1100px) {
    .templates-gallery {
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
    }

    .templates-card-featured {
      grid-column: 1 / span 2;
      grid-row: 1;
      min-height: 380px;
    }

    .templates-card-medium:nth-of-type(2) {
      grid-column: 1;
      grid-row: 2;
    }

    .templates-card-medium:nth-of-type(3) {
      grid-column: 2;
      grid-row: 2;
    }

    .templates-card-small {
      grid-column: span 1;
    }
  }

  @media (max-width: 720px) {
    .templates-section {
      padding: 80px 24px;
    }

    .templates-heading {
      font-size: 34px;
    }

    .templates-filter-bar {
      flex-direction: column;
      align-items: stretch;
    }

    .templates-search {
      max-width: 100%;
    }

    .templates-gallery {
      grid-template-columns: 1fr;
    }

    .templates-card-featured,
    .templates-card-medium:nth-of-type(2),
    .templates-card-medium:nth-of-type(3),
    .templates-card-small {
      grid-column: 1;
      grid-row: auto;
    }

    .templates-card-featured {
      min-height: 360px;
    }
  }

/* ════════════════════════════════════════════════════════
   6. REMAINING / UPCOMING SECTIONS — PLACEHOLDERS
   (ai-process, ai-features, live-demo, stats, testimonials,
   pricing, faq, final-cta, footer all share this style
   until their dedicated section files are built out)
════════════════════════════════════════════════════════ */

  /* ══════════════════════════════════════════
     PLACEHOLDER SECTIONS (to be replaced)
  ══════════════════════════════════════════ */
  .placeholder-section {
    position: relative;
    padding: 100px 80px;
    background: #FFFFFF;
    border-top: 1px dashed #E6E6E6;
    border-bottom: 1px dashed #E6E6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .placeholder-section.placeholder-alt {
    background: #F8FAFC;
  }

  .placeholder-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    border: 1px solid #ECECEC;
    background: #FAFAFA;
    font-size: 13px;
    font-weight: 500;
    color: #9C9C9C;
    letter-spacing: 0.02em;
  }

  .placeholder-inner span {
    color: #C9A84C;
  }

/* ════════════════════════════════════════════════════════
   7. SECTION LOADER STATES
   Used by js/main.js while fetch() is loading each
   sections/*.html file into its placeholder.
════════════════════════════════════════════════════════ */
.section-placeholder {
  min-height: 60px;
}

.section-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  font-size: 13px;
  color: #B0B0B0;
  letter-spacing: 0.02em;
}

.section-error {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  font-size: 13px;
  color: #C0392B;
  background: #FFF6F5;
}


/* =====================================================
   LOGIN MODAL
===================================================== */

.login-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;

    display: none;
    align-items: center;
    justify-content: center;

    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    padding: 20px;
}

.login-modal-overlay.active {
    display: flex;
}

.login-modal {
    position: relative;

    width: 100%;
    max-width: 430px;

    background: #ffffff;
    border-radius: 18px;

    padding: 38px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.25);

    animation: loginModalIn 0.2s ease-out;
}

@keyframes loginModalIn {

    from {
        opacity: 0;
        transform: translateY(15px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.login-modal-close {
    position: absolute;

    top: 14px;
    right: 16px;

    width: 34px;
    height: 34px;

    border: none;
    background: transparent;

    font-size: 28px;
    line-height: 1;

    color: #777;

    cursor: pointer;

    border-radius: 50%;
}

.login-modal-close:hover {
    background: #f2f2f2;
    color: #111;
}

.login-modal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.login-subtitle {
    color: #666;
    font-size: 14px;
    margin-bottom: 28px;
}

.login-modal .form-group {
    margin-bottom: 18px;
}

.login-modal .form-group label {
    display: block;

    font-size: 13px;
    font-weight: 600;

    color: #333;

    margin-bottom: 7px;
}

.login-modal .form-group input {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #ddd;
    border-radius: 9px;

    font-family: inherit;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.15s,
        box-shadow 0.15s;
}

.login-modal .form-group input:focus {
    border-color: #111;

    box-shadow:
        0 0 0 3px rgba(0, 0, 0, 0.06);
}

.login-submit-btn {
    width: 100%;
    margin-top: 5px;
}

.register-text {
    text-align: center;

    font-size: 13px;
    color: #666;

    margin-top: 22px;
}

.register-text a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.register-text a:hover {
    text-decoration: underline;
}