

table{
    z-index: 10;
    border: 1px solid #FEA53D;
    width: 100%;
}

table thead{
    background-color: #FEA53D;
}

table tr{
    border-bottom: 1px solid #FEA53D;
}

h1{
    z-index: 10;
}

table tfoot tr{
    text-align: center;
    
}

table thead th{
    height: 70px;
    font-size: 20px;
}

table tbody td{
    height: 80px;
    padding: 20px;
    font-size: 18px;
}

table tfoot td{
    height: 80px;
    padding: 20px;
}

button{
    background-color: transparent;
    border: 0;
}

table i{
    padding: 15px 17px;
    border-radius: 50%;
    transition: 0.3s;
    color: #fff;
}

table i:hover{
    background-color: #FEA53D;
    color: #fff;
}

.picture{
    height: 150px;
    display: flex;
    align-items: center;
}

.add-to-cart-section img{
    margin-right: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.btn-order{
    
    border: none;
    border-radius: 10px;
    background-color: #FEA53D;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    z-index: 10;
    margin-top: 15px;
    transition: 0.3s;
}

.btn-order:hover{
    background-color: #FFE193;
}

.add-to-cart{
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 100;
}
.add-to-cart h1{
    font-size: 30px;
}

.btn-container{
    width: 450px;
    justify-content: space-between;
    display: flex;
    align-items: center;
}

input[type=number]{
    width:39px;
    font-size: 16px;
    outline: 0;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button {
  opacity: 1;
}

/*hero banner */
.hero {
    width: 100%;
    height: 50vh;
    background-color: gray;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}

.hero .overlay {
    width: 100%;
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
}

.hero .hero-content {
    width: 100%;
    height: 50vh;
    position: absolute;
    z-index: 99;
}

.hero .hero-content .content {
    margin-top: 150px;
    text-align: center;
    align-items: center;

}

.hero .hero-content .link {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;


}

.hero .hero-content a {
    text-decoration: none;
    color: white;
}

.hero .hero-content .link u {
    background-color: transparent;
    color: #FEA53D;
}

.hero .hero-content a:hover {
    color: #FEA53D;
}

.hero .hero-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: #FEA53D;

}

.hero .hero-content .content p {
    font-size: 25px;
    width: 600;
    margin-top: -20px;
    margin-left: 20px;
    color: #ddd;

}