/* ============ BASE ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --green: #00d977;
  --green-dark: #00b863;
  --ink: #0a0e1a;
  --ink-2: #141a2e;
  --ink-3: #1e2740;
  --gray: #8a93a6;
  --line: #e8ebf0;
  --bg: #ffffff;
  --bg-soft: #f6f8fc;
  --wa: #25d366;
  --r: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(10,14,26,.06);
  --shadow: 0 16px 50px rgba(10,14,26,.10);
  --shadow-lg: 0 30px 80px rgba(10,14,26,.16);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif; color: var(--ink); background: var(--bg);
  line-height: 1.65; -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
svg { display: block; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border: none; border-radius: 100px; font-family: inherit;
  font-size: 16px; font-weight: 700; cursor: pointer; transition: all .25s cubic-bezier(.4,0,.2,1);
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 17px; }
.btn-primary { background: var(--green); color: var(--ink); box-shadow: 0 8px 24px rgba(0,217,119,.35); }
.btn-pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 8px 24px rgba(0,217,119,.35); } 50% { box-shadow: 0 8px 24px rgba(0,217,119,.35), 0 0 0 12px rgba(0,217,119,0); } }
.btn-primary:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 14px 34px rgba(0,217,119,.45); }
.btn-ghost { background: rgba(255,255,255,.08); color: #fff; border: 1.5px solid rgba(255,255,255,.25); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { filter: brightness(1.06); transform: translateY(-3px); }
.btn-block { width: 100%; }
.btn:disabled { opacity: .4; cursor: not-allowed; transform: none; box-shadow: none; }

/* ============ ANNOUNCE ============ */
.announce {
  background: var(--ink); color: #fff; text-align: center; font-size: 13.5px;
  font-weight: 500; padding: 9px 16px; letter-spacing: .2px;
}

/* ============ HEADER ============ */
.header {
  position: sticky; top: 0; z-index: 60; background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px); border-bottom: 1px solid transparent; transition: .3s;
}
.header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 10px; direction: ltr; perspective: 700px; }
/* לוגו GOAT KIT — wordmark זהב בשורה אחת + אפקט אור 3D במעבר עכבר */
.logo-img { height: 50px; width: auto; display: block; flex-shrink: 0; transform-style: preserve-3d; will-change: transform, filter; transition: transform .45s cubic-bezier(.2,.85,.3,1), filter .45s ease; filter: drop-shadow(0 2px 3px rgba(0,0,0,.2)); cursor: pointer; }
.logo:hover .logo-img, .footer-logo:hover .logo-img { transform: rotateX(7deg) rotateY(-15deg) scale(1.07); filter: drop-shadow(0 10px 22px rgba(228,180,70,.6)) drop-shadow(0 0 10px rgba(255,225,150,.5)) brightness(1.12); }
.footer-logo { perspective: 700px; }
.footer-logo .logo-img { height: 58px; }
@media (max-width: 600px){ .logo-img { height: 42px; } }
.logo-mark { width: 34px; height: 34px; flex-shrink: 0; object-fit: contain; filter: drop-shadow(0 0 4px rgba(245,210,120,.35)); }
.logo-text { display: flex; flex-direction: column; line-height: .92; font-weight: 900; letter-spacing: 1px; font-size: 15px; color: var(--ink); }
.logo-text b { color: var(--green); font-weight: 900; }
.footer-logo { display: flex; align-items: center; gap: 11px; direction: ltr; }
.footer-logo .logo-mark { width: 40px; height: 40px; }
.footer-logo .logo-text { font-size: 18px; }
.logo-text.light { color: #fff; }
.nav { display: flex; gap: 32px; }
.nav a { font-weight: 600; font-size: 15.5px; color: var(--ink); position: relative; transition: .2s; }
.nav a::after { content:""; position: absolute; bottom: -4px; right: 0; width: 0; height: 2px; background: var(--green); transition: .25s; }
.nav a:hover::after { width: 100%; }
.cart-btn {
  position: relative; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: .2s;
}
.cart-btn:hover { background: var(--ink); color: #fff; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.cart-count {
  position: absolute; top: -5px; left: -5px; background: var(--green); color: var(--ink);
  font-size: 12px; font-weight: 800; min-width: 21px; height: 21px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center; padding: 0 5px; border: 2px solid #fff;
}

/* ============ HERO ============ */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 20%, rgba(0,217,119,.28), transparent 42%),
    radial-gradient(circle at 15% 80%, rgba(64,120,255,.22), transparent 45%);
}
.hero-bg::after {
  content: "⚽"; position: absolute; font-size: 520px; opacity: .025;
  bottom: -120px; right: -60px; transform: rotate(-12deg);
}
.hero-inner {
  position: relative; display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px;
  align-items: center; min-height: 600px; padding: 60px 24px;
}
.hero-tag {
  display: inline-block; background: rgba(0,217,119,.14); color: var(--green);
  border: 1px solid rgba(0,217,119,.3); padding: 7px 16px; border-radius: 100px;
  font-size: 13.5px; font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(36px, 5.2vw, 62px); font-weight: 900; line-height: 1.08; letter-spacing: -1px; }
.grad { background: linear-gradient(100deg, var(--green), #6ee7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: clamp(16px, 2vw, 19px); color: #b8c0d4; margin: 22px 0 32px; max-width: 480px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 44px; }
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong { font-size: 28px; font-weight: 900; color: var(--green); }
.hero-stats span { font-size: 13.5px; color: var(--gray); }
.hero-visual { position: relative; height: 460px; display: flex; align-items: center; justify-content: center; }
.hero-jersey { position: absolute; filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); }
.hero-jersey.j1 { width: 290px; z-index: 3; animation: float 5s ease-in-out infinite; }
.hero-jersey.j2 { width: 220px; right: 20%; top: 8%; opacity: .92; z-index: 2; animation: float 5s ease-in-out infinite .6s; }
.hero-jersey.j3 { width: 200px; left: 18%; bottom: 6%; opacity: .85; z-index: 1; animation: float 5s ease-in-out infinite 1.2s; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-18px) } }

/* ===== HERO TURNTABLE (חולצה מסתובבת + מתחלפת) ===== */
.turntable-stage { position: relative; width: 100%; height: 460px; display: flex; align-items: center; justify-content: center; perspective: 1200px; }
.tt-tilt { transform-style: preserve-3d; will-change: transform; }
.tt-float { animation: ttfloat 5s ease-in-out infinite; }
@keyframes ttfloat { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-18px) } }
.tt-jersey { width: 300px; height: 380px; transform-style: preserve-3d; will-change: transform, opacity; }
.tt-jersey svg { width: 100%; height: 100%; filter: drop-shadow(0 30px 45px rgba(0,0,0,.55)); }
.tt-jersey img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 30px 50px rgba(0,0,0,.6)) drop-shadow(0 0 28px rgba(0,217,119,.28)); }
.tt-jersey img.tt-scene { object-fit: cover; border-radius: 18px; border: 1px solid rgba(255,255,255,.12); box-shadow: 0 24px 55px rgba(0,0,0,.55); }
.tt-glow { position: absolute; width: 440px; height: 440px; border-radius: 50%; pointer-events: none; filter: blur(34px); animation: glowpulse 6s ease-in-out infinite;
  background: radial-gradient(circle, rgba(0,217,119,.30), rgba(165,0,68,.22) 42%, rgba(0,77,152,.16) 60%, transparent 72%); }
