:root{
    --bg:#ffffff;
    --card:#ffffff;
    --text:#111111;
    --muted:#6e6e73;
    --border:#ececec;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:var(--bg);
    color:var(--text);
}

.container{
    width:1440px;
    max-width:calc(100% - 40px);
    margin:auto;
}

.hero{
    padding:60px 0 40px;
}

.brand{
    display:flex;
    align-items:center;
    gap:24px;
}

.brand img{
    width:90px;
    height:90px;
    object-fit:contain;
    flex-shrink:0;
}

.brand-text h1{
    font-size:52px;
    font-weight:800;
    letter-spacing:-2px;
    line-height:1;
    margin:0;
}

.brand-text p{
    margin-top:10px;
    font-size:18px;
    color:#6e6e73;
}

.hero h1{
    font-size:64px;
    font-weight:800;
    letter-spacing:-3px;
}

.hero p{
    margin-top:12px;
    color:var(--muted);
    font-size:18px;
}

.categories{
    position:sticky;
    top:0;
    z-index:100;

    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.92);

    border-top:1px solid var(--border);
    border-bottom:1px solid var(--border);
}

.categories .container{
    display:flex;
    gap:10px;
    overflow-x:auto;
    padding:14px 0;
}

.categories .container::-webkit-scrollbar{
    display:none;
}

.categories a{
    text-decoration:none;

    color:#111;

    background:#f5f5f7;

    border:1px solid #ececec;

    padding:10px 16px;

    border-radius:999px;

    white-space:nowrap;

    font-size:14px;
    font-weight:700;
}

.section{
    padding:50px 0;
}

.section h2{
    font-size:42px;
    font-weight:800;
    letter-spacing:-1px;
    margin-bottom:30px;
}

.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;
}

.product{
    background:#fff;

    border:1px solid var(--border);

    border-radius:28px;

    overflow:hidden;

    transition:.25s ease;
}

.product-image{
    aspect-ratio:1/1;
    overflow:hidden;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;

    transition:.4s;
}

.product-content{
    padding:22px;
}

.product-content h3{
    font-size:24px;
    font-weight:800;
    letter-spacing:-0.5px;
}

.product-content p{
    margin-top:8px;
    color:var(--muted);
    line-height:1.6;
    font-size:14px;
}

.sizes{
    margin-top:18px;
}

.sizes div{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:12px 0;

    border-bottom:1px solid #f2f2f2;
}

.sizes div:last-child{
    border-bottom:none;
}

.sizes span{
    color:var(--muted);
}

.sizes b{
    font-size:18px;
}

@media (hover:hover){

    .product:hover{
        transform:translateY(-6px);

        box-shadow:
            0 20px 40px rgba(0,0,0,.08);
    }

    .product:hover img{
        transform:scale(1.05);
    }
}

@media(max-width:1200px){

    .products{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:900px){

    .products{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:48px;
    }
}

@media(max-width:600px){

    .brand{
        flex-direction:column;
        text-align:center;
        gap:16px;
    }

    .brand img{
        width:90px;
        height:90px;
    }

    .brand-text h1{
        font-size:38px;
        letter-spacing:-1px;
    }

    .brand-text p{
        font-size:15px;
    }

    .container{
        max-width:calc(100% - 50px);
    }

    .products{
        grid-template-columns:1fr;
        gap:24px;
    }

    .hero{
        padding:40px 0 24px;
    }

    .hero h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .section h2{
        font-size:32px;
    }
}

.footer{
    margin-top:80px;
    padding:60px 0 30px;

    background:#fafafa;

    border-top:1px solid #ececec;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:50px;
}

.footer-block h4{
    font-size:18px;
    font-weight:800;

    margin-bottom:18px;
}

.footer-block p{
    color:#6e6e73;
    line-height:1.7;
}

.footer-block a{
    display:block;

    color:#6e6e73;

    text-decoration:none;

    margin-bottom:12px;

    transition:.2s;
}

.footer-block a:hover{
    color:#111;
}

.footer-bottom{
    margin-top:40px;
    padding-top:25px;

    border-top:1px solid #ececec;

    color:#8e8e93;

    font-size:14px;
}

@media(max-width:768px){

    .footer{
        margin-top:50px;
        padding:40px 0 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:32px;
    }

    .footer-bottom{
        margin-top:30px;
    }
}

.cookie-banner{
    position:fixed;
    left:20px;
    right:20px;
    bottom:20px;

    z-index:1000;

    display:none;
}

.cookie-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;

    padding:18px 20px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(20px);

    border:1px solid #ececec;

    border-radius:20px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.08);
}

.cookie-content p{
    margin:0;

    color:#6e6e73;

    font-size:14px;

    line-height:1.5;
}

.cookie-content a{
    color:#111;
    font-weight:600;
}

.cookie-content button{
    flex-shrink:0;

    border:none;

    background:#111;

    color:#fff;

    padding:12px 22px;

    border-radius:12px;

    cursor:pointer;

    font-weight:700;
}

@media(max-width:600px){

    .cookie-banner{
        left:12px;
        right:12px;
        bottom:12px;
    }

    .cookie-content{
        flex-direction:column;
        align-items:stretch;
    }

    .cookie-content button{
        width:100%;
    }
}
