
:root{
    --kf-navy:#071b33;
    --kf-navy-2:#0c2d50;
    --kf-orange:#f26522;
    --kf-white:#ffffff;
    --kf-cream:#f7f7f5;
    --kf-text:#102033;
    --kf-line:#d8dde3;
    --kf-radius:10px;
    --kf-shadow:0 12px 30px rgba(2,18,36,.10);
}

.kf-lu-store{
    width:100%;
    max-width:none;
    margin:0;
    color:var(--kf-text);
    background:#fff;
    overflow:hidden;
    font-family:Arial,Helvetica,sans-serif;
}

.kf-lu-store *,
.kf-lu-store *::before,
.kf-lu-store *::after{
    box-sizing:border-box;
}

.kf-lu-hero{
    --kf-hero:none;
    min-height:540px;
    display:flex;
    align-items:center;
    position:relative;
    background:
        linear-gradient(90deg,rgba(3,20,38,.98) 0%,rgba(3,20,38,.93) 35%,rgba(3,20,38,.40) 65%,rgba(3,20,38,.12) 100%),
        var(--kf-hero),
        linear-gradient(135deg,var(--kf-navy),var(--kf-navy-2));
    background-size:cover;
    background-position:center;
    color:#fff;
}

.kf-lu-hero-inner{
    width:min(1240px,92%);
    margin:0 auto;
    padding:70px 0;
}

.kf-lu-eyebrow,
.kf-lu-game-kicker{
    color:var(--kf-orange);
    font-size:13px;
    font-weight:800;
    letter-spacing:1.8px;
    margin-bottom:14px;
}

.kf-lu-hero h1{
    margin:0;
    max-width:700px;
    color:#fff;
    font-size:clamp(54px,7vw,105px);
    line-height:.84;
    letter-spacing:-3px;
    font-weight:1000;
}

.kf-lu-script{
    margin-top:18px;
    color:var(--kf-orange);
    font-family:Georgia,serif;
    font-style:italic;
    font-size:clamp(30px,4vw,52px);
    line-height:1;
}

.kf-lu-hero p{
    max-width:610px;
    margin:22px 0 28px;
    color:rgba(255,255,255,.92);
    font-size:18px;
    line-height:1.55;
}

.kf-lu-actions{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.kf-lu-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:0 25px;
    border-radius:4px;
    text-decoration:none !important;
    font-size:13px;
    font-weight:900;
    letter-spacing:.25px;
    transition:.2s ease;
}

.kf-lu-btn:hover{
    transform:translateY(-2px);
}

.kf-lu-btn-primary{
    background:var(--kf-orange);
    color:#fff !important;
    border:2px solid var(--kf-orange);
}

.kf-lu-btn-secondary{
    background:rgba(255,255,255,.03);
    color:#fff !important;
    border:2px solid rgba(255,255,255,.72);
}

.kf-lu-section{
    width:min(1240px,94%);
    margin:0 auto;
    padding:40px 0;
}

.kf-lu-heading{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    align-items:center;
    gap:22px;
    margin-bottom:24px;
}

.kf-lu-heading span{
    height:2px;
    background:var(--kf-orange);
}

.kf-lu-heading h2{
    margin:0;
    color:var(--kf-navy);
    font-size:28px;
    line-height:1;
    letter-spacing:.6px;
    font-weight:1000;
}

.kf-lu-category-grid{
    display:grid;
    grid-template-columns:repeat(9,minmax(0,1fr));
    gap:10px;
}

.kf-lu-card{
    position:relative;
    display:block;
    overflow:hidden;
    min-height:190px;
    border-radius:var(--kf-radius);
    background:var(--kf-navy);
    box-shadow:var(--kf-shadow);
    text-decoration:none !important;
    isolation:isolate;
}

.kf-lu-card-image{
    position:absolute;
    inset:0;
    background-size:cover;
    background-position:center;
    transition:transform .3s ease;
    z-index:-2;
}

.kf-lu-card-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,rgba(7,27,51,.02) 35%,rgba(7,27,51,.96) 100%);
    z-index:-1;
}

