:root {
    --primary: #1d4ed8;
    --primary-dark: #1e3a8a;
    --accent: #facc15;
    --accent-dark: #eab308;
    --text: #0f172a;
    --muted: #64748b;
    --bg: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --footer: #0b1f3a;
    --topbar: #111827;
    --success: #16a34a;
    --offer: #ca8a04;
    --shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    --radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }

.topbar {
    background: var(--topbar);
    color: #fff;
    font-size: .85rem;
}
.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 0;
}
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.topbar a { color: #fff; font-weight: 600; }
.currency-switcher { margin: 0; }
.currency-select {
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.12);
    color: #fff;
    border-radius: 8px;
    padding: 4px 10px;
    font-size: .82rem;
    font-weight: 600;
}
.currency-select option { color: #111827; }
.currency-notice {
    margin: 0 0 18px;
    padding: 12px 14px;
    border: 1px solid #dbeafe;
    background: #eff6ff;
    border-radius: 10px;
    font-size: .9rem;
    color: #1e3a8a;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: center;
}
.currency-notice-inline {
    margin: 0 0 14px;
}
.currency-notice-hint {
    color: #475569;
    font-size: .84rem;
}
.currency-pay-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}
.radio-card-compact {
    min-height: auto;
    padding: 12px;
}
.radio-card-compact span strong {
    display: block;
    font-size: .95rem;
}
.checkout-field-help,
.checkout-gateway-note {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: .88rem;
}
.checkout-gateway-note {
    color: #b45309;
}
.checkout-paypal-note {
    margin-top: 10px;
    color: var(--muted);
    font-size: .88rem;
}
@media (max-width: 768px) {
    .currency-pay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-header {
    background: #0b1f3a;
    color: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
    position: relative;
    z-index: 50;
}
.site-header .header-main {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    background: #0b1f3a;
}
.site-header .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    min-width: 0;
}
.site-header .logo-mark {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(145deg, #facc15 0%, #eab308 100%);
    display: grid;
    place-items: center;
    font-size: 1.35rem;
    box-shadow: 0 4px 14px rgba(250, 204, 21, 0.35);
}
.site-header .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
    min-width: 0;
}
.site-header .logo-line {
    display: block;
    font-size: clamp(.78rem, 1.6vw, .95rem);
    letter-spacing: .06em;
    white-space: nowrap;
}
.site-header .logo-line--primary { color: #fff; }
.site-header .logo-line--accent { color: var(--accent); }

.site-header .search-form {
    display: flex;
    align-items: stretch;
    border: 0;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}
.site-header .search-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 12px 18px;
    font: inherit;
    outline: none;
    color: var(--text);
    background: #fff;
}
.site-header .search-form input::placeholder { color: #94a3b8; }
.site-header .search-form button {
    border: 0;
    background: var(--accent);
    color: #111;
    padding: 0 18px;
    cursor: pointer;
    font-weight: 700;
    flex-shrink: 0;
}

.site-header .header-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    flex-shrink: 0;
}
.site-header .header-action {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.site-header .header-action:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(250, 204, 21, 0.45);
    color: var(--accent);
}
.site-header .header-action-cart {
    background: rgba(255, 255, 255, 0.1);
}
.site-header .cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    border-radius: 999px;
    background: var(--accent);
    color: #111;
    font-size: .7rem;
    font-weight: 800;
    display: grid;
    place-items: center;
    padding: 0 4px;
}

.site-header .main-nav {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #0a1a31;
    overflow: visible;
}
.site-header .main-nav-wrap {
    overflow: visible;
}
.site-header .nav-inner-track {
    overflow-x: auto;
    overflow-y: visible;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}
.site-header .nav-inner-track::-webkit-scrollbar { display: none; }
.site-header .nav-inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: center;
    gap: 2px;
    padding: 6px 0 8px;
    min-width: max-content;
}
.site-header .nav-item {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 4px;
    flex: 0 0 auto;
    width: 76px;
    min-height: 62px;
    padding: 8px 6px 14px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.82);
    font: inherit;
    font-size: .76rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    position: relative;
    transition: color .2s ease, background .2s ease;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}
.site-header button.nav-item {
    font-family: inherit;
}
.site-header .nav-item-icon {
    display: grid;
    place-items: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    opacity: .92;
}
.site-header .nav-item-icon svg {
    display: block;
    width: 20px;
    height: 20px;
}
.site-header .nav-item:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}
.site-header .nav-item.is-active {
    color: var(--accent);
}
.site-header .nav-item.is-active::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 6px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
}
.site-header .nav-item.is-active .nav-item-icon { opacity: 1; }
.site-header .nav-item-icon--offers { color: #f87171; }
.site-header .nav-item-label {
    display: block;
    width: 100%;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.site-header .nav-more-panel {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .22s ease, padding .28s ease;
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid transparent;
}
.site-header .nav-more-panel.is-open {
    max-height: 180px;
    opacity: 1;
    padding-bottom: 4px;
    border-top-color: rgba(255, 255, 255, 0.08);
}
.site-header .nav-more-panel[hidden] {
    display: block;
    max-height: 0;
    opacity: 0;
}
.site-header .nav-more-panel.is-open[hidden] {
    max-height: 180px;
    opacity: 1;
}
.site-header .nav-more-panel-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 12px 0 10px;
}
.site-header .nav-more-panel-inner a {
    display: block;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: .84rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}
.site-header .nav-more-panel-inner a:hover {
    background: rgba(250, 204, 21, 0.14);
    border-color: rgba(250, 204, 21, 0.35);
    color: var(--accent);
}

.page-simple-card {
    max-width: 560px;
    padding: 24px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.page-simple-card p {
    margin: 0 0 16px;
    color: var(--muted);
}
.page-simple-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-wrap { padding: 20px 0 4px; }
.hero-slider {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--shadow);
    background: #0b1f3a;
}
.hero-track {
    position: relative;
    min-height: clamp(380px, 42vw, 520px);
}
.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity .5s ease;
}
.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}
.hero-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}
.hero-slide--fallback .hero-slide-bg {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 45%, #60a5fa 100%);
}
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        100deg,
        rgba(11, 31, 58, 0.94) 0%,
        rgba(11, 31, 58, 0.78) 34%,
        rgba(11, 31, 58, 0.35) 58%,
        rgba(11, 31, 58, 0.08) 100%
    );
}
.hero-slide-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    min-height: clamp(380px, 42vw, 520px);
    padding: 48px clamp(24px, 5vw, 56px);
}
.hero-copy {
    max-width: 560px;
}
.hero-copy h1 {
    margin: 0 0 14px;
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    line-height: 1.08;
    color: #fff;
}
.hero-kicker {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-size: .82rem;
}
.hero-copy p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 520px;
    margin: 0 0 24px;
    font-size: clamp(1rem, 1.6vw, 1.08rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-copy .btn-primary {
    background: var(--accent);
    color: #111827;
}
.hero-copy .btn-primary:hover {
    background: var(--accent-dark);
    color: #111827;
}
.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.85);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow);
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 3;
}
.hero-nav-prev { left: 16px; }
.hero-nav-next { right: 16px; }
.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}
.hero-dot.is-active { background: var(--accent); }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 8px; border-radius: 10px; padding: 12px 18px;
    font-weight: 700; border: 0; cursor: pointer;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; }
