/*
Theme Name: FitnessBeast
Theme URI: https://fitnessbeast.nl
Description: FitnessBeast custom child theme - bold dark fitness e-commerce design with WooCommerce support.
Author: FitnessBeast
Version: 1.0.0
Template: twentytwentyfive
Tags: e-commerce, woocommerce, dark, fitness, bold
Text Domain: fitnessbeast
*/

/* =============================================
   GOOGLE FONTS
============================================= */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* =============================================
   CSS CUSTOM PROPERTIES — BRAND TOKENS
============================================= */
:root {
    --fb-black:        #0A0A0A;
    --fb-surface:      #1A1A1A;
    --fb-surface-2:    #242424;
    --fb-red:          #C41A1A;
    --fb-red-hover:    #A51515;
    --fb-white:        #FFFFFF;
    --fb-gray:         #888888;
    --fb-gray-light:   #CCCCCC;
    --fb-border:       rgba(255, 255, 255, 0.08);

    --fb-font-heading: 'Oswald', sans-serif;
    --fb-font-sub:     'Barlow Condensed', sans-serif;
    --fb-font-body:    'Inter', sans-serif;

    --fb-radius:       4px;
    --fb-radius-lg:    8px;
    --fb-transition:   0.2s ease;
    --fb-max-width:    1200px;
}

/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--fb-black) !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-body) !important;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* =============================================
   TYPOGRAPHY
============================================= */
h1, h2, h3, h4, h5, h6,
.wp-block-heading {
    font-family: var(--fb-font-heading) !important;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--fb-white) !important;
    text-transform: uppercase;
    line-height: 1.1;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
    font-family: var(--fb-font-body);
    color: var(--fb-gray-light);
    line-height: 1.7;
}

a {
    color: var(--fb-white);
    text-decoration: none;
    transition: color var(--fb-transition);
}

a:hover {
    color: var(--fb-red);
}

/* =============================================
   HEADER & NAVIGATION
============================================= */
.wp-block-template-part[data-type="header"],
header.wp-block-template-part,
#masthead,
.site-header {
    background-color: var(--fb-black) !important;
    border-bottom: 1px solid var(--fb-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.wp-block-navigation,
.site-header nav {
    background-color: transparent !important;
}

.wp-block-navigation a,
.site-header nav a {
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub) !important;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.wp-block-navigation a:hover {
    color: var(--fb-red) !important;
}

.wp-block-site-title a {
    font-family: var(--fb-font-heading) !important;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fb-white) !important;
}

/* =============================================
   CUSTOM FB HEADER
============================================= */
.fb-header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--fb-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.fb-header-inner {
    max-width: var(--fb-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

/* Logo */
.fb-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.fb-logo img {
    height: 64px;
    width: auto;
    display: block;
}

/* Desktop nav links */
.fb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    justify-content: center;
}

.fb-nav-link {
    font-family: var(--fb-font-sub);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--fb-gray-light) !important;
    padding: 8px 14px;
    border-radius: var(--fb-radius);
    transition: color var(--fb-transition), background var(--fb-transition);
    text-decoration: none;
}

.fb-nav-link:hover {
    color: var(--fb-white) !important;
    background: rgba(255, 255, 255, 0.06);
}

/* Header action icons */
.fb-header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.fb-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: var(--fb-gray-light);
    border-radius: var(--fb-radius);
    transition: color var(--fb-transition), background var(--fb-transition);
    text-decoration: none;
}

.fb-header-icon:hover {
    color: var(--fb-white);
    background: rgba(255, 255, 255, 0.06);
}

.fb-header-icon svg {
    display: block;
}

/* Hamburger (mobile) */
.fb-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
}

.fb-hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--fb-white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav drawer */
.fb-mobile-nav {
    display: none;
    flex-direction: column;
    background: var(--fb-surface);
    border-top: 1px solid var(--fb-border);
    padding: 16px 24px;
    gap: 4px;
}

.fb-mobile-nav.open {
    display: flex;
}

.fb-mobile-nav-link {
    font-family: var(--fb-font-sub);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-gray-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--fb-border);
    text-decoration: none;
    transition: color var(--fb-transition);
}

.fb-mobile-nav-link:last-child {
    border-bottom: none;
}

.fb-mobile-nav-link:hover {
    color: var(--fb-white);
}

/* Responsive: show hamburger on mobile, hide desktop nav */
@media (max-width: 768px) {
    .fb-nav,
    .fb-header-actions {
        display: none;
    }

    .fb-hamburger {
        display: flex;
    }
}