.kf-lu-card:hover .kf-lu-card-image{
    transform:scale(1.05);
}

.kf-lu-card-copy{
    position:absolute;
    left:10px;
    right:10px;
    bottom:12px;
    z-index:2;
    text-align:center;
}

.kf-lu-card-title{
    display:block;
    color:#fff;
    font-size:12px;
    line-height:1.15;
    font-weight:900;
    letter-spacing:.35px;
}

.kf-lu-card-context{
    display:block;
    margin-top:5px;
    color:rgba(255,255,255,.82);
    font-size:9px;
    line-height:1.25;
    font-weight:700;
}

.kf-lu-card-badge{
    position:absolute;
    top:10px;
    left:10px;
    z-index:3;
    padding:5px 7px;
    border-radius:999px;
    background:var(--kf-orange);
    color:#fff;
    font-size:8px;
    line-height:1;
    font-weight:900;
    letter-spacing:.5px;
    box-shadow:0 4px 12px rgba(0,0,0,.18);
}

.kf-lu-card-no-image .kf-lu-card-image{
    background:
        radial-gradient(circle at 75% 20%,rgba(242,101,34,.32),transparent 28%),
        linear-gradient(145deg,var(--kf-navy-2),var(--kf-navy));
}

.kf-lu-card-arrow{
    position:absolute;
    right:10px;
    top:10px;
    width:26px;
    height:26px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.9);
    color:var(--kf-navy);
    opacity:0;
    transform:translateY(4px);
    transition:.2s ease;
}

.kf-lu-card:hover .kf-lu-card-arrow{
    opacity:1;
    transform:none;
}

.kf-lu-trust{
    width:min(1240px,94%);
    margin:6px auto 0;
    padding:17px 22px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    background:#f6f7f8;
    border:1px solid #eceff2;
    border-radius:8px;
}

.kf-lu-trust-item{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    color:var(--kf-navy);
    font-size:11px;
    text-align:center;
}

.kf-lu-icon{
    color:var(--kf-orange);
    font-size:20px;
}

.kf-lu-products ul.products{
    display:grid !important;
    grid-template-columns:repeat(6,minmax(0,1fr)) !important;
    gap:18px !important;
    margin:0 !important;
}

.kf-lu-products ul.products::before,
.kf-lu-products ul.products::after{
    display:none !important;
}

.kf-lu-products ul.products li.product{
    width:auto !important;
    float:none !important;
    margin:0 !important;
    text-align:left !important;
}

.kf-lu-products ul.products li.product img{
    width:100% !important;
    aspect-ratio:1 / 1.12;
    object-fit:cover;
    border-radius:8px;
    background:#f5f5f5;
    margin:0 0 12px !important;
}

.kf-lu-products ul.products li.product .woocommerce-loop-product__title{
    min-height:42px;
    margin:0 0 5px !important;
    padding:0 !important;
    color:var(--kf-navy);
    font-size:14px !important;
    line-height:1.35;
    font-weight:800;
}

.kf-lu-products ul.products li.product .price{
    color:#18273b !important;
    font-size:14px !important;
    font-weight:800 !important;
}

.kf-lu-products ul.products li.product .button{
    width:100%;
    margin-top:10px !important;
    padding:10px 8px !important;
    border-radius:4px;
    background:var(--kf-navy) !important;
    color:#fff !important;
    font-size:11px !important;
    font-weight:900 !important;
    text-align:center;
}

.kf-lu-products ul.products li.product .button:hover{
    background:var(--kf-orange) !important;
}

.kf-lu-center{
    text-align:center;
    margin-top:22px;
}

.kf-lu-text-btn{
    display:inline-block;
    padding:12px 18px;
    border:1px solid #d9dde2;
    border-radius:4px;
    color:var(--kf-orange) !important;
    background:#fff;
    text-decoration:none !important;
    font-size:12px;
    font-weight:900;
}

.kf-lu-collection-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.kf-lu-collection-card{
    min-height:195px;
}

.kf-lu-collection-card:nth-child(7){
    grid-column:1 / -1;
}

