/* ==========================================================================
   MLB LOYAL FAN v3.0.0 — HOMEPAGE
   Hero, Trust bar, Collections, Featured carousel, Seasonal banner
   ========================================================================== */

/* --------------------------------------------------------------------------
   Home main container
   -------------------------------------------------------------------------- */
.mlb-v3-home-main {
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   Shared section headings
   -------------------------------------------------------------------------- */
.mlb-v3-section-head {
    max-width: 720px;
    margin-bottom: var(--mlb-space-12);
}
.mlb-v3-section-head-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.mlb-v3-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mlb-font-body);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mlb-red);
    margin-bottom: var(--mlb-space-3);
}
.mlb-v3-section-eyebrow::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--mlb-red);
}
.mlb-v3-section-head-center .mlb-v3-section-eyebrow {
    display: inline-flex;
}

.mlb-v3-section-title {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: clamp(32px, 4.2vw, 56px);
    line-height: 1;
    letter-spacing: -0.5px;
    text-transform: uppercase;
    margin: 0 0 var(--mlb-space-4);
    color: var(--mlb-navy);
}
.mlb-v3-section-head-light .mlb-v3-section-title {
    color: var(--mlb-white);
}

.mlb-v3-section-sub {
    font-size: 16px;
    line-height: 1.65;
    color: var(--mlb-gray-600);
    margin: 0;
    max-width: 560px;
}
.mlb-v3-section-head-center .mlb-v3-section-sub {
    margin-left: auto;
    margin-right: auto;
}
.mlb-v3-section-head-light .mlb-v3-section-sub {
    color: rgba(255, 255, 255, 0.75);
}

.mlb-v3-text-red    { color: var(--mlb-red); }
.mlb-v3-text-white  { color: var(--mlb-white); }
.mlb-v3-text-navy   { color: var(--mlb-navy); }

/* ==========================================================================
   1. HERO
   ========================================================================== */
.mlb-v3-hero {
    position: relative;
    min-height: clamp(580px, 80vh, 780px);
    background-color: var(--mlb-navy);
    background-size: cover;
    background-position: center;
    color: var(--mlb-white);
    overflow: hidden;
    display: flex;
    align-items: center;
    isolation: isolate;
}

.mlb-v3-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 40%, rgba(225, 29, 46, 0.18), transparent 55%),
                linear-gradient(135deg, var(--mlb-navy-dark) 0%, var(--mlb-navy) 60%, var(--mlb-navy-light) 100%);
    z-index: -2;
}

.mlb-v3-hero-pattern {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.9;
    pointer-events: none;
}
.mlb-v3-hero-pattern svg {
    width: 100%;
    height: 100%;
}

.mlb-v3-hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--mlb-space-10);
    align-items: center;
    padding: var(--mlb-space-20) var(--mlb-space-6);
    width: 100%;
}

.mlb-v3-hero-content {
    max-width: 680px;
    animation: mlbHeroFadeUp 0.8s var(--mlb-ease) both;
}

.mlb-v3-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.14);
    padding: 8px 16px;
    border-radius: var(--mlb-radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mlb-white);
    margin-bottom: var(--mlb-space-6);
}
.mlb-v3-hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--mlb-red);
    box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.25);
    animation: mlbPulse 2s infinite;
}
@keyframes mlbPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.25); }
    50%      { box-shadow: 0 0 0 8px rgba(225, 29, 46, 0.10); }
}

.mlb-v3-hero-heading {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: clamp(48px, 8vw, 112px);
    line-height: 0.92;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin: 0 0 var(--mlb-space-6);
    color: var(--mlb-white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}
.mlb-v3-hero-line {
    display: block;
}
.mlb-v3-hero-red {
    color: var(--mlb-red);
    position: relative;
    display: inline-block;
}
.mlb-v3-hero-red::after {
    content: "";
    position: absolute;
    left: -6px; right: -6px;
    bottom: 4px;
    height: 14px;
    background: var(--mlb-red);
    opacity: 0.18;
    z-index: -1;
    transform: skewX(-8deg);
}

.mlb-v3-hero-subtext {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 0 var(--mlb-space-8);
}

.mlb-v3-hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--mlb-space-3);
    margin-bottom: var(--mlb-space-10);
}

