.add-product-hero{
    padding: 50px 20px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.add-product-hero > div{
    width: 50%;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.add-product-hero > div > p{
    font-size: 20px;
    line-height: 30px;
}

.add-product-hero > div > h1{
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 60px;
}

.add-product-hero > form{
    width: 50%;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
}

.add-product-hero > form > div{
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}

.add-product-hero > form > div:nth-child(4){
    align-items: center;
}

.add-product-hero > form > div > label{
    padding-bottom: 10px;
    font-size: 16px;
}

.add-product-hero > form > div > input{
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #CFCFCF;
    font-size: 16px;
}

.add-product-hero > form > div > input:focus{
    outline: none;
}

.add-product-hero > form > div > textarea{
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
    resize: vertical;
    font-size: 16px;
}

.add-product-hero > form > div > textarea:focus{
    outline: none;
}

.add-product-hero > form > div:nth-child(3) > input{
    width: 100%;
    height: 100px;
    padding: 10px;
    border-radius: 10px;
    border: 1px dashed #CFCFCF;
    background-color: #fff;
}

.add-product-hero > form > div > button{
    text-decoration: none;
    border: none;
    background-color:#F97417;
    color: #fff;
    padding: 20px 50px;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
}

.add-product-hero > form > div > button > i{
    padding-left: 10px;
}

@media (max-width: 950px) {
    .add-product-hero{
        flex-direction: column;
    }

    .add-product-hero > form{
        width: 100%;
    }

    .add-product-hero > div{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .add-product-hero > div > h1{
        font-size: 45px;
    }
}

.add-product-cards-container{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;

    padding: 50px 20px;
}

.add-product-card{
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

    width: 300px;
}

.add-product-card-edit-pen{
    position: absolute;
    top: 20px;
    right: 20px;

    width: 35px;
    height: 35px;

    display: flex;
    justify-content: center;
    align-items: center;

    text-decoration: none;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    font-size: 20px;
}

.add-product-card > img{
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;

    height: 200px;
    width: 100%;
    object-fit: cover;
}

.add-product-card-content{
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 35px;

    width: 100%;

    background-color: #fff;
    border: 1px solid #C2C2C2;
    filter: drop-shadow(3px 4px 9px #00000017);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.add-product-card-title{
    font-size: 20px;
}

.add-product-card-description{
    padding-top: 20px;
    font-size: 14px;
}

.add-product-card-buttons{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 40px;
}

.add-product-card-buttons > a:nth-child(1){
    text-decoration: none;
    text-align: center;
    width: 100px;
    padding-top: 5px;
    padding-bottom: 5px;

    background-color: #F97417;
    border: 1px solid #F97417;
    color: #fff;
    border-radius: 5px;
}

.add-product-card-buttons > a:nth-child(2){
    text-decoration: none;
    text-align: center;
    width: 100px;
    padding-top: 5px;
    padding-bottom: 5px;

    background-color: transparent;
    border: 1px solid #000;
    color: #000;
    border-radius: 5px;

    transition: ease 0.5s all;
}

.add-product-card-buttons > a:nth-child(2):hover{
    background-color: #D2122E;
    border: 1px solid #D2122E;
    color: #fff;
}

@media (max-width: 340px) {
    .add-product-card{
        width: 100%;
    }

    .add-product-card-buttons{
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }

    .add-product-card-buttons > a:nth-child(1){
        margin-bottom: 15px;
    }
}