.kf-lu-collection-card .kf-lu-card-title{
    left:20px;
    bottom:26px;
    text-align:left;
    font-size:24px;
    text-shadow:0 2px 12px rgba(0,0,0,.35);
}

.kf-lu-collection-card::after{
    content:"SHOP THE COLLECTION →";
    position:absolute;
    left:20px;
    bottom:9px;
    color:#fff;
    font-size:10px;
    font-weight:700;
}

.kf-lu-game-day{
    --kf-game:none;
    width:min(1240px,94%);
    min-height:255px;
    margin:15px auto 5px;
    display:flex;
    align-items:center;
    border-radius:10px;
    overflow:hidden;
    color:#fff;
    background:
        linear-gradient(90deg,rgba(3,20,38,.98),rgba(3,20,38,.82) 48%,rgba(3,20,38,.25)),
        var(--kf-game),
        linear-gradient(135deg,var(--kf-navy),#123f68);
    background-size:cover;
    background-position:center;
    box-shadow:var(--kf-shadow);
}

.kf-lu-game-day-content{
    width:100%;
    padding:45px 50px;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:25px;
}

.kf-lu-game-day h2{
    margin:0 0 10px;
    color:#fff;
    font-size:clamp(44px,6vw,76px);
    line-height:.92;
    letter-spacing:-2px;
    font-weight:1000;
}

.kf-lu-game-day h2 span{
    color:var(--kf-orange);
}

.kf-lu-game-day p{
    margin:0;
    font-size:16px;
}

.kf-lu-game-day p b{
    margin:0 7px;
    color:var(--kf-orange);
}

.kf-lu-customer-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:14px;
}

.kf-lu-customer-card{
    min-height:240px;
}

.kf-lu-customer-card .kf-lu-card-title{
    left:20px;
    bottom:30px;
    text-align:left;
    font-size:25px;
}

.kf-lu-bottom-strip{
    padding:18px max(3%,calc((100% - 1240px)/2));
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    background:var(--kf-navy);
    color:#fff;
    font-size:11px;
    font-weight:800;
    text-align:center;
}

@media (max-width:1100px){
    .kf-lu-category-grid{
        grid-template-columns:repeat(5,1fr);
    }

    .kf-lu-products ul.products{
        grid-template-columns:repeat(3,1fr) !important;
    }
}

@media (max-width:767px){
    .kf-lu-hero{
        min-height:510px;
        background:
            linear-gradient(180deg,rgba(3,20,38,.58) 0%,rgba(3,20,38,.92) 65%,rgba(3,20,38,.99) 100%),
            var(--kf-hero),
            linear-gradient(135deg,var(--kf-navy),var(--kf-navy-2));
        background-position:center top;
        align-items:flex-end;
    }

    .kf-lu-hero-inner{
        width:90%;
        padding:50px 0 42px;
    }

    .kf-lu-hero h1{
        font-size:clamp(46px,16vw,68px);
        letter-spacing:-2px;
    }

    .kf-lu-script{
        font-size:34px;
    }

    .kf-lu-hero p{
        font-size:15px;
    }

    .kf-lu-actions{
        display:grid;
        grid-template-columns:1fr 1fr;
    }

    .kf-lu-btn{
        padding:0 14px;
        font-size:11px;
    }

    .kf-lu-section{
        width:92%;
        padding:28px 0;
    }

    .kf-lu-heading{
        gap:12px;
    }

    .kf-lu-heading h2{
        font-size:20px;
        text-align:center;
    }

    .kf-lu-category-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .kf-lu-card{
        min-height:190px;
    }

    .kf-lu-trust{
        width:92%;
        grid-template-columns:repeat(2,1fr);
        gap:16px;
        padding:16px 10px;
    }

    .kf-lu-trust-item{
        flex-direction:column;
        gap:4px;
        font-size:9px;
    }

    .kf-lu-products ul.products{
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px !important;
    }

    .kf-lu-products ul.products li.product .woocommerce-loop-product__title{
        min-height:auto;
        font-size:12px !important;
    }

    .kf-lu-collection-grid{
        grid-template-columns:1fr;
    }

    .kf-lu-collection-card:nth-child(7){
        grid-column:auto;
    }

    .kf-lu-collection-card{
        min-height:175px;
    }

    .kf-lu-collection-card .kf-lu-card-title{
        font-size:21px;
    }

    .kf-lu-game-day{
        width:92%;
        min-height:290px;
    }

    .kf-lu-game-day-content{
        padding:34px 26px;
        display:block;
    }

    .kf-lu-game-day h2{
        font-size:50px;
    }

    .kf-lu-game-day p{
        margin-bottom:22px;
        font-size:13px;
    }

    .kf-lu-customer-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }

    .kf-lu-customer-card{
        min-height:190px;
    }

    .kf-lu-bottom-strip{
        grid-template-columns:repeat(2,1fr);
        font-size:9px;
    }
}