/* Hero stats */
.mlb-v3-hero-stats {
    display: inline-flex;
    align-items: center;
    gap: var(--mlb-space-6);
    padding: var(--mlb-space-4) var(--mlb-space-6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--mlb-radius-lg);
    background: rgba(7, 15, 28, 0.35);
    backdrop-filter: blur(8px);
}
.mlb-v3-hero-stat {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.mlb-v3-hero-stat-num {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: clamp(24px, 2.5vw, 34px);
    color: var(--mlb-white);
    letter-spacing: -0.5px;
}
.mlb-v3-hero-stat-num span {
    color: var(--mlb-red);
    margin-left: 2px;
}
.mlb-v3-hero-stat-label {
    margin-top: 4px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.mlb-v3-hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero floating badge */
.mlb-v3-hero-badge {
    width: 180px;
    height: 180px;
    display: grid;
    place-items: center;
    animation: mlbSpin 22s linear infinite, mlbHeroFadeUp 1s var(--mlb-ease) 0.2s both;
}
.mlb-v3-hero-badge-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--mlb-red);
    border: 3px solid var(--mlb-white);
    box-shadow: var(--mlb-shadow-xl), 0 0 0 10px rgba(225, 29, 46, 0.18);
    display: grid;
    place-items: center;
    gap: 4px;
    color: var(--mlb-white);
    font-family: var(--mlb-font-display);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    padding: var(--mlb-space-4);
}
.mlb-v3-hero-badge-line1,
.mlb-v3-hero-badge-line2 {
    font-size: 14px;
    font-weight: 700;
}
.mlb-v3-hero-badge-star {
    font-size: 32px;
    line-height: 1;
}
@keyframes mlbSpin {
    to { transform: rotate(360deg); }
}

/* Hero wave */
.mlb-v3-hero-wave {
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 60px;
    line-height: 0;
    z-index: 1;
}
.mlb-v3-hero-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

@keyframes mlbHeroFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   2. TRUST BAR (shared shortcode style, navy block)
   ========================================================================== */
.mlb-v3-trust-bar {
    background: var(--mlb-navy);
    color: var(--mlb-white);
    padding: var(--mlb-space-16) var(--mlb-space-6);
    position: relative;
    overflow: hidden;
}
.mlb-v3-trust-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(225, 29, 46, 0.06), transparent 40%);
    pointer-events: none;
}
.mlb-v3-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--mlb-space-10);
    position: relative;
}
.mlb-v3-trust-item {
    text-align: center;
    padding: 0 var(--mlb-space-4);
}
.mlb-v3-trust-icon {
    display: inline-grid;
    place-items: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(225, 29, 46, 0.12);
    color: var(--mlb-red);
    margin-bottom: var(--mlb-space-4);
    border: 1px solid rgba(225, 29, 46, 0.25);
}
.mlb-v3-trust-item h4 {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 var(--mlb-space-2);
    color: var(--mlb-white);
}
.mlb-v3-trust-item p {
    font-size: 14.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* ==========================================================================
   3 & 4. COLLECTIONS (Rugs / Wallets)
   ========================================================================== */
.mlb-v3-home-collection {
    padding: var(--mlb-space-20) var(--mlb-space-6);
    background: var(--mlb-white);
}

.mlb-v3-section-dark {
    background: var(--mlb-navy);
    color: var(--mlb-white);
    position: relative;
    overflow: hidden;
}
.mlb-v3-wallets-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(225, 29, 46, 0.1), transparent 45%),
        linear-gradient(180deg, var(--mlb-navy-dark), var(--mlb-navy));
    pointer-events: none;
}

.mlb-v3-home-collection-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: var(--mlb-space-8);
    align-items: stretch;
    position: relative;
}
.mlb-v3-home-collection-grid-reverse {
    grid-template-columns: 1fr 380px;
}

/* Banner card (left or right side) */
.mlb-v3-home-collection-banner {
    position: relative;
    border-radius: var(--mlb-radius-xl);
    overflow: hidden;
    min-height: 520px;
    isolation: isolate;
    box-shadow: var(--mlb-shadow-lg);
    transition: transform var(--mlb-t);
}
.mlb-v3-home-collection-banner:hover {
    transform: translateY(-4px);
}

.mlb-v3-collection-banner-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

/* Rugs banner — red + stadium pattern */
.mlb-v3-home-rugs-banner .mlb-v3-collection-banner-bg {
    background:
        radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 55%),
        linear-gradient(160deg, var(--mlb-red) 0%, var(--mlb-red-dark) 100%);
}
.mlb-v3-home-rugs-banner .mlb-v3-collection-banner-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 10px);
    opacity: 0.5;
}
.mlb-v3-home-rugs-banner .mlb-v3-collection-banner-bg::after {
    content: "";
    position: absolute;
    right: -80px; bottom: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}