.btn-outline {
    background: #fff; color: var(--primary); border: 2px solid var(--primary);
}
.btn-accent { background: var(--accent); color: #111; }
.btn-accent:hover { background: var(--accent-dark); color: #111; }
.btn-block { width: 100%; }
.btn-whatsapp {
    width: 44px; background: #22c55e; color: #fff; padding: 0;
}

.promo-row {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
    margin-top: 24px;
}
.promo-card {
    position: relative; min-height: 180px; border-radius: var(--radius);
    overflow: hidden; background: #dbeafe center/cover no-repeat;
    box-shadow: var(--shadow);
}
.promo-card-overlay {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    justify-content: flex-end; padding: 22px;
    background: linear-gradient(180deg, rgba(15,23,42,.05), rgba(15,23,42,.65));
    color: #fff;
}
.promo-card-overlay h2 { margin: 0 0 6px; font-size: 1.35rem; }
.promo-card-overlay p { margin: 0; opacity: .92; }

.section { padding: 34px 0 10px; }
.section-head {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 18px;
}
.section-head h2 { margin: 0; font-size: 1.45rem; }
.section-head--leagues h2 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--secondary);
}
.section-head--clubs h2 {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--secondary);
}
.section-head a { color: var(--primary); font-weight: 700; font-size: .92rem; }

.league-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}
.league-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.14);
    isolation: isolate;
    transition: transform .2s ease, box-shadow .2s ease;
}
.league-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}
.league-card-media {
    position: absolute;
    inset: 0;
    background: var(--league-gradient, linear-gradient(165deg, #1e3a8a, #0f172a));
}
.league-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.league-card-shade {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.45) 42%,
        rgba(0, 0, 0, 0.12) 72%,
        rgba(0, 0, 0, 0.04) 100%
    );
}
.league-card-content {
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 12px 12px;
}
.league-card-text strong {
    display: block;
    color: #fff;
    font-size: clamp(.82rem, 1.2vw, .98rem);
    line-height: 1.15;
    margin-bottom: 3px;
}
.league-card-text span {
    display: block;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(.72rem, 1vw, .8rem);
    line-height: 1.2;
}
.league-card-logo {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
}
.league-card-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.35));
}

.page-leagues .site-main { background: #eef2f7; }
.leagues-hero {
    background: linear-gradient(135deg, #0b1f3a 0%, #132a52 55%, #0f172a 100%);
    color: #fff;
    padding: 36px 0 28px;
}
.leagues-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 24px;
    align-items: center;
}
.leagues-hero-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.leagues-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.leagues-hero-copy p {
    margin: 0;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1rem;
}
.leagues-hero-visual {
    justify-self: end;
    width: min(100%, 420px);
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}
.leagues-hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leagues-filter-head,
.leagues-catalog-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.leagues-filter-head h2,
.leagues-catalog-head h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--secondary, #0b1f3a);
}
.leagues-filter-icon,
.leagues-catalog-icon {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--border);
    font-size: .95rem;
}
.leagues-country-scroll {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
}
.leagues-country-chip {
    flex: 0 0 auto;
    display: grid;
    justify-items: center;
    gap: 10px;
    min-width: 96px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    color: var(--text);
    font: inherit;
    font-size: .86rem;
    font-weight: 600;
}
.leagues-country-flag {
    width: 76px;
    height: 76px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 2px solid transparent;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.08);
    font-size: 1.75rem;
    overflow: hidden;
}
.leagues-country-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.leagues-country-chip.is-active .leagues-country-flag {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.35);
}
.leagues-catalog-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.league-catalog-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.league-catalog-card.is-hidden { display: none; }
.league-catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}
.league-catalog-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--league-gradient, linear-gradient(165deg, #1e3a8a, #0f172a));
}
.league-catalog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.league-catalog-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.08));
}
.league-catalog-logo {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
}
.league-catalog-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}
.league-catalog-body {
    padding: 14px 16px 16px;
}
.league-catalog-body h3 {
    margin: 0 0 4px;
    font-size: 1.02rem;
    line-height: 1.2;
    text-transform: uppercase;
}
.league-catalog-body h3 a:hover { color: var(--primary); }
.league-catalog-body p {
    margin: 0 0 10px;
    color: var(--muted);
    font-size: .88rem;
}
.league-catalog-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: .88rem;
    font-weight: 700;
}
.league-catalog-cta:hover { text-decoration: underline; }
.leagues-explore-box {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 18px;
    align-items: center;
    padding: 22px 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.leagues-explore-box h2 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.leagues-explore-box p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}