/* =============================================
   LOGO IMAGE
============================================= */
.wp-block-site-title {
    display: flex;
    align-items: center;
}

/* Replace site title text with logo image */
.wp-block-site-title a::before {
    content: '';
    display: inline-block;
    width: 220px;
    height: 80px;
    background-image: url('./ZK7vHEis_2x.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
    vertical-align: middle;
}

/* Hide the text when logo is showing */
.wp-block-site-title a {
    font-size: 0 !important;
    color: transparent !important;
}

/* Custom logo block */
.wp-block-site-logo img,
.custom-logo {
    max-height: 56px !important;
    width: auto !important;
}

/* =============================================
   HERO SECTION
============================================= */
.fb-hero {
    background-color: var(--fb-black);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

.fb-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(196, 26, 26, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.fb-hero-inner {
    max-width: var(--fb-max-width);
    margin: 0 auto;
    width: 100%;
}

.fb-hero-tag {
    display: inline-block;
    font-family: var(--fb-font-sub);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fb-red);
    margin-bottom: 16px;
}

.fb-hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 0 0 20px;
    line-height: 1;
}

.fb-hero h1 span {
    color: var(--fb-red);
}

.fb-hero p {
    font-size: 1.1rem;
    max-width: 480px;
    margin-bottom: 36px;
    color: rgba(255,255,255,0.6);
}

/* =============================================
   BUTTONS
============================================= */
.fb-btn,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    display: inline-block;
    background-color: var(--fb-red) !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub) !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px !important;
    border-radius: var(--fb-radius) !important;
    border: none !important;
    cursor: pointer;
    transition: background-color var(--fb-transition), transform var(--fb-transition);
    text-decoration: none;
}

.fb-btn:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    background-color: var(--fb-red-hover) !important;
    color: var(--fb-white) !important;
    transform: translateY(-1px);
}

.fb-btn-ghost {
    display: inline-block;
    background-color: transparent !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub) !important;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 13px 32px;
    border-radius: var(--fb-radius);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    cursor: pointer;
    transition: border-color var(--fb-transition), color var(--fb-transition);
}

.fb-btn-ghost:hover {
    border-color: var(--fb-white) !important;
    color: var(--fb-white);
}

/* =============================================
   SECTIONS
============================================= */
.fb-section {
    padding: 80px 24px;
    max-width: var(--fb-max-width);
    margin: 0 auto;
}

.fb-section-dark {
    background-color: var(--fb-surface);
    padding: 80px 24px;
}

.fb-section-dark > * {
    max-width: var(--fb-max-width);
    margin-left: auto;
    margin-right: auto;
}

.fb-section-label {
    font-family: var(--fb-font-sub);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fb-red);
    margin-bottom: 12px;
    display: block;
}

/* =============================================
   PRODUCT GRID & CARDS (WooCommerce)
============================================= */
.woocommerce,
.woocommerce-page {
    background-color: var(--fb-black) !important;
}

ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
    gap: 20px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

ul.products li.product {
    background-color: var(--fb-surface) !important;
    border-radius: var(--fb-radius-lg) !important;
    overflow: hidden;
    border: 1px solid var(--fb-border) !important;
    transition: border-color var(--fb-transition), transform var(--fb-transition);
    margin: 0 !important;
    float: none !important;
    width: auto !important;
}

ul.products li.product:hover {
    border-color: var(--fb-red) !important;
    transform: translateY(-3px);
}

ul.products li.product .woocommerce-loop-product__title {
    font-family: var(--fb-font-sub) !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fb-white) !important;
    padding: 12px 16px 4px !important;
}

ul.products li.product .price {
    color: var(--fb-red) !important;
    font-family: var(--fb-font-sub) !important;
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    padding: 0 16px 12px !important;
}

ul.products li.product img {
    width: 100% !important;
    height: 240px !important;
    object-fit: cover !important;
}

ul.products li.product .button {
    margin: 0 16px 16px !important;
    display: block !important;
    text-align: center !important;
}

/* Sale badge */
.woocommerce span.onsale {
    background-color: var(--fb-red) !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub) !important;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    border-radius: var(--fb-radius) !important;
    min-width: auto;
    min-height: auto;
    line-height: 1;
    padding: 4px 10px;
}

/* =============================================
   SINGLE PRODUCT PAGE
============================================= */
.woocommerce div.product {
    background-color: var(--fb-black);
}