/* Wallets banner — dark leather */
.mlb-v3-home-wallets-banner .mlb-v3-collection-banner-bg {
    background:
        radial-gradient(circle at 70% 80%, rgba(225,29,46,0.16), transparent 55%),
        linear-gradient(160deg, #1a1410 0%, #0f0a08 100%);
}
.mlb-v3-home-wallets-banner .mlb-v3-collection-banner-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.04) 0, transparent 2px),
        radial-gradient(circle at 60% 70%, rgba(255,255,255,0.03) 0, transparent 2px),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0, transparent 2px);
    background-size: 80px 80px, 100px 100px, 120px 120px;
}

.mlb-v3-collection-banner-inner {
    position: relative;
    z-index: 1;
    padding: var(--mlb-space-10);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--mlb-white);
}

.mlb-v3-collection-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--mlb-white);
    padding: 6px 12px;
    border-radius: var(--mlb-radius-pill);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: var(--mlb-space-6);
}
.mlb-v3-collection-badge-light {
    background: rgba(225, 29, 46, 0.15);
    border-color: rgba(225, 29, 46, 0.4);
    color: var(--mlb-red-light);
}

.mlb-v3-collection-banner-title {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: clamp(36px, 4vw, 54px);
    line-height: 0.96;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: var(--mlb-space-4) 0 var(--mlb-space-6);
    color: var(--mlb-white);
}
.mlb-v3-home-wallets-banner .mlb-v3-collection-banner-title {
    color: var(--mlb-white);
}

.mlb-v3-collection-features {
    margin: 0 0 var(--mlb-space-8);
    display: grid;
    gap: var(--mlb-space-2);
}
.mlb-v3-collection-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.92);
}
.mlb-v3-collection-features li svg {
    flex: 0 0 auto;
    color: var(--mlb-white);
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    padding: 3px;
    width: 22px;
    height: 22px;
}
.mlb-v3-collection-features-light li svg {
    color: var(--mlb-red);
    background: rgba(225,29,46,0.15);
}

.mlb-v3-collection-banner-inner .mlb-v3-btn {
    align-self: flex-start;
}

/* Products grid (2x2) */
.mlb-v3-home-collection-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--mlb-space-5);
}

/* Tile */
.mlb-v3-home-tile {
    display: block;
    background: var(--mlb-white);
    border-radius: var(--mlb-radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: var(--mlb-navy);
    border: 1px solid var(--mlb-gray-200);
    transition: transform var(--mlb-t), box-shadow var(--mlb-t), border-color var(--mlb-t);
}
.mlb-v3-home-tile:hover {
    transform: translateY(-4px);
    box-shadow: var(--mlb-shadow-lg);
    border-color: var(--mlb-gray-300);
    color: var(--mlb-navy);
}

/* Dark variant for wallets */
.mlb-v3-home-tile-dark {
    background: var(--mlb-navy-light);
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--mlb-white);
}
.mlb-v3-home-tile-dark:hover {
    background: #1c2c44;
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 14px 40px rgba(0,0,0,0.5);
    color: var(--mlb-white);
}

.mlb-v3-home-tile-media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: var(--mlb-gray-100);
    overflow: hidden;
}
.mlb-v3-home-tile-dark .mlb-v3-home-tile-media {
    background: var(--mlb-navy-dark);
}
.mlb-v3-home-tile-media img,
.mlb-v3-tile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--mlb-ease);
}
.mlb-v3-home-tile:hover .mlb-v3-tile-img {
    transform: scale(1.06);
}

.mlb-v3-tile-placeholder {
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, var(--mlb-gray-100) 25%, var(--mlb-gray-200) 25%, var(--mlb-gray-200) 50%, var(--mlb-gray-100) 50%, var(--mlb-gray-100) 75%, var(--mlb-gray-200) 75%);
    background-size: 40px 40px;
}

/* Tile badges */
.mlb-v3-tile-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}
.mlb-v3-tile-badge {
    display: inline-block;
    padding: 4px 9px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: var(--mlb-radius-sm);
    line-height: 1.4;
    color: var(--mlb-white);
}
.mlb-v3-tile-badge-sale {
    position: absolute;
    top: 12px;
    right: 12px;
    left: auto;
    background: var(--mlb-red);
    z-index: 2;
}
.mlb-v3-tile-badges .mlb-v3-tile-badge-sale {
    position: static;
}
.mlb-v3-tile-badge-type {
    background: var(--mlb-navy);
}