.leagues-explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}
.leagues-explore-links a {
    padding: 8px 14px;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border);
    font-size: .85rem;
    font-weight: 600;
    color: var(--text);
}
.leagues-explore-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.leagues-explore-all {
    background: transparent !important;
    border-color: transparent !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.page-players-catalog .site-main { background: #eef2f7; }
.players-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1f3a 0%, #132a52 55%, #0f172a 100%);
    color: #fff;
    padding: 42px 0 34px;
}
.players-hero-bg {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    opacity: .28;
}
.players-hero-bg-item {
    position: relative;
    overflow: hidden;
}
.players-hero-bg-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(.15);
}
.players-hero-bg-item--2 { transform: scale(1.08); }
.players-hero-inner { position: relative; z-index: 1; }
.players-hero-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.players-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05;
    text-transform: uppercase;
}
.players-hero-copy > p {
    margin: 0 0 18px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.84);
}
.players-hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    max-width: 520px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.players-hero-search input {
    border: 0;
    padding: 14px 18px;
    font: inherit;
    outline: none;
}
.players-hero-search button {
    border: 0;
    background: var(--accent);
    color: #111827;
    font-weight: 800;
    padding: 0 22px;
    cursor: pointer;
}
.players-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.players-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: .88rem;
}
.players-hero-badge strong { color: var(--accent); }
.players-toolbar { padding-top: 22px; padding-bottom: 0; }
.players-toolbar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.players-toolbar-field {
    display: grid;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
}
.players-toolbar-field select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}
.players-toolbar-reset {
    border: 1px solid var(--border);
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.players-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 22px;
    align-items: start;
}
.players-sidebar {
    display: grid;
    gap: 16px;
}
.players-sidebar-block,
.players-sidebar-trust {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
}
.players-sidebar-block h2 {
    margin: 0 0 12px;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
}
.players-sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 4px;
}
.players-sidebar-link {
    width: 100%;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    gap: 10px;
    align-items: center;
    border: 0;
    background: transparent;
    padding: 8px 10px;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: var(--text);
}
.players-sidebar-link:hover,
.players-sidebar-link.is-active {
    background: #eff6ff;
    color: var(--primary);
}
.players-sidebar-link strong {
    font-size: .82rem;
    color: var(--muted);
}
.players-sidebar-flag {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f8fafc;
    font-size: 1rem;
    overflow: hidden;
}
.players-sidebar-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.players-sidebar-trust strong {
    display: block;
    margin-bottom: 6px;
    font-size: .92rem;
}
.players-sidebar-trust p {
    margin: 0;
    color: var(--muted);
    font-size: .85rem;
}
.players-main-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
}
.players-main-head h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.players-main-head p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
}
.players-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}
.player-catalog-card {
    background: linear-gradient(180deg, #12243f 0%, #0b1f3a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.16);
    color: #fff;
}
.player-catalog-card.is-hidden { display: none; }
.player-catalog-photo {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #0f172a;
}
.player-catalog-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.player-catalog-flag {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    font-size: 1rem;
}
.player-catalog-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.player-catalog-body {
    padding: 14px 16px 16px;
}
.player-catalog-body h3 {
    margin: 0 0 4px;
    font-size: 1.15rem;
    line-height: 1.15;
}
.player-catalog-body h3 a { color: #fff; }
.player-catalog-country,
.player-catalog-club,
.player-catalog-position,
.player-catalog-stock {
    margin: 0 0 6px;
    font-size: .84rem;
    color: rgba(255, 255, 255, 0.78);
}
.player-catalog-club {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.player-catalog-club img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}
.player-catalog-stock {
    color: var(--accent);
    font-weight: 700;
}
.player-catalog-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(250, 204, 21, 0.45);
    color: var(--accent);
    font-size: .84rem;
    font-weight: 700;
}
.player-catalog-cta:hover { background: rgba(250, 204, 21, 0.08); }
.players-empty-filter {
    margin-top: 16px;
    text-align: center;
    color: var(--muted);
}
.players-empty-filter.is-hidden { display: none; }
.players-legends-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.players-legends-head h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.players-legends-head a {
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
}
.players-legends-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}
.players-legend-card {
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    padding: 10px 8px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.players-legend-photo {
    width: 92px;
    height: 92px;
    border-radius: 999px;
    overflow: hidden;
    background: #f1f5f9;
    border: 3px solid #fff;
    box-shadow: var(--shadow);
}
.players-legend-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.players-legend-flag {
    margin-top: -18px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow);
    font-size: 1rem;
}
.players-legend-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.players-legend-card strong {
    font-size: .88rem;
    line-height: 1.25;
}

.page-clubs-catalog .site-main { background: #eef2f7; }
.clubs-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1f3a 0%, #132a52 55%, #0f172a 100%);
    color: #fff;
    padding: 42px 0 34px;
}
.clubs-hero-copy h1 {
    margin: 0 0 10px;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.05;
    text-transform: uppercase;
}
.clubs-hero-kicker {
    margin: 0 0 10px;
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.clubs-hero-copy > p {
    margin: 0 0 18px;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.84);
}
.clubs-hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0;
    max-width: 520px;
    margin-bottom: 18px;
    background: #fff;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}
.clubs-hero-search input {
    border: 0;
    padding: 14px 18px;
    font: inherit;
    outline: none;
}
.clubs-hero-search button {
    border: 0;
    background: var(--accent);
    color: #111827;
    font-weight: 800;
    padding: 0 22px;
    cursor: pointer;
}
.clubs-hero-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 760px;
}
.clubs-hero-badge {
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: .82rem;
}
.clubs-hero-badge strong { color: var(--accent); }
.clubs-toolbar { padding-top: 22px; padding-bottom: 0; }
.clubs-toolbar-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
    gap: 12px;
    align-items: end;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.clubs-toolbar-field {
    display: grid;
    gap: 6px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--muted);
}
.clubs-toolbar-field select {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 10px 12px;
    font: inherit;
    background: #fff;
}
.clubs-toolbar-reset {
    border: 1px solid var(--border);
    background: #f8fafc;
    border-radius: 10px;
    padding: 10px 14px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}
.clubs-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.clubs-section-head h2 {
    margin: 0;
    font-size: 1rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.clubs-section-head a {
    color: var(--primary);
    font-weight: 700;
    font-size: .9rem;
}
.clubs-featured-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.club-featured-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
}
.club-featured-card.is-hidden,
.clubs-league-block.is-hidden,
[data-clubs-section].is-hidden,
[data-club-item].is-hidden { display: none !important; }
.club-featured-media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: var(--club-gradient, linear-gradient(165deg, #1e3a8a, #0f172a));
}
.club-featured-media > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.club-featured-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15));
}
.club-featured-crest {
    position: absolute;
    left: 50%;
    top: 54%;
    transform: translate(-50%, -50%);
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    z-index: 2;
}
.club-featured-crest img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}
.club-featured-body {
    padding: 16px;
    background: linear-gradient(180deg, #12243f 0%, #0b1f3a 100%);
    color: #fff;
}
.club-featured-body h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
}
.club-featured-body h3 a { color: #fff; }
.club-featured-meta,
.club-featured-stadium {
    margin: 0 0 6px;
    color: rgba(255, 255, 255, 0.78);
    font-size: .84rem;
}
.club-featured-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}
.club-featured-stock {
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
}
.club-featured-cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(250, 204, 21, 0.45);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
}
.clubs-league-list { display: grid; gap: 18px; }
.clubs-league-block {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: var(--shadow);
}
.clubs-league-head {
    display: grid;
    gap: 8px;
    align-content: start;
}
.clubs-league-logo {
    width: 42px;
    height: 42px;
    object-fit: contain;
}
.clubs-league-head h3 {
    margin: 0;
    font-size: .95rem;
    text-transform: uppercase;
}
.clubs-league-head p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}
.clubs-league-all {
    color: var(--primary);
    font-size: .84rem;
    font-weight: 700;
}
.clubs-league-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.clubs-league-chip {
    flex: 0 0 auto;
    width: 92px;
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
    font-size: .78rem;
    font-weight: 600;
}
.clubs-league-chip-logo {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid var(--border);
    overflow: hidden;
}
.clubs-league-chip-logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}
.clubs-popular-track-wrap {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}
.clubs-popular-track {
    display: flex;
    width: max-content;
    gap: 16px;
    padding: 18px 16px;
    animation: clubs-popular-scroll 32s linear infinite;
}
.clubs-popular-track:hover {
    animation-play-state: paused;
}
.clubs-popular-card {
    flex: 0 0 auto;
    width: 110px;
    display: grid;
    justify-items: center;
    gap: 8px;
    text-align: center;
}
.clubs-popular-logo {
    width: 84px;
    height: 84px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.clubs-popular-logo img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}