.woocommerce div.product .product_title {
    font-family: var(--fb-font-heading) !important;
    font-size: clamp(1.8rem, 4vw, 3rem) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--fb-white) !important;
    letter-spacing: 0.03em;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--fb-red) !important;
    font-family: var(--fb-font-heading) !important;
    font-size: 2rem !important;
    font-weight: 700 !important;
}

.woocommerce div.product .woocommerce-product-details__short-description p {
    color: var(--fb-gray-light);
}

/* =============================================
   SHOP PAGE HEADER
============================================= */
.woocommerce-products-header__title,
.woocommerce h1.page-title,
.woocommerce h2.woocommerce-products-header__title {
    font-family: var(--fb-font-heading) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    color: var(--fb-white) !important;
    letter-spacing: 0.05em;
}

/* =============================================
   CART & CHECKOUT
============================================= */
.woocommerce table.shop_table {
    background-color: var(--fb-surface) !important;
    border: 1px solid var(--fb-border) !important;
    border-radius: var(--fb-radius-lg);
}

.woocommerce table.shop_table th {
    background-color: var(--fb-surface-2) !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub) !important;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
    border-color: var(--fb-border) !important;
}

.woocommerce table.shop_table td {
    color: var(--fb-gray-light) !important;
    border-color: var(--fb-border) !important;
    background-color: transparent !important;
}

.woocommerce-cart-form__cart-item td a {
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =============================================
   FORMS & INPUTS
============================================= */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
textarea,
select,
.woocommerce input,
.woocommerce textarea,
.woocommerce select {
    background-color: var(--fb-surface) !important;
    border: 1px solid var(--fb-border) !important;
    border-radius: var(--fb-radius) !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-body) !important;
    padding: 12px 16px !important;
    width: 100%;
    transition: border-color var(--fb-transition);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--fb-red) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(196, 26, 26, 0.2) !important;
}

label {
    color: var(--fb-gray-light) !important;
    font-family: var(--fb-font-body);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

/* =============================================
   FOOTER
============================================= */
.wp-block-template-part[data-type="footer"],
footer.wp-block-template-part,
#colophon,
.site-footer {
    background-color: var(--fb-surface) !important;
    border-top: 1px solid var(--fb-border);
    padding: 60px 24px 30px;
    color: var(--fb-gray) !important;
}

.site-footer a {
    color: var(--fb-gray-light);
    font-family: var(--fb-font-body);
    font-size: 0.875rem;
}

.site-footer a:hover {
    color: var(--fb-red);
}

.site-footer .wp-block-site-title a {
    color: var(--fb-white) !important;
}

/* =============================================
   CATEGORY CARDS
============================================= */
.fb-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    padding: 0;
    list-style: none;
}

.fb-category-card {
    background-color: var(--fb-surface);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius-lg);
    padding: 32px 20px;
    text-align: center;
    transition: border-color var(--fb-transition), transform var(--fb-transition);
    cursor: pointer;
}

.fb-category-card:hover {
    border-color: var(--fb-red);
    transform: translateY(-3px);
}

.fb-category-card h3 {
    font-family: var(--fb-font-sub) !important;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-white) !important;
    margin: 12px 0 0;
}

.fb-category-icon {
    font-size: 2.5rem;
    display: block;
}

/* =============================================
   FEATURES / USP STRIP
============================================= */
.fb-features {
    background-color: var(--fb-red);
    padding: 20px 24px;
}

.fb-features-inner {
    max-width: var(--fb-max-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.fb-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fb-font-sub);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--fb-white);
}

/* =============================================
   BREADCRUMBS
============================================= */
.woocommerce .woocommerce-breadcrumb {
    color: var(--fb-gray) !important;
    font-family: var(--fb-font-body);
    font-size: 0.8rem;
}

.woocommerce .woocommerce-breadcrumb a {
    color: var(--fb-gray-light) !important;
}

.woocommerce .woocommerce-breadcrumb a:hover {
    color: var(--fb-red) !important;
}

/* =============================================
   NOTICES & ALERTS
============================================= */
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
    background-color: var(--fb-surface) !important;
    border-top-color: var(--fb-red) !important;
    color: var(--fb-white) !important;
}

/* =============================================
   PAGINATION
============================================= */
.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
    background-color: var(--fb-surface) !important;
    border-color: var(--fb-border) !important;
    color: var(--fb-white) !important;
    font-family: var(--fb-font-sub);
    font-weight: 600;
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
    background-color: var(--fb-red) !important;
    color: var(--fb-white) !important;
}