/* Overlay on hover */
.mlb-v3-tile-overlay {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, transparent 40%, rgba(12,24,41,0.85) 100%);
    opacity: 0;
    transition: opacity var(--mlb-t);
    z-index: 1;
}
.mlb-v3-home-tile:hover .mlb-v3-tile-overlay {
    opacity: 1;
}
.mlb-v3-tile-overlay-cta {
    align-self: end;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mlb-white);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(225, 29, 46, 0.95);
    padding: 8px 14px;
    border-radius: var(--mlb-radius-pill);
}

.mlb-v3-home-tile-body {
    padding: var(--mlb-space-4);
}
.mlb-v3-home-tile-title {
    font-family: var(--mlb-font-body);
    font-weight: 600;
    font-size: 15px;
    line-height: 1.4;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
    color: inherit;
}
.mlb-v3-home-tile-price {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--mlb-red);
    letter-spacing: 0.5px;
}
.mlb-v3-home-tile-price del {
    color: var(--mlb-gray-400);
    font-weight: 500;
    font-size: 14px;
    margin-right: 4px;
}
.mlb-v3-home-tile-price ins {
    text-decoration: none;
}

.mlb-v3-home-tile-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
    font-size: 12px;
    color: var(--mlb-gray-600);
}
.mlb-v3-home-tile-rating svg {
    color: var(--mlb-warning);
    fill: var(--mlb-warning);
}
.mlb-v3-home-tile-rating em {
    font-style: normal;
    color: var(--mlb-gray-500);
}
.mlb-v3-home-tile-dark .mlb-v3-home-tile-rating {
    color: rgba(255,255,255,0.6);
}
.mlb-v3-home-tile-dark .mlb-v3-home-tile-rating em {
    color: rgba(255,255,255,0.45);
}

/* Empty state */
.mlb-v3-empty-state {
    grid-column: 1 / -1;
    padding: var(--mlb-space-10);
    background: var(--mlb-gray-50);
    border: 1px dashed var(--mlb-gray-300);
    border-radius: var(--mlb-radius-lg);
    text-align: center;
    color: var(--mlb-gray-600);
}
.mlb-v3-empty-state-dark {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
}

/* ==========================================================================
   5. FEATURED CAROUSEL
   ========================================================================== */
.mlb-v3-home-featured {
    padding: var(--mlb-space-20) var(--mlb-space-6);
    background: var(--mlb-cream);
    position: relative;
    overflow: hidden;
}
.mlb-v3-home-featured::before {
    content: "";
    position: absolute;
    right: -120px; top: -120px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225,29,46,0.06), transparent 70%);
    pointer-events: none;
}

.mlb-v3-carousel-wrap {
    position: relative;
    margin: 0 -8px;
}
.mlb-v3-carousel-track {
    display: flex;
    gap: var(--mlb-space-5);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 8px;
    padding-bottom: var(--mlb-space-4);
    /* scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--mlb-gray-300) transparent;
}
.mlb-v3-carousel-track::-webkit-scrollbar {
    height: 6px;
}
.mlb-v3-carousel-track::-webkit-scrollbar-thumb {
    background: var(--mlb-gray-300);
    border-radius: var(--mlb-radius-pill);
}

.mlb-v3-carousel-slide {
    flex: 0 0 calc((100% - var(--mlb-space-5) * 3) / 4);
    scroll-snap-align: start;
    min-width: 240px;
}

.mlb-v3-carousel-arrow {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--mlb-white);
    box-shadow: var(--mlb-shadow-md);
    display: grid;
    place-items: center;
    color: var(--mlb-navy);
    z-index: 5;
    transition: background var(--mlb-t), color var(--mlb-t), transform var(--mlb-t);
    border: 1px solid var(--mlb-gray-200);
}
.mlb-v3-carousel-arrow:hover {
    background: var(--mlb-red);
    color: var(--mlb-white);
    border-color: var(--mlb-red);
}
.mlb-v3-carousel-prev {
    left: -20px;
    transform: translateY(-50%) rotate(180deg);
}
.mlb-v3-carousel-prev:hover {
    transform: translateY(-50%) rotate(180deg) scale(1.05);
}
.mlb-v3-carousel-next {
    right: -20px;
}
.mlb-v3-carousel-next:hover {
    transform: translateY(-50%) scale(1.05);
}

.mlb-v3-home-tile-featured .mlb-v3-home-tile-media {
    aspect-ratio: 1 / 1;
}

.mlb-v3-home-featured-cta {
    text-align: center;
    margin-top: var(--mlb-space-10);
}

/* ==========================================================================
   6. SEASONAL BANNER (red, energetic)
   ========================================================================== */
.mlb-v3-seasonal {
    position: relative;
    padding: var(--mlb-space-20) var(--mlb-space-6);
    background:
        radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1), transparent 45%),
        linear-gradient(135deg, var(--mlb-red) 0%, var(--mlb-red-dark) 100%);
    color: var(--mlb-white);
    overflow: hidden;
    isolation: isolate;
}
.mlb-v3-seasonal-stitch {
    position: absolute;
    inset: 0;
    z-index: -1;
    opacity: 0.6;
    pointer-events: none;
}
.mlb-v3-seasonal-stitch svg {
    width: 100%;
    height: 100%;
}
.mlb-v3-seasonal-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--mlb-space-10);
    align-items: center;
}