.clubs-popular-card strong {
    font-size: .82rem;
    line-height: 1.25;
}
.clubs-empty-filter {
    text-align: center;
    color: var(--muted);
}
.clubs-empty-filter.is-hidden { display: none; }
@keyframes clubs-popular-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Legacy category cards (fallback) */
.category-grid {
    display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px;
}
.category-card {
    position: relative; min-height: 150px; border-radius: 14px; overflow: hidden;
    background: #fff; box-shadow: var(--shadow);
}
.category-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(160deg, #dbeafe, #1d4ed8);
    opacity: .92;
}
.category-card-body {
    position: relative; z-index: 1; height: 100%;
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 16px; color: #fff;
}
.category-card-body strong { font-size: 1rem; }
.category-card-body span { font-size: .82rem; opacity: .9; }

.product-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.product-card {
    background: #fff; border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden; box-shadow: var(--shadow);
    display: flex; flex-direction: column;
}
.product-card-image {
    position: relative; aspect-ratio: 1 / 1; background: #f1f5f9;
    display: grid; place-items: center; overflow: hidden;
}
.product-card-image img { width: 100%; height: 100%; object-fit: cover; }
.product-badges {
    position: absolute; top: 10px; left: 10px; display: flex;
    flex-direction: column; gap: 6px;
}
.badge {
    display: inline-block; padding: 4px 8px; border-radius: 6px;
    font-size: .72rem; font-weight: 700; color: #fff;
}
.badge-offer { background: var(--offer); }
.badge-stock { background: var(--success); }
.badge-hot { background: #dc2626; }
.badge-new { background: var(--primary); }

.player-grid {
    display: grid; grid-template-columns: repeat(7, 1fr); gap: 16px;
}
.player-grid-compact { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
.player-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    text-align: center; padding: 8px 4px;
}
.player-card strong { font-size: .92rem; line-height: 1.25; }
.player-card small { color: var(--muted); font-size: .78rem; }
.player-avatar {
    width: 110px; height: 110px; border-radius: 50%; overflow: hidden;
    display: grid; place-items: center;
    background: #fff;
    box-shadow: var(--shadow); border: 3px solid #fff;
    outline: 1px solid #e8edf2;
}
.player-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.player-initials { color: #fff; font-weight: 800; font-size: 1.35rem; }

.club-slider {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 6px;
}
.club-slider-nav {
    border: 0;
    background: transparent;
    color: #334155;
    font-size: 1.75rem;
    line-height: 1;
    padding: 4px 2px;
    cursor: pointer;
    transition: color .2s ease;
}
.club-slider-nav:hover { color: var(--primary); }
.club-slider-viewport {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.club-slider-viewport::-webkit-scrollbar { display: none; }
.club-slider-track {
    display: flex;
    gap: 12px;
    padding: 2px 0;
}
.club-card {
    flex: 0 0 158px;
    width: 158px;
    background: #fff;
    border: 1px solid #e8edf2;
    border-radius: 10px;
    min-height: 148px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 20px 14px 16px;
    text-align: center;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.club-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}
.club-card-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.club-card-logo img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.club-card strong {
    font-size: .9rem;
    line-height: 1.3;
    font-weight: 600;
    color: #1e293b;
}

.product-meta { color: var(--muted); font-size: .82rem; font-weight: 600; }
.product-rating { color: #f59e0b; font-size: .9rem; letter-spacing: 1px; }
.product-rating .star-empty { color: #cbd5e1; }
.product-actions-whatsapp { grid-template-columns: 1fr; }
.btn-whatsapp-full {
    width: 100%; min-height: 44px; padding: 0 14px;
    background: #22c55e; color: #fff; font-weight: 700;
}
.btn-whatsapp-full:hover { background: #16a34a; color: #fff; }

.search-players-block { margin: 24px 0 32px; }
.search-section-title { margin: 0 0 8px; font-size: 1.2rem; }

/* Shop catalog page */
.page-shop-catalog .site-main { background: #eef2f7; }
.shop-hero {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 34px 0 30px;
    color: var(--text);
}
.shop-hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: end;
}
.shop-hero-kicker {
    margin: 0 0 8px;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.shop-hero-copy h1 {
    margin: 0 0 8px;
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--text);
}
.shop-hero-copy p {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: 1rem;
}
.shop-hero-copy p strong { color: var(--text); }
.shop-hero-clear {
    display: inline-block;
    margin-left: 8px;
    color: var(--primary);
    font-weight: 700;
    font-size: .92rem;
}
.shop-hero-clear:hover { text-decoration: underline; }
.shop-hero-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #f8fafc;
    min-width: 220px;
    box-shadow: var(--shadow);
}
.shop-hero-stat-icon { font-size: 1.6rem; }
.shop-hero-stat strong {
    display: block;
    color: var(--primary);
    font-size: 1.15rem;
    line-height: 1.1;
}
.shop-hero-stat span {
    display: block;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--muted);
}
.shop-catalog {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
    padding-top: 28px;
    padding-bottom: 48px;
}
.shop-filters {
    position: sticky;
    top: 16px;
}
.shop-filters-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow);
}
.shop-filter-group {
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.shop-filter-group:last-of-type { border-bottom: 0; margin-bottom: 0; }
.shop-filter-group summary {
    cursor: pointer;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .82rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.shop-filter-group--search { padding-bottom: 14px; }
.shop-filter-search-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    font-size: .82rem;
    color: var(--muted);
}
.shop-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 6px;
}
.shop-filter-list .is-hidden,
.shop-filter-list li.is-hidden { display: none; }
.shop-filter-check {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    align-items: center;
    font-size: .88rem;
    color: var(--text);
    cursor: pointer;
}
.shop-filter-check input { accent-color: var(--primary); }
.shop-filter-check small { color: var(--muted); }
.shop-filter-toggle,
.shop-filter-clear {
    margin-top: 8px;
    background: none;
    border: 0;
    color: var(--primary);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
}
.shop-filter-clear { display: inline-block; text-align: center; width: 100%; }
.shop-filter-search {
    width: 100%;
    margin-bottom: 0;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    border-radius: 10px;
    padding: 10px 12px;
    font-size: .88rem;
}
.shop-filter-search::placeholder { color: #94a3b8; }
.shop-size-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}
.shop-size-btn input { position: absolute; opacity: 0; pointer-events: none; }
.shop-size-btn span {
    display: grid;
    place-items: center;
    min-height: 36px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: .82rem;
    font-weight: 700;
    color: var(--text);
    background: #fff;
    cursor: pointer;
}
.shop-size-btn input:checked + span {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.shop-price-range { display: grid; gap: 8px; }
.shop-price-values {
    display: flex;
    justify-content: space-between;
    font-size: .84rem;
    color: var(--primary);
    font-weight: 700;
}
.shop-price-range input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
}
.shop-filter-actions {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}
.shop-results-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}
.shop-results-head p {
    margin: 0;
    color: var(--muted);
    font-size: .92rem;
}
.shop-sort {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .88rem;
}
.shop-sort select {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    border-radius: 10px;
    padding: 8px 12px;
    font-weight: 600;
}
.product-card--shop .product-actions-shop {
    grid-template-columns: 1fr auto;
    gap: 8px;
}
.product-card--shop .btn-outline {
    min-height: 44px;
    padding: 0 14px;
}
.product-card--shop .btn-cart-icon {
    width: 44px;
    min-width: 44px;
    height: 44px;
    padding: 0;
}
.product-type {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
}
.shop-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
}
.shop-page-link {
    min-width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    font-weight: 700;
    font-size: .88rem;
}
.shop-page-link:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.shop-page-link.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.shop-page-ellipsis { color: var(--muted); padding: 0 4px; }

