
@import url('https://fonts.googleapis.com/css2?family=Playwrite+HR:wght@100..400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,300,500,700');
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:400,700');
@import url('https://fonts.googleapis.com/css2?family=Berkshire+Swash&display=swap');

body{
    margin: 0;
    padding: 0;
    
}




header {
    background-image: url("img/header-background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    height: 600px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: baseline;


}


.title-header {
    font-size: 40px;
    background-color: aliceblue;
    align-content: center;
    font-family: "Playwrite HR", cursive;
    height: 100px;
    padding: 50px;
    opacity: 0.7;
}

h1{
    background-color:#ffffff80;
    padding: 70px;

}

.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 70px auto;

}

.card {
    flex-basis: 350px;
    margin: 0 auto 70px;
    border: 1px solid grey;
    border-radius: 5px;
    display:flex;
    flex-direction:column;
    background-color: antiquewhite;
}
.image-div{
    padding: 5px;
    margin: 5px;
}
.img-product{
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px 5px 0 0;

}

.product-bagage {
    width: 20%;
    background-color: orange;
    color: white;
    align-self: flex-end;
    border-radius: 5px;
    margin: -10px -10px -19px;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    z-index: 1;

}

h2 {
    font-size: 30px;
    text-align: center;
}
h3 {
    font-size: 20px;
    text-align: left;
    padding: 20px;
}
p {
    padding: 20px;
}

.product-price {
    font-size: large;
    font-weight: 700;
    align-self: flex-end;}

.product-price span {
    font-family: "Berkshire Swash", serif;
    font-size: 35px;
    padding: 10px;

}

.product-price span:before{ content:'$'; }
/*.product-price span:after{ content: '.00'; }*/

.product-badge{
    width: 20%;
    background-color: orange;
    color: white;
    align-self: flex-end;
    border-radius: 5px;
    margin: -10px -10px -19px;
    padding: 5px;
    font-weight: bold;
    text-align: center;
    z-index: 1;

}

.product-options {
    display: flex;
    justify-content: space-around;
    
    
}

.product-options .option {
        display: flex;
        flex-direction: column;
        width: calc(45%);
    
    }
.number-input {
            display: inline-flex;
            align-items: center;
        }
.number-input button {
            background-color: #007bff;
            border: none;
            color: white;
            width: 40px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
        }
        
.number-input button:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }
        
.number-input .minus {
            border-radius: 5px 0 0 5px;
        }
        
.number-input .plus {
            border-radius: 0 5px 5px 0;
        }
        
.number-input input[type=number] {
            border: 1px solid #ddd;
            border-width: 1px 0;
            text-align: center;
            width: 50px;
            height: 30px;
            font-size: 16px;
            margin: 0 -1px;
        }
.button-shop {
        cursor: pointer; 
        padding: 10px;
        margin-top: 40px; 
        background-color: #f39c12;
        border-radius: 5px; 
        border: none; 
        color: white;  
        font-weight: bold; 
        font-size: 20px;
        
        
}
.product-details {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-bottom: 10px;
    width: 90%;
}

span {
    font-size: 25px;
}