*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial;
}

body{
    background:#f4f4f4;
}
h4{
    font-weight: 100;
}


/* HEADER */

.header{
    background:black;
    color:white;
    padding:15px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
.logo img{
    
    border-radius: 20px;
    height:70px;
    max-width: 100%;
    }



.menu a{
    color:white;
    text-decoration:none;
    margin-left:15px;
}



/* BANNER */

.banner{
    background:orange;
    text-align:center;
    padding:60px 20px;
}


/* PRODUCTS */

.products{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    padding:20px;
}

.product{
    background:white;
    padding:15px;
    text-align:center;
    border-radius:6px;
}

.product img{
    width:100%;
}


/* FOOTER */

.footer{
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;

    background:#111;
    color:white;
    text-align:center;
    padding:8.6px;
}


/* TABLET */

@media (min-width:768px){

.products{
    grid-template-columns:1fr 1fr;
}

}


/* DESKTOP */

@media (min-width:1024px){

    .products{
        width:90%;
        margin:auto;
        padding:40px 0;
    
        display:grid;
        grid-template-columns: repeat(4,1fr);
        gap:25px;
    }
}
    
    .products{
        flex: 1;
        background:#f5f5f5;
        padding:20px;
        border: radius 15px;
        transition:0.3s;
    }
    
    .product img{
        width:100%;
        display:block;
    }
    
    .product h3{
        font-size:16px;
        margin:10px 0;
    }
    
    .product p{
        color:gray;
        font-size:14px;
    }
    
    .product a{
        display:inline-block;
        margin-top:8px;
        text-decoration:none;
        color:black;
        font-weight:bold;
    }
    
    .product:hover{
        transform:translateY(-5px);
    }
    .product-detail{
        text-align: center;
        margin-left: auto;
    }
    
    .info{
    flex:1;
    }
    
    .about{
    padding:40px;
    text-align:center;
    }
    
    .contact{
    padding:40px;
    }
    
    form{
    display:flex;
    flex-direction:column;
    gap:15px;
    max-width:500px;
    }
    
    input, textarea{
    padding:10px;
    }
    
    button{
    padding:10px;
    background:orange;
    border:none;
    cursor:pointer;
    border-radius: 10px;
    }
    .product-detail{
        width:90%;
        margin:auto;
        padding:50px 0;
        
        display:flex;
        gap:40px;
        align-items:center;
        }
        
        .detail-img{
        flex:1;
        }
        
        .detail-img img{
        width:100%;
        border-radius:10px;
        }
        
        .detail-info{
        flex:1;
        }
        
        .detail-info h2{
        font-size:28px;
        margin-bottom:10px;
        }
        
        .type{
        color:gray;
        margin-bottom:15px;
        }
        
        .desc{
        line-height:1.6;
        margin-bottom:20px;
        }
        
        .btn{
        display:inline-block;
        padding:10px 20px;
        background:black;
        color:white;
        text-decoration:none;
        border-radius:5px;
        }
        .order{
            width:90%;
            max-width:500px;
            margin:60px auto;
            background:#f5f5f5;
            padding:30px;
            border-radius:10px;
            box-shadow:0 5px 15px rgba(0,0,0,0.1);
            }
            
            .order h2{
            text-align:center;
            margin-bottom:25px;
            }
            
            .order-form{
            display:flex;
            flex-direction:column;
            gap:10px;
            }
            
            .order-form label{
            font-weight:600;
            }
            
            .order-form input,
            .order-form select{
            padding:10px;
            border:1px solid #ccc;
            border-radius:5px;
            }
            
            .order-form button{
            margin-top:15px;
            padding:12px;
            background:black;
            color:white;
            border:none;
            border-radius:5px;
            cursor:pointer;
            font-size:16px;
            }
            
            .order-form button:hover{
            background:#333;
            }
        
            .submit{
            padding:10px;
            background:green;
            color:white;
            border:none;
            border-radius:5px;
            }
    
    /* mobile */
    
    @media(max-width:768px){
       
    
    .header{
    flex-direction:column;
    gap:10px;
    }
    
    .menu{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    }
    
    .product-detail{
    flex-direction:column;
    }
    
}