:root{
    --red:#C1121F;
    --bg:#050505;
    --panel:#0B0B0B;
    --panel2:#111111;
    --white:#FFFFFF;
    --soft:#CFCFCF;
    --line:rgba(255,255,255,.08);
    --radius:24px;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Montserrat',sans-serif;
    background:
    linear-gradient(180deg,rgba(193,18,31,.08),transparent 15%),
    linear-gradient(180deg,#070707,#000);
    color:var(--white);
    padding:24px;
}

/* SCROLL */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-thumb{
    background:var(--red);
    border-radius:50px;
}

/* ESTRUTURA */

.page{
    max-width:1400px;
    margin:auto;
}

.top-line,
.bottom-line{
    height:10px;
    background:var(--red);
    border-radius:999px;
}

.top-line{
    margin-bottom:18px;
}

.bottom-line{
    margin-top:18px;
}

.shell{
    background:#050505;
    border:1px solid var(--line);
    border-radius:30px;
    overflow:hidden;
}

/* NAVBAR */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:22px 30px;
    border-bottom:1px solid var(--line);
    background:#050505;
}

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-box img{
    height:70px;
}

.brand-text small{
    color:#8f8f8f;
    letter-spacing:3px;
    text-transform:uppercase;
}

.brand-text h1{
    font-family:'Bebas Neue',sans-serif;
    font-size:2rem;
    letter-spacing:2px;
}

.menu{
    display:flex;
    gap:10px;
}

.menu a{
    color:white;
    text-decoration:none;
    padding:12px 18px;
    border-radius:50px;
    transition:.3s;
}

.menu a:hover{
    background:#111;
}

.menu .active{
    background:var(--red);
}

/* HERO */

.hero-loja{
    padding:45px 40px 35px;
    text-align:center;
}

.eyebrow{
    color:var(--red);
    text-transform:uppercase;
    letter-spacing:4px;
    font-size:.9rem;
}

.hero-content h2{
    margin-top:10px;
    font-size:3.8rem;
    font-family:'Bebas Neue',sans-serif;
    letter-spacing:2px;
    line-height:1;
}

.hero-content h2 span{
    color:var(--red);
}

.hero-content p{
    margin-top:15px;
    color:#e0e0e0;
    font-size:1rem;
}

/* PESQUISA */

.search-area{
    display:flex;
    gap:15px;
    padding:0 30px 25px;
}

.search-area input,
.search-area select{
    flex:1;
    background:#0b0b0b;
    color:white;
    border:1px solid var(--line);
    border-radius:14px;
    padding:15px;
    outline:none;
}

.search-area input:focus,
.search-area select:focus{
    border-color:var(--red);
}

/* PRODUTOS */

.products-grid{
    padding:0 30px 40px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

/* CARD */

.product-card{
    background:
    linear-gradient(
    180deg,
    rgba(18,18,18,.98),
    rgba(7,7,7,.98)
    );

    border:1px solid rgba(255,255,255,.06);
    border-radius:24px;
    overflow:hidden;
    position:relative;

    display:flex;
    flex-direction:column;

    transition:.3s;
}

.product-card:hover{
    transform:translateY(-8px);
    border-color:rgba(193,18,31,.5);

    box-shadow:
    0 15px 40px rgba(193,18,31,.18);
}

.discount{
    position:absolute;
    top:15px;
    right:15px;

    background:var(--red);
    color:white;

    padding:6px 10px;
    border-radius:10px;

    font-size:.75rem;
    font-weight:700;
}

.product-card img{
    width:100%;
    height:240px;
    object-fit:contain;
    padding:25px;
}


.product-info{
    padding:20px;
}

.category{
    display:inline-block;

    background:rgba(193,18,31,.18);
    color:#ff5d6a;

    border:1px solid rgba(193,18,31,.4);

    padding:8px 14px;
    border-radius:50px;

    font-size:.8rem;
    font-weight:800;
    letter-spacing:1px;

    margin-bottom:15px;
}

.product-info h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:2rem;
    letter-spacing:1px;
    margin-bottom:10px;
}

.product-info p{
    color:#e2e2e2;
    font-size:.95rem;
    line-height:1.6;
    min-height:60px;
}


.price-box{
    margin-top:15px;
    display:flex;
    flex-direction:column;
    gap:5px;
}

.old-price{
    color:#777;
    text-decoration:line-through;
    font-size:.85rem;
}

.price{
    color:var(--red);
    font-size:1.7rem;
    font-weight:700;
}

.product-info button{
    width:100%;
    margin-top:18px;

    background:var(--red);
    color:white;

    border:none;
    border-radius:14px;

    padding:14px;
    cursor:pointer;

    font-weight:700;
    transition:.3s;
}

.product-info button:hover{
    filter:brightness(1.1);
}

/* CARRINHO */

.cart-sidebar{
    margin:40px 30px;

    background:#0B0B0B;
    border:1px solid var(--line);

    border-radius:24px;
    padding:25px;
}

.cart-sidebar h3{
    font-family:'Bebas Neue',sans-serif;
    font-size:2rem;
    margin-bottom:20px;
}

.cart-items{
    min-height:120px;
    color:#a5a5a5;
}

.cart-footer{
    border-top:1px solid var(--line);
    padding-top:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cart-footer strong{
    font-size:1.3rem;
}

.cart-footer button{
    background:var(--red);
    border:none;
    color:white;

    padding:12px 20px;
    border-radius:12px;

    cursor:pointer;
}

/* FOOTER */

.footer{
    padding:25px;
    border-top:1px solid var(--line);

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    color:#999;
}

.footer img{
    height:28px;
    width:auto;
}

/* RESPONSIVO */

@media(max-width:1400px){

.products-grid{
    padding:0 30px 40px;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:28px;
}

}

@media(max-width:1100px){

    .products-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:800px){

    .products-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .search-area{
        flex-direction:column;
    }

}

@media(max-width:550px){

    .products-grid{
        grid-template-columns:1fr;
    }

    .hero-content h2{
        font-size:3rem;
    }

}