/* =============================================
   PREMIUM ENHANCEMENTS
============================================= */

/* Smooth page-level transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
/* Don't animate layout properties — only decorative */
*, *::before, *::after {
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease,
                opacity 0.2s ease, transform 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.25s ease;
}

/* Sticky header — glass blur on scroll */
.wp-block-template-part[data-type="header"],
header.wp-block-template-part,
#masthead,
.site-header {
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    background-color: rgba(10, 10, 10, 0.92) !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

/* Nav link underline animation — Nike style */
.wp-block-navigation a {
    position: relative;
    padding-bottom: 3px !important;
}
.wp-block-navigation a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--fb-red);
    transition: width 0.3s ease;
}
.wp-block-navigation a:hover::after {
    width: 100%;
}
.wp-block-navigation a:hover {
    color: var(--fb-white) !important;
}

/* Hero — richer visual depth */
.fb-hero {
    background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(196, 26, 26, 0.12) 0%, transparent 70%), var(--fb-black) !important;
    min-height: 92vh;
}
.fb-hero h1 {
    font-size: clamp(3.5rem, 9vw, 7rem);
    letter-spacing: -0.01em;
    line-height: 0.95;
    margin-bottom: 28px;
}
.fb-hero p {
    font-size: 1.15rem;
    letter-spacing: 0.01em;
    line-height: 1.65;
}

/* Animated scroll hint on hero */
.fb-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
    animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* Premium buttons — refined */
.fb-btn,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    position: relative;
    overflow: hidden;
    letter-spacing: 0.12em !important;
}
.fb-btn::after,
.wp-block-button__link::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.2s ease;
}
.fb-btn:hover::after,
.wp-block-button__link:hover::after {
    opacity: 1;
}
.fb-btn:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(196, 26, 26, 0.35) !important;
}
.fb-btn:active,
.wp-block-button__link:active {
    transform: translateY(0px) !important;
    box-shadow: none !important;
}

/* Ghost button polish */
.fb-btn-ghost:hover {
    background-color: rgba(255,255,255,0.06) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
}

/* Marquee text strip — editorial, premium */
.fb-marquee-wrap {
    background-color: var(--fb-surface);
    border-top: 1px solid var(--fb-border);
    border-bottom: 1px solid var(--fb-border);
    overflow: hidden;
    padding: 14px 0;
    white-space: nowrap;
}
.fb-marquee {
    display: inline-flex;
    animation: marquee 22s linear infinite;
    gap: 0;
}
.fb-marquee-item {
    font-family: var(--fb-font-sub);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--fb-gray);
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
}
.fb-marquee-item span {
    color: var(--fb-red);
    font-size: 0.6rem;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Category tiles — full-height, editorial */
.fb-categories {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
}
.fb-category-card {
    padding: 0;
    min-height: 200px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    border-radius: 6px !important;
    background: var(--fb-surface-2);
}
.fb-category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}
.fb-category-card:hover {
    transform: scale(1.02) translateY(-2px) !important;
    border-color: var(--fb-red) !important;
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}
.fb-category-card h3 {
    position: relative;
    z-index: 2;
    padding: 16px 18px !important;
    margin: 0 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.1em !important;
}
.fb-category-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -65%);
    font-size: 3rem;
    opacity: 0.25;
    z-index: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.fb-category-card:hover .fb-category-icon {
    opacity: 0.15;
    transform: translate(-50%, -70%) scale(1.15);
}

/* Product cards — Nike-level polish */
ul.products li.product {
    border: none !important;
    background-color: transparent !important;
    border-radius: 0 !important;
}
ul.products li.product:hover {
    transform: none !important;
    border: none !important;
}
ul.products li.product img {
    border-radius: 6px !important;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}
ul.products li.product:hover img {
    transform: scale(1.04) !important;
}

/* Overflow clip on card for image zoom */
ul.products li.product .woocommerce-LoopProduct-link {
    overflow: hidden;
    display: block;
    border-radius: 6px;
}

ul.products li.product .woocommerce-loop-product__title {
    padding: 14px 4px 4px !important;
    letter-spacing: 0.02em !important;
}
ul.products li.product .price {
    padding: 0 4px 10px !important;
    font-size: 1rem !important;
}
ul.products li.product .button {
    margin: 4px 4px 8px !important;
    border-radius: 3px !important;
    font-size: 0.8rem !important;
    padding: 10px 16px !important;
    letter-spacing: 0.12em !important;
}