.cart-link { position: relative; }
.cart-badge {
    position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px;
    border-radius: 999px; background: #dc2626; color: #fff; font-size: .7rem;
    font-weight: 800; display: grid; place-items: center; padding: 0 4px;
}
.product-card-body { padding: 14px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-brand { color: var(--muted); font-size: .82rem; font-weight: 600; text-transform: uppercase; }
.product-card-body h3 { margin: 0; font-size: .98rem; line-height: 1.35; }
.product-card-body h3 a:hover { color: var(--primary); }
.product-prices { display: flex; align-items: baseline; gap: 8px; }
.price-old { color: var(--muted); text-decoration: line-through; font-size: .88rem; }
.price-current { color: var(--primary); font-size: 1.15rem; font-weight: 800; }
.product-actions { display: grid; grid-template-columns: 1fr auto; gap: 8px; margin-top: auto; }

.brand-track-wrap { overflow: hidden; border: 1px solid var(--border); border-radius: 14px; background: #fff; }
.brand-track {
    display: flex; width: max-content; gap: 12px; padding: 16px;
    animation: brand-scroll 28s linear infinite;
}
.brand-item {
    min-width: 140px; height: 64px; border: 1px solid var(--border);
    border-radius: 10px; display: grid; place-items: center;
    font-weight: 700; color: var(--primary); background: #fff; padding: 0 12px;
}
.brand-item img {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
@keyframes brand-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.page-player .player-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0b4ea2 0%, #1d4ed8 45%, #0f172a 100%);
    color: #fff;
    padding: 36px 0 42px;
}
.page-player .player-hero-bg {
    position: absolute;
    inset: 0;
    opacity: .18;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,255,255,.35) 0, transparent 42%),
        url('/assets/img/product-placeholder.svg') center right / 320px no-repeat;
    pointer-events: none;
}
.page-player .player-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 28px;
    align-items: center;
}
.page-player .player-hero-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255,255,255,.9);
    box-shadow: 0 12px 28px rgba(15,23,42,.28);
    background: #fff;
}
.page-player .player-hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.page-player .breadcrumb-light,
.page-player .breadcrumb-light a { color: rgba(255,255,255,.82); }
.page-player .breadcrumb-light a:hover { color: #fff; }
.page-player .player-hero-first {
    margin: 0 0 4px;
    font-size: .95rem;
    letter-spacing: .18em;
    font-weight: 700;
    opacity: .88;
}
.page-player .player-hero-name {
    margin: 0 0 14px;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: .95;
    letter-spacing: .04em;
}
.page-player .player-hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
}
.page-player .player-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: .95rem;
}
.page-player .player-meta-item a { color: #fff; text-decoration: none; }
.page-player .player-meta-item a:hover { text-decoration: underline; }
.page-player .player-meta-logo {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.page-player .player-meta-number {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.14);
}
.page-player .player-subnav {
    border-bottom: 1px solid var(--border);
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 20;
}
.page-player .player-subnav-inner {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 14px 0;
}
.page-player .player-subnav-inner a {
    color: var(--muted);
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
}
.page-player .player-subnav-inner a:hover { color: var(--primary); }
.page-player .player-page-body { padding: 28px 0 48px; }
.page-player .player-section + .player-section { margin-top: 42px; }
.page-player .player-club-block + .player-club-block {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border);
}
.page-player .player-club-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}
.page-player .player-club-head h3 { margin: 0; font-size: 1.25rem; }
.page-player .player-club-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}
.page-player .player-club-link {
    color: var(--primary);
    font-size: .88rem;
    font-weight: 600;
    text-decoration: none;
}
.page-player .player-club-link:hover { text-decoration: underline; }
.page-player .player-ficha {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
    margin: 0;
}
.page-player .player-ficha-row {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
}
.page-player .player-ficha-row dt {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.page-player .player-ficha-row dd {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}
.page-player .player-description {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: #fff;
}

.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.blog-card {
    display: grid; grid-template-columns: 180px 1fr; gap: 16px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.blog-card-image {
    min-height: 160px; background: #dbeafe center/cover no-repeat;
}
.blog-card-body { padding: 16px 16px 16px 0; }
.blog-card-body h3 { margin: 0 0 8px; font-size: 1.05rem; }
.blog-card-body p { margin: 0; color: var(--muted); }

.empty-box, .page-description {
    background: #fff; border: 1px dashed var(--border);
    border-radius: 14px; padding: 28px; text-align: center; color: var(--muted);
}
.page-title { margin: 0 0 8px; font-size: 2rem; }
.page-type { color: var(--muted); margin-bottom: 16px; }
.breadcrumb { color: var(--muted); font-size: .9rem; margin-bottom: 12px; }
.breadcrumb a { color: var(--primary); }

.site-footer { background: var(--footer); color: #dbeafe; margin-top: 0; }
.footer-testimonials {
    background: #f3f4f6;
    padding: 42px 0 36px;
    margin-top: 40px;
}
.footer-testimonials-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}
.footer-testimonials-head h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--text);
}
.footer-testimonials-head a {
    color: var(--primary);
    font-weight: 700;
    font-size: .95rem;
}
.footer-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.footer-testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.footer-stars {
    color: #facc15;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 12px;
}
.footer-testimonial-card p {
    margin: 0 0 18px;
    color: #334155;
    font-size: .95rem;
    line-height: 1.55;
}
.footer-testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer-testimonial-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #93c5fd, #1d4ed8);
    color: #fff;
    font-weight: 800;
    font-size: .82rem;
    flex-shrink: 0;
}
.footer-testimonial-user strong {
    display: block;
    color: var(--text);
    font-size: .92rem;
}
.footer-testimonial-user small {
    display: block;
    color: var(--muted);
    font-size: .82rem;
}