.mlb-v3-seasonal-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px 14px;
    border-radius: var(--mlb-radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--mlb-white);
    margin-bottom: var(--mlb-space-5);
    border: 1px solid rgba(255,255,255,0.25);
}
.mlb-v3-seasonal-pulse {
    width: 8px; height: 8px;
    background: var(--mlb-white);
    border-radius: 50%;
    animation: mlbPulseWhite 1.8s infinite;
}
@keyframes mlbPulseWhite {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); }
    50%      { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}

.mlb-v3-seasonal-title {
    font-family: var(--mlb-font-display);
    font-weight: 700;
    font-size: clamp(40px, 5.5vw, 82px);
    line-height: 0.95;
    letter-spacing: -1.5px;
    text-transform: none;
    margin: 0 0 var(--mlb-space-5);
    color: var(--mlb-white);
}
.mlb-v3-seasonal-title-emph {
    color: var(--mlb-navy);
    display: inline-block;
    position: relative;
}
.mlb-v3-seasonal-title-emph::before {
    content: "";
    position: absolute;
    left: -6px; right: -6px;
    bottom: 2px;
    height: 14px;
    background: rgba(255, 255, 255, 0.25);
    z-index: -1;
    transform: skewX(-6deg);
}

.mlb-v3-seasonal-sub {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255,255,255,0.92);
    max-width: 520px;
    margin: 0 0 var(--mlb-space-8);
}

.mlb-v3-seasonal-ctas {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--mlb-space-5);
}
.mlb-v3-seasonal-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mlb-white);
    font-weight: 600;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: opacity var(--mlb-t);
}
.mlb-v3-seasonal-link:hover {
    opacity: 0.75;
    color: var(--mlb-white);
}

/* Emblem */
.mlb-v3-seasonal-emblem {
    position: relative;
    width: 280px;
    height: 280px;
}
.mlb-v3-seasonal-ball {
    width: 100%;
    height: 100%;
    animation: mlbFloat 6s ease-in-out infinite;
}
.mlb-v3-seasonal-ball svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 14px 30px rgba(0,0,0,0.35));
}
@keyframes mlbFloat {
    0%, 100% { transform: translateY(0) rotate(-4deg); }
    50%      { transform: translateY(-12px) rotate(4deg); }
}
.mlb-v3-seasonal-tag {
    position: absolute;
    bottom: 12px;
    right: -14px;
    background: var(--mlb-navy);
    color: var(--mlb-white);
    padding: 10px 18px;
    border-radius: var(--mlb-radius-md);
    text-align: center;
    box-shadow: var(--mlb-shadow-lg);
    transform: rotate(-8deg);
    border: 2px solid var(--mlb-white);
}
.mlb-v3-seasonal-tag-big {
    display: block;
    font-family: var(--mlb-font-display);
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: var(--mlb-red-light);
}
.mlb-v3-seasonal-tag-small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 4px;
}

/* ==========================================================================
   Button variants used on homepage (supplement to core)
   ========================================================================== */