/* Section headings — editorial spacing */
.fb-section h2,
.fb-section-dark h2 {
    letter-spacing: -0.01em;
    line-height: 1.0;
}

/* Feature strip — cleaner separators */
.fb-features-inner {
    gap: 0;
}
.fb-feature-item {
    flex: 1;
    justify-content: center;
    position: relative;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
}
.fb-feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 16px;
    width: 1px;
    background: rgba(255,255,255,0.25);
}

/* Footer — more editorial */
.site-footer,
#colophon,
footer.wp-block-template-part {
    padding: 80px 24px 40px !important;
}

/* Page fade-in on load */
@keyframes pageFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.site, body > .wp-site-blocks {
    animation: pageFadeIn 0.5s ease forwards;
}

/* Refined section label */
.fb-section-label {
    display: inline-block;
    border-bottom: 1px solid var(--fb-red);
    padding-bottom: 6px;
    margin-bottom: 16px;
}

/* =============================================
   SCROLLBAR
============================================= */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--fb-black); }
::-webkit-scrollbar-thumb { background: var(--fb-red); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--fb-red-hover); }

/* =============================================
   HERO SPLIT LAYOUT
============================================= */
.fb-hero-split {
    padding: 0 !important;
    min-height: 92vh;
    align-items: stretch !important;
}

.fb-hero-inner-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
    max-width: 100% !important;
    margin: 0 !important;
    min-height: 92vh;
}

.fb-hero-text {
    padding: 80px 60px 80px 60px;
    max-width: 600px;
    margin-left: auto;
}

.fb-hero-image {
    position: relative;
    height: 100%;
    min-height: 92vh;
    overflow: hidden;
    background: #111;
}

.fb-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    filter: brightness(0.9);
    transition: transform 8s ease, filter 0.4s ease;
}

.fb-hero-split:hover .fb-hero-image img {
    transform: scale(1.04);
    filter: brightness(1);
}

.fb-hero-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(10,10,10,0.6) 0%, transparent 40%);
    z-index: 1;
}

@media (max-width: 768px) {
    .fb-hero-inner-split {
        grid-template-columns: 1fr;
    }
    .fb-hero-image {
        min-height: 50vw;
    }
    .fb-hero-text {
        padding: 60px 24px;
        margin: 0;
        max-width: 100%;
    }
}

/* =============================================
   COLLECTION TILES
============================================= */
.fb-collection-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.fb-collection-small-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.fb-collection-tile {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    display: block;
    background: #111;
    cursor: pointer;
}

.fb-collection-tile-large {
    min-height: 480px;
}

.fb-collection-small-grid .fb-collection-tile {
    min-height: 320px;
}

.fb-collection-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
    filter: brightness(0.75);
}

.fb-collection-tile:hover img {
    transform: scale(1.06);
    filter: brightness(0.9);
}

.fb-collection-tile-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px 24px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    z-index: 2;
}

.fb-collection-tag {
    display: inline-block;
    font-family: var(--fb-font-sub);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--fb-red);
    margin-bottom: 6px;
}

.fb-collection-tile-overlay h3 {
    font-family: var(--fb-font-heading) !important;
    font-size: 1.6rem !important;
    font-weight: 700 !important;
    color: var(--fb-white) !important;
    margin: 0 0 4px !important;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.1;
}

.fb-collection-tile-overlay p {
    font-family: var(--fb-font-sub);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* Arrow indicator on hover */
.fb-collection-tile::after {
    content: '→';
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 1.2rem;
    color: var(--fb-white);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
}

.fb-collection-tile:hover::after {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .fb-collection-hero-grid,
    .fb-collection-small-grid {
        grid-template-columns: 1fr;
    }
    .fb-collection-tile-large,
    .fb-collection-small-grid .fb-collection-tile {
        min-height: 260px;
    }
}

/* =============================================
   UTILITY CLASSES
============================================= */
.fb-text-red   { color: var(--fb-red) !important; }
.fb-text-white { color: var(--fb-white) !important; }
.fb-text-gray  { color: var(--fb-gray) !important; }
.fb-bg-black   { background-color: var(--fb-black) !important; }
.fb-bg-surface { background-color: var(--fb-surface) !important; }
.fb-uppercase  { text-transform: uppercase !important; letter-spacing: 0.08em !important; }