.footer-trust-bar {
    background: linear-gradient(180deg, #0f2744 0%, var(--footer) 100%);
    border-top: 1px solid rgba(255,255,255,.06);
}
.footer-trust-inner {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: center;
    min-height: 92px;
    position: relative;
}
.footer-trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 12px;
}
.footer-trust-divider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,.14);
}
.footer-trust-inner .footer-trust-divider:nth-of-type(1) { left: 25%; }
.footer-trust-inner .footer-trust-divider:nth-of-type(2) { left: 50%; }
.footer-trust-inner .footer-trust-divider:nth-of-type(3) { left: 75%; }
.footer-trust-icon {
    width: 34px;
    height: 34px;
    color: #fff;
    flex-shrink: 0;
}
.footer-trust-icon svg { width: 100%; height: 100%; }
.footer-trust-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-size: .88rem;
    line-height: 1.25;
    color: #dbeafe;
}
.footer-trust-copy strong,
.footer-trust-highlight {
    color: var(--accent);
    font-size: 1.05rem;
    font-weight: 800;
}
.footer-trust-copy span:last-child { color: #fff; }

.footer-main-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(4, 1fr);
    gap: 28px;
    padding: 42px 0 28px;
}
.footer-brand-col p {
    margin: 10px 0 18px;
    color: #cbd5e1;
    font-size: .92rem;
    line-height: 1.6;
    max-width: 280px;
}
.footer-main-grid strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-size: 1rem;
}
.footer-main-grid p,
.footer-main-grid a {
    display: block;
    margin: 0 0 10px;
    color: #dbeafe;
    font-size: .92rem;
}
.footer-main-grid a:hover { color: #fff; }
.footer-social {
    display: flex;
    gap: 10px;
}
.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    color: #fff;
    margin: 0;
}
.footer-social a:hover { background: rgba(255,255,255,.16); color: #fff; }

.newsletter-form { display: flex; gap: 8px; margin-top: 8px; }
.newsletter-form input {
    flex: 1; border: 0; border-radius: 8px; padding: 11px 12px;
    min-width: 0;
}
.newsletter-form button {
    border: 0; border-radius: 8px; background: var(--accent); color: #111;
    font-weight: 800; padding: 11px 14px; cursor: pointer; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--accent-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    background: #071526;
    padding: 16px 0 22px;
}
.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-bottom-inner p {
    margin: 0;
    color: #94a3b8;
    font-size: .84rem;
}
.footer-payments {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer-pay {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 54px;
    height: 28px;
    padding: 0 10px;
    border-radius: 6px;
    background: #fff;
    color: #111827;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .02em;
}
.footer-pay-master { color: #eb001b; }
.footer-pay-paypal { color: #003087; }

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 60;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #22c55e;
    color: #fff;
    box-shadow: 0 10px 28px rgba(34, 197, 94, .35);
    transition: transform .15s ease, box-shadow .15s ease;
}
.floating-whatsapp:hover {
    transform: scale(1.04);
    box-shadow: 0 14px 32px rgba(34, 197, 94, .45);
    color: #fff;
}

/* ——— Ficha de producto ——— */
.product-detail { padding-top: 18px; }
.product-detail-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
    align-items: start; margin-top: 8px;
}
.product-gallery-main {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    min-height: 420px; display: grid; place-items: center; padding: 24px;
    box-shadow: var(--shadow);
}
.product-gallery-main img {
    width: 100%; max-height: 420px; object-fit: contain;
}
.product-gallery-thumbs {
    display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap;
}
.product-thumb {
    width: 72px; height: 72px; border: 2px solid var(--border);
    border-radius: 10px; padding: 4px; background: #fff; cursor: pointer;
}
.product-thumb.is-active { border-color: var(--primary); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: 6px; }

.product-buybox {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 24px; box-shadow: var(--shadow);
}
.product-quality-badge {
    display: inline-block; background: #ede9fe; color: #5b21b6;
    font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 999px;
    margin-bottom: 10px;
}
.product-title { margin: 0 0 8px; font-size: clamp(1.4rem, 3vw, 2rem); line-height: 1.15; }
.product-meta-line { color: var(--muted); margin: 0 0 18px; font-size: .92rem; }
.product-price-box { margin-bottom: 16px; }
.discount-badge {
    display: inline-block; background: #ede9fe; color: #6d28d9;
    font-size: .78rem; font-weight: 700; padding: 4px 10px; border-radius: 8px;
    margin-bottom: 8px;
}
.product-availability {
    font-size: .88rem; font-weight: 600; margin-bottom: 8px;
}
.product-availability.is-available { color: var(--success); }
.product-availability.is-unavailable { color: #dc2626; }
.price-old-lg {
    color: var(--muted); text-decoration: line-through; font-size: 1rem;
}
.price-current-lg {
    color: var(--primary); font-size: clamp(1.8rem, 4vw, 2.4rem); font-weight: 800; line-height: 1.1;
}
.promo-notice {
    background: #fef9c3; border: 1px solid #fde047; color: #854d0e;
    border-radius: 10px; padding: 12px 14px; font-size: .9rem; margin-bottom: 18px;
}
.product-option { margin-bottom: 16px; }
.product-option label {
    display: block; font-weight: 700; margin-bottom: 6px; font-size: .92rem;
}
.product-option select {
    width: 100%; border: 1px solid var(--border); border-radius: 10px;
    padding: 10px 12px; font: inherit; background: #fff;
}
.qty-control {
    display: inline-flex; align-items: center; border: 1px solid var(--border);
    border-radius: 10px; overflow: hidden; background: #fff;
}
.qty-control button {
    width: 42px; height: 42px; border: 0; background: #f8fafc;
    font-size: 1.2rem; cursor: pointer; color: var(--text);
}
.qty-control input {
    width: 56px; height: 42px; border: 0; border-left: 1px solid var(--border);
    border-right: 1px solid var(--border); text-align: center; font: inherit;
}
.product-cta-stack { display: grid; gap: 10px; margin-top: 8px; }
.btn-whatsapp-lg {
    background: #22c55e; color: #fff; display: inline-flex;
    align-items: center; justify-content: center; gap: 8px;
}
.btn-whatsapp-lg:hover { background: #16a34a; color: #fff; }

.product-section { padding-top: 28px; }
.section-title { margin: 0 0 14px; font-size: 1.35rem; }
.team-spec-heading {
    margin: -6px 0 16px;
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text);
}
.team-spec-wrap {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
}
.team-spec-table {
    width: 100%;
    border-collapse: collapse;
}
.team-spec-table th,
.team-spec-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
}
.team-spec-table tr:last-child th,
.team-spec-table tr:last-child td {
    border-bottom: 0;
}
.team-spec-table th {
    width: 34%;
    color: var(--text);
    font-weight: 700;
    font-size: .95rem;
}
.team-spec-table td {
    color: var(--text);
    font-size: .95rem;
    line-height: 1.5;
}
.team-spec-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.team-spec-items {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}
.team-spec-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.team-spec-link {
    color: var(--text);
    font-weight: 600;
    text-decoration: none;
}
.team-spec-link:hover {
    color: var(--primary);
    text-decoration: underline;
}
.team-spec-players .team-spec-link {
    font-weight: 600;
}
.spec-table-wrap {
    background: #fff; border: 1px solid var(--border); border-radius: 14px; overflow: hidden;
}
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th,
.spec-table td {
    padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border);
}
.spec-table tr:nth-child(even) { background: #f8fafc; }
.spec-table th { width: 34%; color: var(--muted); font-weight: 600; }
.product-description {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 20px; line-height: 1.7;
}
.store-html img { max-width: 100%; height: auto; border-radius: 8px; }
.store-html table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.store-html th, .store-html td { border: 1px solid var(--border); padding: 8px 10px; }
.page-description.store-html { text-align: left; }

.store-flash {
    padding: 12px 0; font-weight: 600; text-align: center;
}
.store-flash-success { background: #dcfce7; color: #166534; }
.store-flash-error { background: #fee2e2; color: #991b1b; }

.cart-link { position: relative; }
.cart-badge {
    position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px;
    padding: 0 5px; border-radius: 999px; background: #ef4444; color: #fff;
    font-size: .72rem; font-weight: 700; display: grid; place-items: center;
}

.search-form-page { max-width: 640px; margin: 0 0 20px; }
.product-add-form, .product-add-form-full { display: contents; }
.product-actions { grid-template-columns: 1fr auto; }

.cart-layout {
    display: grid; grid-template-columns: 1fr 320px; gap: 24px; align-items: start;
}
.cart-item {
    display: grid; grid-template-columns: 96px 1fr auto; gap: 16px;
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 14px; margin-bottom: 12px; align-items: center;
}
.cart-item-image {
    width: 96px; height: 96px; border-radius: 10px; overflow: hidden; background: #f1f5f9;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body h3 { margin: 0 0 6px; font-size: 1rem; }
.cart-item-meta, .cart-item-price { margin: 0 0 6px; color: var(--muted); font-size: .88rem; }
.cart-item-price { color: var(--primary); font-weight: 700; }
.cart-item-actions { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.cart-qty-form { display: flex; gap: 8px; align-items: center; }
.cart-qty-form input[type=number] {
    width: 64px; border: 1px solid var(--border); border-radius: 8px; padding: 6px 8px;
}
.btn-sm { padding: 8px 12px; font-size: .85rem; }
.btn-link-danger {
    border: 0; background: none; color: #dc2626; cursor: pointer; font-weight: 600; padding: 0;
}
.cart-item-total { font-weight: 800; color: var(--primary); white-space: nowrap; }
.cart-summary {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 20px; box-shadow: var(--shadow); position: sticky; top: 16px;
}
.cart-summary h2 { margin: 0 0 16px; font-size: 1.2rem; }
.cart-summary-row {
    display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 1.05rem;
}
.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}

.checkout-layout {
    display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.8fr);
    gap: 24px; align-items: start;
}
.checkout-form label { display: block; font-weight: 600; margin-bottom: 14px; font-size: .92rem; }
.checkout-form label.full { grid-column: 1 / -1; }
.checkout-form input[type=text],
.checkout-form input[type=tel],
.checkout-form input[type=email],
.checkout-form select,
.checkout-form textarea {
    width: 100%; margin-top: 6px; padding: 10px 12px; border: 1px solid var(--border);
    border-radius: 10px; font: inherit;
}
.form-grid-2 {
    display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 16px;
}
.checkout-fieldset {
    border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px 6px;
    margin: 0 0 18px; background: #fff;
}
.checkout-fieldset legend { padding: 0 6px; font-weight: 700; }
.req { color: #dc2626; }
.radio-cards { display: grid; gap: 10px; margin-bottom: 14px; }
.radio-card {
    display: flex; gap: 10px; align-items: flex-start; padding: 12px 14px;
    border: 1px solid var(--border); border-radius: 12px; cursor: pointer;
}
.radio-card input { margin-top: 4px; }
.radio-card strong { display: block; }
.radio-card small { display: block; color: var(--muted); margin-top: 2px; }
.checkout-items { list-style: none; padding: 0; margin: 0 0 16px; }
.checkout-items li {
    display: flex; justify-content: space-between; gap: 12px; padding: 10px 0;
    border-bottom: 1px solid var(--border); font-size: .92rem;
}
.checkout-summary { position: sticky; top: 16px; }
.order-success-box {
    background: #ecfdf5; border: 1px solid #bbf7d0; border-radius: 14px;
    padding: 20px 24px; margin-bottom: 24px;
}
.order-success-meta { color: var(--muted); margin: 0; }
.order-detail-card {
    background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px;
}
.order-meta-list { margin: 20px 0 0; }
.order-meta-list div {
    display: grid; grid-template-columns: 120px 1fr; gap: 8px; padding: 8px 0;
    border-top: 1px solid var(--border);
}
.order-meta-list dt { margin: 0; color: var(--muted); font-weight: 600; }
.order-meta-list dd { margin: 0; }
.blog-grid-page { margin-top: 20px; }
.blog-date { display: block; color: var(--muted); font-size: .85rem; margin-bottom: 6px; }
.blog-read-more { color: var(--primary); font-weight: 600; text-decoration: none; }
.blog-pagination {
    display: flex; justify-content: center; align-items: center; gap: 16px; margin-top: 28px;
}
.blog-post-page { max-width: 860px; }
.blog-article-header { margin-bottom: 20px; }
.blog-author { color: var(--muted); margin: 0; }
.blog-hero-image { margin: 0 0 24px; border-radius: 14px; overflow: hidden; }
.blog-hero-image img { width: 100%; display: block; }
.blog-lead { font-size: 1.1rem; color: var(--muted); line-height: 1.6; }
.product-lead { font-size: 1.05rem; color: var(--muted); line-height: 1.6; margin: .35rem 0 .75rem; }
.blog-content { line-height: 1.75; }
.blog-back { margin-top: 32px; }
.search-form-page { margin: 0 0 24px; max-width: 560px; }
.checkout-mp-note { color: var(--muted); font-size: .92rem; margin: 0 0 12px; }
.checkout-bank-info {
    background: #f8fafc; border: 1px solid var(--border); border-radius: 10px;
    padding: 12px 14px; margin-bottom: 14px; font-size: .92rem;
}
.checkout-bank-info p { margin: 4px 0 0; color: var(--muted); }
.d-none { display: none !important; }

@media (max-width: 992px) {
    .hero-slide-inner { padding: 36px 24px; }
    .hero-slide-overlay {
        background: linear-gradient(
            180deg,
            rgba(11, 31, 58, 0.92) 0%,
            rgba(11, 31, 58, 0.72) 55%,
            rgba(11, 31, 58, 0.45) 100%
        );
    }
    .hero-slide-bg { background-position: center; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .cart-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .form-grid-2 { grid-template-columns: 1fr; }
    .league-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .leagues-hero-inner { grid-template-columns: 1fr; }
    .leagues-hero-visual { justify-self: stretch; width: 100%; max-height: 240px; }
    .leagues-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .leagues-explore-box { grid-template-columns: 1fr; }
    .leagues-explore-links { justify-content: flex-start; }
    .players-toolbar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .players-layout { grid-template-columns: 1fr; }
    .players-catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .players-legends-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .clubs-toolbar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .clubs-featured-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .clubs-league-block { grid-template-columns: 1fr; }
    .clubs-hero-badges { grid-template-columns: 1fr; }
    .shop-hero-inner { grid-template-columns: 1fr; }
    .shop-catalog { grid-template-columns: 1fr; }
    .shop-filters { position: static; }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .player-grid { grid-template-columns: repeat(4, 1fr); }
    .page-player .player-hero-inner { grid-template-columns: 110px 1fr; gap: 16px; }
    .page-player .player-hero-photo { width: 110px; height: 110px; }
    .club-card { flex-basis: 140px; width: 140px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-trust-inner { grid-template-columns: repeat(2, 1fr); }
    .footer-trust-inner .footer-trust-divider { display: none; }
    .footer-main-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
    .site-header .header-main {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 10px;
        padding: 14px 0;
    }
    .site-header .logo {
        flex: 0 0 auto;
        min-width: 0;
    }
    .site-header .search-form {
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        margin: 0;
    }
    .site-header .header-actions {
        flex: 0 0 auto;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        gap: 6px;
    }
    .site-header .header-action {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
    .site-header .header-action svg {
        width: 20px;
        height: 20px;
    }
    .site-header .nav-more-panel-inner {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 640px) {
    .site-header .logo-text {
        display: none;
    }
    .site-header .logo-mark {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }
    .site-header .search-form input {
        padding: 10px 12px;
        font-size: .86rem;
    }
    .site-header .search-form button {
        padding: 0 12px;
    }
    .site-header .header-action {
        width: 36px;
        height: 36px;
    }
    .site-header .header-actions {
        gap: 4px;
    }
    .site-header .nav-inner {
        justify-content: flex-start;
    }
    .site-header .nav-item {
        width: 70px;
        min-height: 58px;
    }
    .site-header .nav-more-panel-inner {
        grid-template-columns: 1fr;
    }
    .promo-row, .blog-grid { grid-template-columns: 1fr; }
    .blog-card { grid-template-columns: 1fr; }
    .blog-card-body { padding: 16px; }
    .league-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .leagues-catalog-grid { grid-template-columns: 1fr; }
    .players-toolbar-grid { grid-template-columns: 1fr; }
    .players-catalog-grid { grid-template-columns: 1fr; }
    .players-legends-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .clubs-toolbar-grid { grid-template-columns: 1fr; }
    .clubs-featured-grid { grid-template-columns: 1fr; }
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .player-grid { grid-template-columns: repeat(3, 1fr); }
    .page-player .player-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .page-player .player-hero-photo { width: 120px; height: 120px; margin: 0 auto; }
    .page-player .player-hero-meta { justify-content: center; }
    .club-card { flex-basis: 132px; width: 132px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-testimonials-head { flex-direction: column; align-items: flex-start; }
    .footer-testimonials-grid { grid-template-columns: 1fr; }
    .footer-trust-inner { grid-template-columns: 1fr; }
    .footer-main-grid { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
    .floating-whatsapp { right: 16px; bottom: 16px; width: 54px; height: 54px; }
    .topbar-inner { flex-direction: column; align-items: flex-start; }
}