@keyframes glowpulse { 0%,100% { opacity:.65; transform:scale(1) } 50% { opacity:1; transform:scale(1.14) } }
.tt-disc { position: absolute; bottom: 44px; width: 280px; height: 54px; background: radial-gradient(ellipse, rgba(0,217,119,.4), transparent 70%); border-radius: 50%; filter: blur(10px); animation: discpulse 5s ease-in-out infinite; }
@keyframes discpulse { 0%,100% { opacity:.7; transform:scale(1) } 50% { opacity:1; transform:scale(1.08) } }
.hero-team { background: linear-gradient(100deg, var(--green), #6ee7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ============ TRUST BAR ============ */
.trust-bar { background: #fff; border-bottom: 1px solid var(--line); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 22px 24px; }
.trust-item { display: flex; align-items: center; gap: 12px; justify-content: center; }
.trust-ico { font-size: 26px; }
.trust-item b { display: block; font-size: 15px; font-weight: 800; }
.trust-item small { color: var(--gray); font-size: 13px; }

/* ============ MARQUEE ============ */
.marquee { background: var(--bg-soft); border-block: 1px solid var(--line); overflow: hidden; padding: 18px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 28s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-size: 17px; font-weight: 800; color: var(--gray); display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.marquee-item .dot { width: 8px; height: 8px; border-radius: 50%; }
@keyframes scroll { to { transform: translateX(50%); } }

/* ============ PRODUCTS ============ */
.products-section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 44px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 900; letter-spacing: -.8px; }
.section-title.light { color: #fff; }
.section-sub { color: var(--gray); font-size: 17px; margin-top: 10px; }
.filters { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-chip {
  padding: 9px 20px; border: 1.5px solid var(--line); background: #fff; border-radius: 100px;
  font-family: inherit; font-size: 14.5px; font-weight: 600; cursor: pointer; transition: .2s; color: var(--ink);
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); gap: 28px; }
/* קולקציות */
.products-wrap { display: flex; flex-direction: column; gap: 46px; }
.collection-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid rgba(0,0,0,.08); }
.collection-head h3 { margin: 0; font-size: 26px; font-weight: 900; letter-spacing: -.5px; }
.collection-head span { color: var(--muted, #8a93a6); font-size: 14px; font-weight: 500; }
.collection-link { background: none; border: 0; color: var(--accent, #00b964); font-weight: 800; font-size: 14px; cursor: pointer; white-space: nowrap; padding: 6px 4px; transition: .15s; }
.collection-link:hover { opacity: .7; transform: translateX(-3px); }
@media (max-width: 560px) { .collection-head h3 { font-size: 21px; } }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: .3s cubic-bezier(.4,0,.2,1); opacity: 0; transform: translateY(24px);
  --rx:0deg; --ry:0deg; --mx:50%; --my:50%;
}
.product-card.reveal { opacity: 1; transform: translateY(0); }
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.product-img { aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center; position: relative; padding: 0; overflow: hidden; }
.product-img svg { height: 100%; width: auto; max-width: 100%; transition: .4s; padding: 28px; box-sizing: border-box; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: .5s cubic-bezier(.2,.8,.2,1); }
.product-card:hover .product-img svg, .product-card:hover .product-img img { transform: scale(1.05); }
.product-badge {
  position: absolute; top: 16px; right: 16px; background: var(--ink); color: #fff;
  font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: 100px; letter-spacing: .3px;
}
.quick-add {
  position: absolute; bottom: 16px; left: 16px; right: 16px; background: var(--ink); color: #fff;
  border: none; padding: 12px; border-radius: 12px; font-family: inherit; font-weight: 700;
  font-size: 14.5px; cursor: pointer; opacity: 0; transform: translateY(10px); transition: .25s;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }
.quick-add:hover { background: var(--green); color: var(--ink); }
.product-info { padding: 4px 22px 24px; }
.product-team { font-size: 19px; font-weight: 800; }
.product-name { color: var(--gray); font-size: 14px; }
.product-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.product-price { font-size: 24px; font-weight: 900; }
.product-price small { font-size: 14px; font-weight: 600; color: var(--gray); }

/* ============ ABOUT ============ */
.about { background: var(--ink); color: #fff; padding: 90px 0; }
.about .section-title { text-align: center; margin-bottom: 50px; }
.about-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.about-item { background: var(--ink-2); border: 1px solid var(--ink-3); border-radius: var(--r-lg); padding: 32px 26px; transition: .3s; }
.about-item:hover { transform: translateY(-6px); border-color: var(--green); }
.about-ico { font-size: 38px; margin-bottom: 14px; }
.about-item h3 { font-size: 19px; margin-bottom: 8px; }
.about-item p { color: #aab2c6; font-size: 14.5px; }

/* ============ REVIEWS ============ */
.reviews { padding: 90px 0; background: var(--bg-soft); }
.reviews .section-title { text-align: center; margin-bottom: 46px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review { background: #fff; border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.stars { color: #ffb800; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.review p { font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.reviewer { color: var(--gray); font-weight: 600; font-size: 14.5px; }

/* ============ CTA BAND ============ */
.cta-band { background: linear-gradient(120deg, var(--green), #00b8a9); color: var(--ink); text-align: center; padding: 80px 0; }
.cta-band h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 900; letter-spacing: -.6px; }
.cta-band p { font-size: 18px; margin: 12px 0 28px; opacity: .85; }
.cta-band .btn-primary { background: var(--ink); color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.2); }
.cta-band .btn-primary:hover { background: var(--ink-2); }

/* ============ FOOTER ============ */
.footer { background: var(--ink); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { font-size: 26px; font-weight: 900; margin-bottom: 12px; }
.footer-logo + .footer-desc, .footer-desc { color: #aab2c6; max-width: 340px; font-size: 15px; }
.footer h4 { font-size: 16px; margin-bottom: 16px; }
.footer-grid a { display: block; color: #aab2c6; margin-bottom: 10px; transition: .2s; }
.footer-grid a:hover { color: var(--green); }
.footer-bottom { border-top: 1px solid var(--ink-3); text-align: center; padding: 22px; color: var(--gray); font-size: 13.5px; }

/* ============ CART DRAWER ============ */
.cart-overlay, .modal-overlay { position: fixed; inset: 0; background: rgba(10,14,26,.55); z-index: 90; opacity: 0; visibility: hidden; transition: .3s; backdrop-filter: blur(2px); }
.cart-overlay.open, .modal-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer {
  position: fixed; top: 0; left: 0; height: 100%; width: min(820px, 96vw); background: #fff;
  z-index: 100; transform: translateX(-100%); transition: transform .42s cubic-bezier(.22,1,.36,1);
  display: grid; grid-template-rows: auto 1fr; box-shadow: 0 0 80px rgba(10,14,26,.3);
}
.cart-drawer.open { transform: translateX(0); }
.cart-body { display: grid; grid-template-columns: 1.6fr .9fr; min-height: 0; }
@media (max-width: 760px) {
  .cart-drawer { width: 100vw; max-width: 100vw; top: auto; bottom: 0; height: 92vh; transform: translateY(100%); border-radius: 22px 22px 0 0; }
  .cart-drawer.open { transform: translateY(0); }
  .cart-body { grid-template-columns: 1fr; }
  .cart-footer { border-inline-start: none !important; border-top: 1px solid var(--line); }
}
.ship-bar { margin-bottom: 18px; }
.ship-track { height: 9px; border-radius: 99px; background: var(--line); overflow: hidden; margin-bottom: 8px; }
.ship-track > i { display: block; height: 100%; background: linear-gradient(90deg, var(--green), #00b865); transition: width .55s cubic-bezier(.22,1,.36,1); }
.ship-msg { font-size: 13.5px; font-weight: 600; color: var(--gray); text-align: center; }
.ship-msg b { color: var(--green); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 22px 24px; border-bottom: 1px solid var(--line); }
.cart-header h3 { font-size: 21px; font-weight: 800; }
.cart-close, .modal-close { background: none; border: none; font-size: 22px; cursor: pointer; color: var(--gray); transition: .2s; }
.cart-close:hover, .modal-close:hover { color: var(--ink); }
.cart-items { overflow-y: auto; padding: 8px 26px; min-height: 0; }
.cart-empty { text-align: center; color: var(--gray); padding: 60px 0; font-size: 16px; }
.cart-empty span { font-size: 46px; display: block; margin-bottom: 12px; }
.cart-item { display: flex; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.cart-item-img { width: 60px; height: 70px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; padding: 6px; }
.cart-item-img svg { height: 100%; }
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 800; font-size: 15.5px; }
.cart-item-meta { color: var(--gray); font-size: 13px; }
.cart-item-controls { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.qty-btn { width: 28px; height: 28px; border: 1.5px solid var(--line); background: #fff; border-radius: 8px; cursor: pointer; font-weight: 800; font-size: 16px; transition: .2s; }
.qty-btn:hover { border-color: var(--ink); }
.qty-num { min-width: 24px; text-align: center; font-weight: 800; }
.remove-item { background: none; border: none; color: #e74c3c; cursor: pointer; font-size: 13px; margin-inline-start: auto; font-family: inherit; }
.cart-item-price { font-weight: 900; font-size: 15.5px; }
.cart-footer { padding: 26px 24px; border-inline-start: 1px solid var(--line); background: var(--bg-soft); align-self: stretch; }
.cart-row { display: flex; justify-content: space-between; margin-bottom: 9px; color: var(--gray); font-size: 15px; }
.cart-total { font-size: 20px; font-weight: 900; color: var(--ink); margin: 14px 0 18px; }

/* ============ MODALS ============ */
.modal-overlay { display: flex; align-items: flex-start; overflow-y: auto; }
.modal { position: relative; background: #fff; max-width: 460px; width: 90%; margin: 5vh auto; border-radius: var(--r-lg); padding: 36px; box-shadow: var(--shadow-lg); max-height: 90vh; overflow-y: auto; }
.modal-close { position: absolute; top: 18px; left: 18px; }
.modal h3 { font-size: 24px; font-weight: 800; margin-bottom: 6px; }
.modal-sub { color: var(--gray); margin-bottom: 24px; }
.modal label { display: block; font-weight: 600; margin-bottom: 15px; font-size: 14px; }
.modal input { width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 12px; font-size: 15px; margin-top: 6px; font-family: inherit; transition: .2s; }
.modal input:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 4px rgba(0,217,119,.12); }
.pay-info { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; padding: 13px 15px; font-size: 14px; margin: 10px 0 16px; }
.modal label.consent { display: flex; align-items: flex-start; gap: 9px; font-weight: 500; font-size: 12.5px; color: var(--gray); margin-bottom: 12px; cursor: pointer; line-height: 1.45; }
.modal label.consent input { width: auto; margin-top: 2px; flex-shrink: 0; accent-color: var(--green); }
.modal label.consent a { color: var(--green); font-weight: 600; }
.size-preview { height: 130px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.size-preview svg { height: 100%; }
.modal-size h3 { text-align: center; }
.size-options { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin: 22px 0; }
.size-opt { min-width: 56px; padding: 13px; border: 2px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer; font-weight: 800; font-size: 16px; transition: .18s; font-family: inherit; }
.size-opt:hover { border-color: var(--green); }
.size-opt.selected { border-color: var(--green); background: var(--green); color: var(--ink); }

/* ===== PRODUCT MODAL (עמוד מוצר) ===== */
.product-modal { position: relative; background: #fff; max-width: 1080px; width: 95%; margin: 4vh auto; border-radius: 20px; overflow: hidden; display: grid; grid-template-columns: 1.35fr 1fr; box-shadow: var(--shadow-lg); max-height: 92vh; }
.product-modal .modal-close { position: absolute; top: 14px; left: 14px; z-index: 5; background: rgba(255,255,255,.9); border-radius: 50%; width: 34px; height: 34px; }
.pm-gallery { background: linear-gradient(160deg, #15171a, #0b0c0e); padding: 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; position: relative; }
.pm-gallery::before { content:""; position:absolute; width:70%; height:60%; border-radius:50%; background: radial-gradient(circle, rgba(0,217,119,.18), transparent 70%); filter: blur(30px); }
.pm-main { width: 100%; height: 72vh; max-height: 680px; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; overflow: hidden; background: #0e1116; }
.pm-main-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: blur(34px) brightness(0.5) saturate(1.1); transform: scale(1.25); z-index: 0; }
.pm-main img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
/* תצוגת שם+מספר חיה על גב החולצה */
.pm-print-overlay { position: absolute; inset: 0; z-index: 3; pointer-events: none; }
.pm-print-overlay[hidden] { display: none; }
.pm-print-svg {
  position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible;
  transform: perspective(1200px) rotateX(7deg) rotateZ(-1deg);
  transform-origin: 50% 40%;
  mix-blend-mode: normal; opacity: .97;
  filter: drop-shadow(0 1.5px 2.5px rgba(0,0,0,.55));
}
.pm-ink { fill: #fafafa; }   /* השם תמיד לבן */
.pm-svg-name { font-family: 'Saira Condensed', 'Oswald', Arial, sans-serif; font-weight: 800; font-size: 70px; letter-spacing: 9px; }
.pm-svg-num { font-family: 'Saira Condensed', 'Oswald', Arial, sans-serif; font-weight: 900; font-size: 300px; }
.pm-thumbs { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; padding: 0 16px 16px; position: relative; z-index: 2; }
.pm-thumbs:empty { display: none; }
.pm-thumb { width: 62px; height: 62px; border-radius: 12px; overflow: hidden; cursor: pointer; border: 2px solid rgba(255,255,255,.18); background: #0b0c0e; padding: 4px; transition: .18s; }
.pm-thumb img { width: 100%; height: 100%; object-fit: contain; }
.pm-thumb.active { border-color: var(--green); box-shadow: 0 0 0 3px rgba(0,217,119,.2); }
/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(6,8,12,.95); z-index: 200; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; object-fit: contain; border-radius: 8px; }
.lb-close { position: absolute; top: 22px; left: 26px; background: rgba(255,255,255,.12); color: #fff; border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 20px; cursor: pointer; }
.lb-nav { position: absolute; inset: 0; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; pointer-events: none; }
.lb-nav button { pointer-events: auto; background: rgba(255,255,255,.12); color: #fff; border: none; width: 54px; height: 54px; border-radius: 50%; font-size: 30px; cursor: pointer; transition: .15s; }
.lb-nav button:hover { background: rgba(255,255,255,.25); }
.pm-main svg { height: 100%; }
.pm-info { padding: 32px; overflow-y: auto; }
.pm-league { color: var(--gray); font-size: 13px; font-weight: 600; }
.pm-info h2 { font-size: 26px; font-weight: 900; margin: 2px 0; }
.pm-name { color: var(--gray); margin-bottom: 10px; }
.pm-price { font-size: 28px; font-weight: 900; color: var(--green); margin-bottom: 20px; }
.pm-field { margin-bottom: 16px; }
.pm-field label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.pm-sizes { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-size { min-width: 48px; padding: 11px; border: 2px solid var(--line); border-radius: 10px; background: #fff; font-family: inherit; font-weight: 800; cursor: pointer; transition: .15s; }
.pm-size:hover { border-color: var(--green); }
.pm-size.selected { border-color: var(--green); background: var(--green); color: var(--ink); }
.pm-toggle { display: flex; gap: 8px; }
.pm-opt { flex: 1; padding: 11px; border: 2px solid var(--line); border-radius: 10px; background: #fff; font-family: inherit; font-weight: 700; cursor: pointer; font-size: 13.5px; transition: .15s; }
.pm-opt.active { border-color: var(--green); background: #f4fff9; }
.pm-players { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.pm-players-lbl { width: 100%; font-size: 12.5px; color: var(--gray); margin-bottom: 2px; }
.pm-player { padding: 10px 15px; border: 1.5px solid var(--line); border-radius: 100px; background: #fff; font-family: inherit; font-weight: 800; font-size: 13.5px; cursor: pointer; transition: .15s; min-height: 40px; }
.pm-player:hover { border-color: var(--green); }
.pm-player:active { transform: scale(.95); }
.pm-player.picked { background: var(--green); color: var(--ink); border-color: var(--green); }
.pm-print-fields { display: none; gap: 8px; margin-top: 8px; }
.pm-print-fields input { flex: 1; padding: 10px 12px; border: 1.5px solid var(--line); border-radius: 10px; font-family: inherit; font-size: 14.5px; }
.pm-print-fields #pmPrintNum { flex: 0 0 70px; }
.pm-acc { margin-top: 18px; border-top: 1px solid var(--line); }
.pm-acc details { border-bottom: 1px solid var(--line); padding: 11px 0; }
.pm-acc summary { cursor: pointer; font-weight: 700; font-size: 14.5px; list-style: none; }
.pm-acc summary::-webkit-details-marker { display: none; }
.pm-acc p { color: var(--gray); font-size: 14px; margin-top: 8px; }
@media (max-width: 760px) { .product-modal { grid-template-columns: 1fr; max-height: 94vh; } .pm-main { height: 48vh; } .pm-info { padding: 22px; } }

/* ============ TOAST ============ */
.toast { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(120px); background: var(--ink); color: #fff; padding: 15px 28px; border-radius: 100px; font-weight: 700; z-index: 200; opacity: 0; transition: .35s cubic-bezier(.4,0,.2,1); box-shadow: var(--shadow); }
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============ SOCIAL PROOF TOAST ============ */
.social-toast {
  position: fixed; bottom: 24px; right: 24px; background: #fff; border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: 16px; padding: 14px 18px; display: flex; align-items: center;
  gap: 12px; max-width: 320px; z-index: 150; opacity: 0; transform: translateY(20px); transition: .4s cubic-bezier(.4,0,.2,1); pointer-events: none;
}
.social-toast.show { opacity: 1; transform: translateY(0); }
.social-toast .st-ico { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.social-toast b { font-weight: 800; }
.social-toast span { display: block; font-size: 12.5px; color: var(--gray); margin-top: 2px; }

/* ============ SECTION REVEAL ============ */
.about-item, .review { opacity: 0; transform: translateY(28px); transition: .6s cubic-bezier(.4,0,.2,1); }
.about-item.reveal, .review.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { *, ::before, ::after { animation: none !important; transition: none !important; } .about-item, .review, .product-card { opacity: 1 !important; transform: none !important; } }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; min-height: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero p { margin-inline: auto; }
  .hero-visual { height: 360px; margin-top: 20px; }
  .about-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .social-toast { left: 16px; right: 16px; bottom: 16px; max-width: none; }
}
@media (max-width: 600px) {
  .nav { display: none; }
  .hero-stats { gap: 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .products-section, .about, .reviews { padding: 60px 0; }
}

/* ===== SHOP-BY-TEAM RAIL ===== */
.team-rail-section { padding: 34px 0 10px; background: var(--bg); }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.team-rail-all { background: none; border: 0; cursor: pointer; font: inherit; font-weight: 800; font-size: 15px; color: var(--green); white-space: nowrap; transition: transform .2s; }
.team-rail-all:hover { transform: translateX(-4px); }
.team-rail-wrap { -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%); }
.team-rail { display: flex; gap: 18px; max-width: 1248px; margin: 0 auto; padding: 8px 24px 26px; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x proximity; scroll-padding-inline: 24px; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.team-rail::-webkit-scrollbar { display: none; }
.team-tile { position: relative; flex: 0 0 188px; width: 188px; scroll-snap-align: start; padding: 0; border: 0; cursor: pointer; font-family: inherit; text-align: center; border-radius: 20px; overflow: hidden; background: var(--bg-soft); outline: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s, outline-color .28s; }
.team-tile::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; z-index: 3; background: linear-gradient(90deg, var(--tcolor), var(--taccent)); opacity: .9; }
.team-tile:hover, .team-tile:focus-visible { transform: translateY(-8px); outline-offset: 0; outline-color: color-mix(in srgb, var(--tcolor) 60%, var(--line)); box-shadow: var(--shadow-lg), 0 18px 50px color-mix(in srgb, var(--tcolor) 30%, transparent); }
.team-tile:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.team-tile-img { position: relative; aspect-ratio: 4/5; width: 100%; overflow: hidden; }
.team-tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.02); transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.team-tile:hover .team-tile-img img { transform: scale(1.08); }
.team-tile-body { position: relative; z-index: 2; margin-top: -56px; padding: 0 12px 14px; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.team-tile-foot { position: absolute; inset: auto 0 0 0; height: 84px; z-index: 1; background: linear-gradient(180deg, transparent, rgba(10,14,26,.92)); pointer-events: none; }
.team-tile-name { font-family: 'Saira Condensed','Heebo',sans-serif; font-weight: 800; font-size: 18px; color: #fff; line-height: 1.1; text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.team-tile-league { font-size: 12px; font-weight: 700; color: #cfe9da; background: rgba(0,217,119,.16); border: 1px solid rgba(0,217,119,.4); padding: 3px 11px; border-radius: 100px; }
.team-tile-badge { position: absolute; top: 10px; inset-inline-start: 10px; z-index: 3; font-size: 11px; font-weight: 800; color: #06210f; background: var(--green); padding: 3px 9px; border-radius: 100px; }
.team-tile.active { outline: 2px solid var(--green); outline-offset: 0; box-shadow: 0 0 0 3px rgba(0,217,119,.25), var(--shadow); }
.team-tile.tt-all .team-tile-img { display: grid; place-items: center; background: var(--bg-soft); font-size: 34px; font-weight: 900; color: var(--green); }

/* ===== HAMBURGER ===== */
.hamburger { display: none; width: 44px; height: 44px; padding: 0; flex-direction: column; align-items: center; justify-content: center; gap: 5px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px; cursor: pointer; transition: border-color .2s; }
.hamburger:hover { border-color: var(--green); }
.hamburger span { display: block; width: 20px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .2s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== DRAWER (RTL מימין) ===== */
.drawer-overlay { position: fixed; inset: 0; z-index: 1100; background: rgba(8,12,22,.5); backdrop-filter: blur(3px); opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.nav-drawer { position: fixed; top: 0; right: 0; left: auto; height: 100%; width: min(86vw, 340px); z-index: 1101; background: #0b1020; color: #e8ebf0; border-left: 1px solid #1e2949; box-shadow: -24px 0 60px rgba(0,0,0,.4); transform: translateX(100%); transition: transform .34s cubic-bezier(.2,.85,.25,1); display: flex; flex-direction: column; padding: 20px 22px 24px; overflow-y: auto; }
.nav-drawer.open { transform: translateX(0); }
.nav-drawer-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 16px; margin-bottom: 8px; border-bottom: 1px solid #1e2949; }
.nav-drawer-head .logo-text { color: #fff; } .nav-drawer-head .logo-text b { color: var(--green); }
.drawer-close { background: none; border: 0; color: var(--gray); font-size: 24px; line-height: 1; cursor: pointer; transition: color .2s; }
.drawer-close:hover { color: #fff; }
.drawer-nav { display: flex; flex-direction: column; padding: 8px 0; }
.drawer-nav a { padding: 14px 6px; font-size: 17px; font-weight: 700; color: #e8ebf0; border-radius: 10px; transition: background .18s, color .18s, padding-inline-start .18s; }
.drawer-nav a:hover { background: rgba(0,217,119,.1); color: var(--green); padding-inline-start: 14px; }
.drawer-leagues { margin-top: 8px; padding-top: 16px; border-top: 1px solid #1e2949; display: flex; flex-wrap: wrap; gap: 8px; }
.drawer-leagues-title { width: 100%; font-size: 12px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #6b7488; margin-bottom: 4px; }
.drawer-league { font: inherit; font-size: 13.5px; font-weight: 700; color: #cdd4e0; background: #121a31; border: 1px solid #1e2949; padding: 7px 14px; border-radius: 100px; cursor: pointer; transition: .18s; }
.drawer-league:hover { background: var(--green); color: #06210f; border-color: var(--green); }
body.no-scroll { overflow: hidden; }

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .team-tile { flex-basis: 160px; width: 160px; }
  .team-tile-name { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .team-tile, .team-tile-img img, .nav-drawer, .hamburger span, .drawer-overlay { transition: none !important; }
  .team-tile:hover { transform: none; }
  .team-tile:hover .team-tile-img img { transform: none; }
}

/* ===== COLLECTION BANNERS ===== */
.collection { --cg: #00d977; }
.coll-banner { position: relative; overflow: hidden; border-radius: 24px; padding: 30px 32px; margin-bottom: 26px; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; background-size: 165% 165%; background-position: 0% 50%; box-shadow: 0 18px 50px -18px var(--cg); transition: background-position .8s ease, transform .3s; isolation: isolate; }
.coll-banner:hover { background-position: 100% 50%; }
.coll-banner::before { content:""; position:absolute; inset:0; z-index:-1; mix-blend-mode:soft-light; opacity:.5; background-image: radial-gradient(rgba(255,255,255,.5) 1px, transparent 1.5px), repeating-linear-gradient(115deg, rgba(255,255,255,.08) 0 18px, transparent 18px 36px); background-size: 16px 16px, auto; }
.coll-banner::after { content:""; position:absolute; inset:0; z-index:-1; background: linear-gradient(180deg, rgba(255,255,255,.22), transparent 35%), linear-gradient(0deg, rgba(0,0,0,.32), transparent 55%); }
.coll-banner-text { color:#fff; }
.coll-kicker { display:block; font-family:'Saira Condensed',sans-serif; font-weight:700; font-size:14px; letter-spacing:4px; text-transform:uppercase; opacity:.85; margin-bottom:2px; direction:ltr; }
.coll-title { font-family:'Saira Condensed','Heebo',sans-serif; font-weight:900; font-size:clamp(32px,5.5vw,58px); line-height:.95; letter-spacing:-1px; margin:0; color:#fff; text-shadow:0 4px 24px rgba(0,0,0,.35); }
.coll-sub { display:block; color:rgba(255,255,255,.92); font-weight:600; font-size:15px; margin-top:6px; }
.coll-banner-cta { display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.coll-count { font-size:12px; font-weight:800; color:#fff; background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.3); padding:4px 12px; border-radius:100px; backdrop-filter:blur(4px); }
.coll-cta { font:inherit; font-weight:800; font-size:14px; cursor:pointer; white-space:nowrap; color:#0a0e1a; background:rgba(255,255,255,.92); border:0; padding:11px 22px; border-radius:100px; backdrop-filter:blur(8px); transition:.2s; }
.coll-cta:hover { background:#fff; transform:translateX(-4px); box-shadow:0 8px 22px rgba(0,0,0,.25); }
@media (max-width:640px){ .coll-banner { flex-direction:column; align-items:flex-start; border-radius:18px; padding:22px; } .coll-banner-cta { flex-direction:row; align-items:center; width:100%; justify-content:space-between; } }
@media (prefers-reduced-motion:reduce){ .coll-banner{ background-position:0% 50% !important; transition:none; } }

/* ===== 3D TILT (כרטיסי מוצר) ===== */
.product-card.is-tilting { transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px); box-shadow: 0 30px 60px -20px rgba(10,14,26,.45), 0 12px 26px -12px color-mix(in srgb, var(--green) 38%, transparent); transition: box-shadow .3s; z-index: 5; }
.product-img::after { content:""; position:absolute; inset:0; z-index:4; border-radius:inherit; opacity:0; transition:opacity .3s; mix-blend-mode:overlay; background:radial-gradient(circle at var(--mx) var(--my), rgba(255,255,255,.55), transparent 45%); pointer-events:none; }
.product-card.is-tilting .product-img::after { opacity:1; }
@media (prefers-reduced-motion: reduce){ .product-card.is-tilting { transform:translateY(-6px); } .product-img::after { display:none; } }

/* ===== QUICK SEARCH ===== */
.search-trigger { display:flex; align-items:center; gap:8px; background:var(--bg-soft); border:1px solid var(--line); color:var(--gray); border-radius:100px; padding:0 16px; height:48px; cursor:pointer; font-family:inherit; font-size:14px; font-weight:600; transition:.2s; }
.search-trigger:hover { border-color:var(--green); color:var(--ink); }
@media (max-width:900px){ .search-trigger-text { display:none; } .search-trigger { padding:0; width:48px; justify-content:center; border-radius:50%; } }
.search-overlay { position:fixed; inset:0; z-index:1200; background:rgba(8,12,22,.55); backdrop-filter:blur(8px); display:flex; align-items:flex-start; justify-content:center; padding:80px 20px 20px; }
.search-overlay[hidden] { display:none; }
.search-modal { width:min(620px,100%); background:#fff; border-radius:20px; box-shadow:var(--shadow-lg); overflow:hidden; animation:searchpop .3s cubic-bezier(.16,1,.3,1); }
@keyframes searchpop { from{ opacity:0; transform:translateY(14px) scale(.97);} to{ opacity:1; transform:none; } }
.search-field { display:flex; align-items:center; gap:12px; padding:18px 20px; border-bottom:1px solid var(--line); color:var(--gray); }
.search-field input { flex:1; border:0; outline:0; font-family:inherit; font-size:17px; font-weight:600; color:var(--ink); background:none; }
.search-close { background:none; border:0; color:var(--gray); font-size:20px; cursor:pointer; }
.search-results { list-style:none; max-height:52vh; overflow-y:auto; padding:8px; }
.search-result { display:flex; align-items:center; gap:14px; padding:10px 12px; border-radius:12px; cursor:pointer; transition:.15s; }
.search-result:hover { background:var(--bg-soft); }
.search-result img { width:46px; height:54px; object-fit:cover; border-radius:9px; box-shadow:0 0 0 2px var(--ac, var(--line)); }
.sr-team { font-weight:800; font-size:15.5px; }
.sr-meta { color:var(--gray); font-size:13px; }
.sr-go { margin-inline-start:auto; color:var(--green); font-weight:900; opacity:0; transition:.15s; }
.search-result:hover .sr-go { opacity:1; }
.search-empty { padding:34px; text-align:center; color:var(--gray); }

/* ===== TEAM PAGE ===== */
.team-page-hero { position:relative; overflow:hidden; border-radius:26px; margin-bottom:30px; padding:36px; display:flex; align-items:center; gap:30px; flex-wrap:wrap; background:linear-gradient(120deg, var(--tc), color-mix(in srgb, var(--tc) 45%, #0a0e1a)); box-shadow:0 24px 60px -20px var(--tc); }
.team-page-hero::after { content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 50%); pointer-events:none; }
.tph-crest { width:160px; flex-shrink:0; position:relative; z-index:1; filter:drop-shadow(0 20px 30px rgba(0,0,0,.4)); }
.tph-crest img, .tph-crest svg { width:100%; height:auto; border-radius:16px; display:block; }
.tph-text { color:#fff; position:relative; z-index:1; }
.tph-league { display:inline-block; background:rgba(255,255,255,.2); border:1px solid rgba(255,255,255,.35); padding:4px 14px; border-radius:100px; font-size:13px; font-weight:700; backdrop-filter:blur(4px); }
.tph-text h2 { font-family:'Saira Condensed','Heebo',sans-serif; font-weight:900; font-size:clamp(34px,6vw,60px); line-height:1; margin:10px 0 6px; text-shadow:0 4px 20px rgba(0,0,0,.35); }
.tph-text p { font-weight:600; opacity:.92; margin:0 0 14px; }
.tph-back { background:rgba(255,255,255,.92); color:#0a0e1a; border:0; padding:10px 20px; border-radius:100px; font-family:inherit; font-weight:800; cursor:pointer; transition:.2s; }
.tph-back:hover { background:#fff; transform:translateX(4px); }
@media (max-width:560px){ .team-page-hero { padding:24px; gap:18px; } .tph-crest { width:120px; } }

/* ===== HERO recolor לפי הקבוצה המסתובבת ===== */
.hero { --hac:#00d977; --hac2:#6ee7ff; }
.hero-bg { transition: background .9s ease; background:
  radial-gradient(circle at 78% 20%, color-mix(in srgb, var(--hac) 42%, transparent), transparent 44%),
  radial-gradient(circle at 15% 80%, color-mix(in srgb, var(--hac2) 32%, transparent), transparent 46%); }
.hero-team { background: linear-gradient(100deg, color-mix(in srgb, var(--hac) 60%, #fff), var(--hac2)); -webkit-background-clip:text; background-clip:text; color:transparent; transition:.6s ease; }
@media (prefers-reduced-motion:reduce){ .hero-bg{ transition:none; } }

/* ===== ACCOUNT DROPDOWN ===== */
.acct-wrap { position: relative; }
.acct-dropdown { position: absolute; top: calc(100% + 10px); left: 0; min-width: 230px; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-lg); padding: 8px; z-index: 200; animation: ddpop .2s cubic-bezier(.16,1,.3,1); }
.acct-dropdown[hidden] { display: none; }
@keyframes ddpop { from { opacity:0; transform: translateY(-8px) scale(.97); } to { opacity:1; transform:none; } }
.acct-head { padding: 12px 14px 10px; border-bottom: 1px solid var(--line); margin-bottom: 6px; }
.acct-name { font-weight: 800; font-size: 15px; }
.acct-email { color: var(--gray); font-size: 13px; direction: ltr; text-align: right; }
.acct-link { display: flex; align-items: center; gap: 9px; width: 100%; text-align: right; padding: 11px 14px; border-radius: 10px; font-family: inherit; font-size: 14.5px; font-weight: 600; color: var(--ink); background: none; border: 0; cursor: pointer; transition: .15s; }
.acct-link:hover { background: var(--bg-soft); }
.acct-logout { color: #e74c3c; }

/* ============ SATURN BRAND ORB (pure CSS 3D, GPU-composited) ============ */
.fs-orb{ --orb:34px; --spin:8s; --cycle:12s; position:relative; width:var(--orb); height:var(--orb); flex-shrink:0; display:inline-block; transform:rotateZ(-16deg); transform-style:preserve-3d; animation:fsHue var(--cycle) linear infinite; filter:drop-shadow(0 0 5px rgba(0,217,119,.45)); }
.fs-orb__planet{ position:absolute; inset:15%; border-radius:50%; background:radial-gradient(circle at 30% 26%, #7dffc4 0%, #00d977 36%, #00a85c 66%, #053d24 100%); box-shadow:inset -3px -4px 7px rgba(0,0,0,.55), inset 3px 3px 6px rgba(255,255,255,.30); z-index:2; }
.fs-orb__planet::after{ content:""; position:absolute; inset:0; border-radius:50%; background:radial-gradient(circle at 30% 26%, rgba(255,255,255,.95) 0%, rgba(255,255,255,0) 24%); mix-blend-mode:screen; animation:fsGlint var(--spin) ease-in-out infinite; }
.fs-orb__ring{ position:absolute; top:50%; left:50%; width:128%; height:128%; transform:translate(-50%,-50%) rotateX(74deg) rotateZ(0deg); transform-origin:center; border-radius:50%; background:radial-gradient(closest-side, transparent 60%, rgba(0,217,119,.95) 62%, rgba(125,255,196,.95) 74%, rgba(0,217,119,.6) 84%, transparent 86%); animation:fsRingSpin var(--spin) linear infinite; }
.fs-orb__ring--back{ z-index:1; clip-path:inset(0 0 50% 0); }
.fs-orb__ring--front{ z-index:3; clip-path:inset(50% 0 0 0); }
@keyframes fsHue{ to{ filter:drop-shadow(0 0 5px rgba(0,217,119,.45)) hue-rotate(360deg); } }
@keyframes fsRingSpin{ from{ transform:translate(-50%,-50%) rotateX(74deg) rotateZ(0deg); } to{ transform:translate(-50%,-50%) rotateX(74deg) rotateZ(360deg); } }
@keyframes fsGlint{ 0%,100%{ transform:translateX(0); } 50%{ transform:translateX(6%); } }
.footer-logo .fs-orb{ --orb:40px; }
@media (max-width:520px){ .fs-orb{ --orb:30px; } }
@media (prefers-reduced-motion:reduce){ .fs-orb{ animation:none; filter:drop-shadow(0 0 4px rgba(0,217,119,.4)); } .fs-orb__planet::after, .fs-orb__ring{ animation:none; } }

/* =================================================================
   ===============  MOBILE FIX PACK (storefront order flow)  =======
   Scoped to phones only. Desktop (>600px, and cart/product internals
   >760px) is byte-for-byte unchanged.
   ================================================================= */
@media (max-width: 600px) {
  html { -webkit-text-size-adjust: 100%; }
  a, button, .product-card, .team-tile, .filter-chip, .size-opt,
  .pm-size, .pm-opt, .quick-add, .qty-btn, .acct-link, .drawer-league {
    -webkit-tap-highlight-color: transparent;
  }
  .team-rail { touch-action: pan-x; overscroll-behavior-x: contain; }
  .cart-items, .pm-info, .search-results { overscroll-behavior: contain; }
  .cart-item-title, .sr-team, .search-result, .acct-email { overflow-wrap: anywhere; }

  /* ===== HEADER ===== */
  .container { padding-left: 14px; padding-right: 14px; }
  .header-inner { height: 60px; padding-top: env(safe-area-inset-top); min-width: 0; }
  .announce { font-size: 12px; padding: 7px 12px; }
  .header-actions { gap: 6px; }
  .header-actions > .cart-btn,
  .header-actions .acct-wrap > .cart-btn,
  .header-actions .hamburger,
  .search-trigger { width: 44px; height: 44px; border-radius: 50%; }
  .hamburger { border-radius: 50%; }
  .cart-count { top: -4px; left: -3px; min-width: 18px; height: 18px;
    font-size: 11px; border-width: 1.5px; z-index: 2; }
  .fs-orb { --orb: 26px; }
  .logo { gap: 7px; }
  .logo-text { font-size: 13px; letter-spacing: .5px; }

  /* ===== ACCOUNT DROPDOWN — pin to viewport ===== */
  .acct-wrap { position: static; }
  .acct-dropdown {
    position: fixed; top: 64px; left: auto; right: 12px;
    min-width: 0; width: min(300px, calc(100vw - 24px));
    max-height: calc(100vh - 80px); overflow-y: auto;
    box-sizing: border-box; z-index: 1300;
  }
  .acct-dropdown .acct-email { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .acct-link { padding: 13px 14px; }

  /* ===== HERO ===== */
  .hero-inner { padding: 36px 18px 30px; gap: 22px; }
  .hero h1 { font-size: clamp(28px, 8vw, 36px); letter-spacing: -.5px; line-height: 1.12; }
  .hero p { font-size: 15.5px; margin: 16px auto 24px; }
  .hero-tag { margin-bottom: 16px; font-size: 12.5px; }
  .hero-stats { gap: 20px; margin-top: 28px; justify-content: center; }
  .hero-stats strong { font-size: 24px; }
  .hero-visual { height: 300px; margin-top: 14px; }
  .turntable-stage { height: 300px; perspective: 900px; }
  .tt-jersey { width: 220px; height: 280px; }
  .tt-glow { width: 280px; height: 280px; filter: blur(26px); }
  .tt-disc { bottom: 24px; width: 200px; height: 40px; }

  /* ===== PRODUCT GRID + QUICK-ADD ===== */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-info { padding: 4px 12px 16px; }
  .product-team { font-size: 16px; }
  .product-price { font-size: 20px; }
  .product-bottom { margin-top: 8px; }
  .product-bottom .product-name { font-size: 12px; }
  .product-card:hover { transform: none; box-shadow: var(--shadow-sm); border-color: var(--line); }
  .product-card:hover .product-img svg,
  .product-card:hover .product-img img { transform: none; }
  .quick-add {
    opacity: 1; transform: none;
    left: 12px; right: 12px; bottom: 12px;
    padding: 13px; min-height: 46px; border-radius: 12px;
    background: var(--green); color: var(--ink); font-size: 14px;
  }

  /* ===== TEAM RAIL ===== */
  .team-rail { scroll-snap-type: x mandatory; gap: 12px;
    padding: 8px 16px 22px; scroll-padding-inline: 16px; }
  .team-tile { flex-basis: 150px; width: 150px; scroll-snap-align: center; }
  .team-tile-name { font-size: 15px; }

  /* ===== STANDARD MODALS (checkout / size) ===== */
  .modal-overlay { align-items: stretch; }
  .modal {
    width: 100%; max-width: 100%; margin: 0 auto;
    min-height: 100dvh; max-height: 100dvh; border-radius: 0;
    padding: 20px 18px calc(20px + env(safe-area-inset-bottom));
    overflow-y: auto; -webkit-overflow-scrolling: touch;
  }
  .modal h3 { font-size: 21px; margin-top: 4px; padding-inline-start: 44px; }
  .modal-sub { font-size: 14px; margin-bottom: 18px; }
  .modal label { margin-bottom: 18px; }
  .modal input, .modal textarea, .modal select { font-size: 16px; padding: 14px 15px; }
  #authEmail, #authPass, #searchInput { font-size: 16px; }
  .modal label.consent { font-size: 13.5px; padding: 4px 0; gap: 11px; align-items: flex-start; }
  .modal label.consent input { width: 20px; height: 20px; margin-top: 1px; }
  #checkoutForm { padding-bottom: 24px; }
  #checkoutForm .btn-whatsapp {
    position: sticky; bottom: 0;
    margin-top: 8px; padding: 16px; font-size: 17px; min-height: 54px;
  }
  #sizeConfirm.btn-block { padding: 16px; font-size: 17px; min-height: 54px; }
  .size-options { gap: 12px; }
  .size-opt { min-width: 56px; min-height: 50px; }

  /* ===== CLOSE BUTTONS ≥44px ===== */
  .cart-close, .modal-close, .search-close, .drawer-close {
    width: 44px; height: 44px; min-width: 44px; min-height: 44px;
    display: inline-flex; align-items: center; justify-content: center;
  }
  .modal-close { top: 10px; left: 10px; font-size: 26px; }
  .product-modal .modal-close { width: 44px; height: 44px; top: 10px; left: 10px;
    font-size: 22px; background: rgba(255,255,255,.95); box-shadow: 0 2px 10px rgba(0,0,0,.35); }

  /* ===== SEARCH OVERLAY ===== */
  .search-overlay { padding: 12px 12px 12px; align-items: stretch; }
  .search-modal { width: 100%; max-height: 100%; display: flex; flex-direction: column; border-radius: 16px; }
  .search-results { max-height: none; flex: 1; -webkit-overflow-scrolling: touch; }
  .search-result { padding: 13px 12px; gap: 12px; }
  .search-result .sr-go { opacity: 1; }

  /* ===== NAV DRAWER ===== */
  .nav-drawer { width: min(88vw, 360px); padding-bottom: calc(24px + env(safe-area-inset-bottom)); }
  .nav-drawer-head { position: sticky; top: 0; z-index: 2; background: #0b1020; }
  .drawer-leagues { gap: 10px; }
  .drawer-league { padding: 11px 16px; }
  .filter-chip { padding: 11px 18px; }

  /* ===== TOASTS ===== */
  .toast { bottom: calc(28px + env(safe-area-inset-bottom)); }
  .social-toast { bottom: calc(16px + env(safe-area-inset-bottom)); }
}

@media (max-width: 430px) {
  .header-actions #searchTrigger { display: none; }
}
@media (max-width: 380px) {
  .acct-dropdown { right: 8px; left: 8px; width: auto; border-radius: 14px; }
}
@media (max-width: 360px) {
  .products-grid { grid-template-columns: 1fr; }
}

/* ===== CART DRAWER + PRODUCT MODAL — layer on existing 760px blocks ===== */
@media (max-width: 760px) {
  .cart-drawer { padding-bottom: 0; }
  .cart-body { display: flex; flex-direction: column; min-height: 0; height: 100%; }
  .cart-items { flex: 1 1 auto; min-height: 0; overflow-y: auto;
    -webkit-overflow-scrolling: touch; padding: 8px 18px 14px; }
  .cart-footer { flex: 0 0 auto; padding: 16px 18px calc(16px + env(safe-area-inset-bottom)); }
  .cart-header { padding: 18px; }
  .cart-header h3 { font-size: 19px; }
  .cart-item { gap: 12px; }
  .cart-item-price { align-self: flex-start; }
  .cart-item-controls { gap: 12px; margin-top: 10px; flex-wrap: wrap; }
  .qty-btn { width: 40px; height: 40px; font-size: 20px; border-radius: 10px; }
  .qty-num { min-width: 30px; font-size: 16px; }
  .remove-item { font-size: 14px; padding: 9px 12px; min-height: 40px;
    display: inline-flex; align-items: center; border-radius: 10px; }
  .remove-item:active { background: rgba(231,76,60,.10); }
  .ship-bar { margin-bottom: 14px; }
  .cart-footer .cart-total { margin: 12px 0 14px; }
  #checkoutBtn.btn-block { padding: 16px; font-size: 17px; min-height: 54px; margin-top: 6px; }

  /* מסך מלא: גלריה למעלה, מידע גולל, כפתור "הוסף" קבוע למטה — בלי margin שלילי שדרס */
  .product-modal { width: 100%; max-width: 100%; height: 100dvh; max-height: 100dvh;
    margin: 0; border-radius: 0; grid-template-columns: 1fr; grid-template-rows: 38vh 1fr; }
  .pm-main { height: 38vh; }
  .pm-gallery { padding: 12px 12px 6px; }
  .pm-main img { object-fit: contain; }   /* החולצה המלאה — לא חתוכה */
  .pm-thumbs { flex-wrap: nowrap; justify-content: flex-start; overflow-x: auto;
    -webkit-overflow-scrolling: touch; padding: 0 12px 10px; scrollbar-width: none; }
  .pm-thumbs::-webkit-scrollbar { display: none; }
  .pm-thumb { flex: 0 0 auto; width: 54px; height: 54px; }
  .pm-info { min-height: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; padding: 20px; }
  .pm-sizes { gap: 10px; }
  .pm-size { min-width: 52px; min-height: 46px; padding: 11px 14px; }
  .pm-opt { min-height: 46px; padding: 12px; }
  .pm-print-fields { gap: 10px; margin-top: 10px; }
  .pm-print-fields input { font-size: 16px; padding: 12px 14px; }
  .pm-print-fields #pmPrintNum { flex: 0 0 84px; }
  .pm-acc { margin-top: 14px; }
  #pmAdd {
    position: static; width: auto; margin-top: 0; font-size: 16px;
  }
}

@media (max-width: 600px) {
  .lb-close { top: calc(16px + env(safe-area-inset-top)); left: calc(16px + env(safe-area-inset-left)); }
  .lb-nav { padding-inline: calc(10px + env(safe-area-inset-left)); }
}

/* ===== בלוק אחריות בצ'קאאוט ===== */
.checkout-guarantee {
  margin: 12px 0; padding: 11px 13px; border-radius: 12px;
  background: var(--bg-soft, #f5f6f8); font-size: 12.5px; color: var(--gray, #555); font-weight: 600;
}
.checkout-guarantee .cg-row { display: flex; gap: 6px; align-items: flex-start; }
.checkout-guarantee .cg-row + .cg-row { margin-top: 6px; }
.checkout-guarantee .cg-row b { color: var(--text, #111); font-weight: 800; }

/* ===== בר קנייה (מחיר + מידה + הוסף לעגלה) ===== */
.pm-buybar { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
.pm-buybar .btn { flex: 1; }
.pm-buybar-info { display: flex; flex-direction: column; line-height: 1.2; }
.pm-buybar-info b { font-size: 19px; font-weight: 900; }
.pm-buybar-info span { font-size: 12px; color: var(--gray, #777); font-weight: 600; }

/* במובייל — בר דביק בתחתית חלון המוצר */
@media (max-width: 600px) {
  .pm-buybar {
    position: sticky; bottom: 0; z-index: 5;
    margin: 10px -16px -16px; padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--card, #fff); border-top: 1px solid var(--border, #eee);
    box-shadow: 0 -6px 20px rgba(0,0,0,.07);
  }
}

/* ===== בורר שיטת משלוח בעגלה ===== */
.ship-methods { display: flex; flex-direction: column; gap: 8px; margin-bottom: 12px; }
.ship-opt {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
  padding: 10px 12px; border: 1.5px solid var(--border, #e6e6e6); border-radius: 12px;
  transition: border-color .15s, background .15s;
}
.ship-opt:has(input:checked) { border-color: var(--accent, #2ed573); background: rgba(46,213,115,.06); }
.ship-opt input { accent-color: var(--accent, #2ed573); width: 18px; height: 18px; flex-shrink: 0; }
.ship-opt-txt { display: flex; flex-direction: column; line-height: 1.25; flex: 1; }
.ship-opt-txt b { font-size: 14px; font-weight: 800; }
.ship-opt-txt small { font-size: 11.5px; color: var(--gray, #777); }
.ship-opt-price { font-size: 14px; font-weight: 800; white-space: nowrap; }
