/* ===================================
   HERO
=================================== */

#hero{

    padding:90px 20px 100px;

    display:flex;

    justify-content:center;

}

.hero-box{

    width:100%;
    max-width:850px;

    padding:40px 30px;

    text-align:center;

    background:var(--surface);

    border:4px solid var(--text);

    box-shadow:8px 8px 0 var(--secondary);

}

.hero-box h1{

    color:var(--text);

    font-family:"Press Start 2P",cursive;

    font-size:20px;

    line-height:1.8;

}

.hero-box p{

    max-width:500px;

    margin:30px auto;

    color:#4A4A63;

    line-height:1.8;

    font-size:15px;

}

#shop-now{

    padding:15px 30px;

    background:var(--primary);

    color:var(--white);

    border:3px solid var(--text);

    box-shadow:4px 4px 0 var(--text);

    font-family:"Press Start 2P",cursive;

    font-size:12px;

}

#shop-now:active{

    transform:translate(3px,3px);

    box-shadow:none;

}

/* ===================================
   PRODUCTS
=================================== */

#featured{

    padding:80px 20px 100px;

}

#featured h2{

    margin-bottom:40px;

    text-align:center;

    color:var(--secondary);

    font-family:"Press Start 2P",cursive;

    font-size:14px;

}

#product-list{

    max-width:1100px;

    margin:auto;

    display:grid;

    gap:30px;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

}

.product-card{

    overflow:hidden;

    background:var(--surface);

    border:4px solid var(--primary);

    box-shadow:6px 6px 0 #7A1F27;

    transition:.2s;

}

.product-card:hover{

    transform:translateY(-6px);

}

.product-card img{

    width:100%;

    aspect-ratio:1;

    object-fit:cover;

    background:#ddd;

}

.product-info{

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:18px;

}

.product-info h3{

    color:var(--text);

    font-size:15px;

}

.product-info span{

    color:var(--primary);

    font-weight:bold;

}

.add-cart{

    width:calc(100% - 36px);

    height:46px;

    margin:0 18px 18px;

    background:var(--primary);

    color:var(--white);

    border:3px solid var(--text);

    box-shadow:4px 4px 0 var(--text);

    font-family:"Press Start 2P",cursive;

    font-size:11px;

}