/* === LOGO - BIGGER === */
header a[href="/"] img {
    height: 80px !important;
    width: auto !important;
    max-height: none !important;
}
/* === BRAND NAME IN WHITE NEXT TO LOGO === */
header a[href="/"]::after {
    content: "JERSEIZE" !important;
    display: inline-block !important;
    font-family: "Playfair Display", serif !important;
    font-size: 1.8rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    letter-spacing: 0.06em !important;
    margin-left: 12px !important;
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
}
footer a[href="/"] img {
    height: 32px !important;
    width: auto !important;
}

/* === HERO BACKGROUND - STADIUM PHOTO VISIBLE === */
.hero-gradient {
    opacity: 0.55 !important;
    background: linear-gradient(135deg, #0a1628 0%, #0d1b2a 40%, #1a2838 70%, #0a1628 100%) !important;
}

/* === MOCK JERSEY CARDS === */
.mock-jerseys-section {
    padding: 60px 20px;
    max-width: 1280px;
    margin: 0 auto;
}
.mock-jerseys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 32px;
}
.mock-jersey-card {
    background: linear-gradient(135deg, rgba(18,28,43,0.8), rgba(12,19,29,0.9));
    border: 1px solid rgba(41,49,61,0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    backdrop-filter: blur(20px) saturate(180%);
}
.mock-jersey-card:hover {
    transform: translateY(-6px);
    border-color: rgba(47,99,167,0.4);
    box-shadow: 0 24px 48px -12px rgba(47,99,167,0.15);
    background: linear-gradient(135deg, rgba(24,38,57,0.9), rgba(15,23,36,0.95));
}
.mock-jersey-img {
    aspect-ratio: 3/4;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}
.mock-jersey-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f59e0b;
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
}
.mock-jersey-info {
    padding: 16px;
}
.mock-jersey-team {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6a7282;
    margin-bottom: 4px;
}
.mock-jersey-name {
    font-family: "Playfair Display", serif;
    font-size: 1rem;
    font-weight: 600;
    color: #eaecf1;
    margin-bottom: 8px;
    line-height: 1.3;
}
.mock-jersey-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
}
.mock-jersey-price {
    font-weight: 700;
    color: #f59e0b;
    font-size: 1.1rem;
}
.mock-jersey-price-old {
    font-size: 0.8rem;
    color: #6a7282;
    text-decoration: line-through;
}
.mock-jersey-rating {
    margin-left: auto;
    font-size: 0.8rem;
    color: #f59e0b;
}

/* === FORCE HERO IMAGE OPACITY === */