.mlb-v3-btn-outline-white {
    background: transparent;
    color: var(--mlb-white);
    border: 2px solid rgba(255,255,255,0.6);
}
.mlb-v3-btn-outline-white:hover {
    background: var(--mlb-white);
    color: var(--mlb-navy);
    border-color: var(--mlb-white);
}
.mlb-v3-btn-white {
    background: var(--mlb-white);
    color: var(--mlb-navy);
}
.mlb-v3-btn-white:hover {
    background: var(--mlb-gray-100);
    color: var(--mlb-navy);
}
.mlb-v3-btn-navy {
    background: var(--mlb-navy);
    color: var(--mlb-white);
}
.mlb-v3-btn-navy:hover {
    background: var(--mlb-navy-dark);
    color: var(--mlb-white);
}
.mlb-v3-btn-outline {
    background: transparent;
    color: var(--mlb-navy);
    border: 2px solid var(--mlb-navy);
}
.mlb-v3-btn-outline:hover {
    background: var(--mlb-navy);
    color: var(--mlb-white);
}

/* ==========================================================================
   Responsive — homepage
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {

    /* Hero */
    .mlb-v3-hero-inner {
        grid-template-columns: 1fr;
        padding: var(--mlb-space-16) var(--mlb-space-5);
    }
    .mlb-v3-hero-badge {
        display: none;
    }
    .mlb-v3-hero-stats {
        gap: var(--mlb-space-4);
        padding: var(--mlb-space-3) var(--mlb-space-5);
    }

    /* Collections — stack banner on top */
    .mlb-v3-home-collection-grid,
    .mlb-v3-home-collection-grid-reverse {
        grid-template-columns: 1fr;
    }
    .mlb-v3-home-collection-grid-reverse .mlb-v3-home-collection-banner {
        order: -1;
    }
    .mlb-v3-home-collection-banner {
        min-height: 340px;
    }

    /* Trust bar */
    .mlb-v3-trust-grid {
        grid-template-columns: 1fr;
        gap: var(--mlb-space-8);
    }

    /* Carousel slides: 3 per view */
    .mlb-v3-carousel-slide {
        flex: 0 0 calc((100% - var(--mlb-space-5) * 2) / 3);
    }

    /* Seasonal */
    .mlb-v3-seasonal-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--mlb-space-8);
    }
    .mlb-v3-seasonal-ctas {
        justify-content: center;
    }
    .mlb-v3-seasonal-emblem {
        margin: 0 auto;
        width: 220px;
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 640px) {

    .mlb-v3-home-collection,
    .mlb-v3-home-featured,
    .mlb-v3-seasonal,
    .mlb-v3-trust-bar {
        padding: var(--mlb-space-12) var(--mlb-space-4);
    }

    .mlb-v3-section-head {
        margin-bottom: var(--mlb-space-8);
    }
    .mlb-v3-section-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    /* Hero */
    .mlb-v3-hero {
        min-height: 560px;
    }
    .mlb-v3-hero-heading {
        font-size: clamp(40px, 11vw, 68px);
        letter-spacing: -1px;
    }
    .mlb-v3-hero-subtext {
        font-size: 15px;
    }
    .mlb-v3-hero-ctas .mlb-v3-btn {
        flex: 1 1 100%;
        justify-content: center;
    }
    .mlb-v3-hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--mlb-space-2);
        width: 100%;
    }
    .mlb-v3-hero-stat-divider {
        display: none;
    }
    .mlb-v3-hero-stat {
        text-align: center;
        align-items: center;
    }

    /* Collections: 1 col products */
    .mlb-v3-home-collection-products {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--mlb-space-3);
    }
    .mlb-v3-home-tile-title {
        font-size: 13.5px;
        min-height: 2.6em;
    }
    .mlb-v3-home-tile-price {
        font-size: 16px;
    }
    .mlb-v3-collection-banner-inner {
        padding: var(--mlb-space-6);
    }
    .mlb-v3-collection-banner-title {
        font-size: clamp(32px, 8vw, 42px);
    }

    /* Carousel: 2 per view */
    .mlb-v3-carousel-slide {
        flex: 0 0 calc((100% - var(--mlb-space-5)) / 2);
        min-width: 160px;
    }
    .mlb-v3-carousel-prev { left: -6px; }
    .mlb-v3-carousel-next { right: -6px; }

    /* Seasonal */
    .mlb-v3-seasonal-title {
        font-size: clamp(36px, 11vw, 58px);
    }
    .mlb-v3-seasonal-emblem {
        width: 180px;
        height: 180px;
    }
}