@media (max-width:420px){
    .kf-lu-actions{
        grid-template-columns:1fr;
    }

    .kf-lu-category-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .kf-lu-card{
        min-height:165px;
    }
}


.kf-lu-logo-overlay{
    position:absolute;
    top:12px;
    left:12px;
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    padding:5px;
    border-radius:8px;
    background:rgba(255,255,255,.94);
    box-shadow:0 5px 15px rgba(0,0,0,.16);
    z-index:2;
}

.kf-lu-logo-overlay img{
    display:block;
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
    object-fit:contain;
}

.kf-lu-empty{
    margin:0;
    padding:20px;
    border:1px solid #e2e7ec;
    border-radius:8px;
    background:#f7f8fa;
    color:var(--kf-navy);
    text-align:center;
    font-size:14px;
}

/* v1.2 compact reusable navigation */
.kf-lu-quick-nav{
    width:min(1240px,94%);
    margin:22px auto 0;
    padding:10px;
    display:flex;
    gap:8px;
    overflow-x:auto;
    scrollbar-width:thin;
    background:#f6f7f8;
    border:1px solid #e6e9ed;
    border-radius:10px;
    -webkit-overflow-scrolling:touch;
}

.kf-lu-quick-nav a{
    flex:0 0 auto;
    display:inline-flex;
    min-height:38px;
    align-items:center;
    justify-content:center;
    padding:0 14px;
    border-radius:6px;
    background:#fff;
    border:1px solid #dfe4e8;
    color:var(--kf-navy) !important;
    text-decoration:none !important;
    font-size:11px;
    font-weight:900;
    letter-spacing:.25px;
    white-space:nowrap;
    transition:.2s ease;
}

.kf-lu-quick-nav a:hover{
    border-color:var(--kf-orange);
    color:var(--kf-orange) !important;
    transform:translateY(-1px);
}

.kf-lu-quick-nav .kf-lu-quick-home{
    background:var(--kf-navy);
    border-color:var(--kf-navy);
    color:#fff !important;
}

.kf-lu-nav-only{
    background:transparent;
}

.kf-lu-nav-only .kf-lu-categories-compact{
    padding-top:24px;
    padding-bottom:24px;
}

.kf-lu-nav-only .kf-lu-category-card{
    min-height:175px;
}

.kf-lu-logo-overlay{
    position:absolute;
    top:10px;
    left:10px;
    z-index:2;
    width:48px;
    height:48px;
    padding:5px;
    display:grid;
    place-items:center;
    border-radius:50%;
    background:rgba(255,255,255,.92);
    box-shadow:0 4px 14px rgba(0,0,0,.15);
}

.kf-lu-logo-overlay img{
    display:block;
    max-width:100%;
    max-height:100%;
    width:auto;
    height:auto;
}

@media (max-width:767px){
    .kf-lu-quick-nav{
        width:92%;
        margin-top:14px;
        padding:8px;
    }

    .kf-lu-quick-nav a{
        min-height:36px;
        padding:0 12px;
        font-size:10px;
    }

    .kf-lu-nav-only .kf-lu-category-card{
        min-height:165px;
    }
}
