* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

#card-section{
    width: 100%;
    height: 100vh;
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center; 
}

.card{
    background-color: white;
    width: 500px;
    height: 800px;
    border-radius: 30px;
   
}

.header{
    height: 370px;
    background: linear-gradient(#E6A345, #D6682D, #D65031, #E82525);
    position: relative;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.header .nikelogo img{
    width: 100px;
    position: absolute;
    left: 30px;
    
}

.header .head-h2 h2{
    position: absolute;
    left: 30px;
    top: 90px;
    font-size: 26px;
    color: white;
}

.header .head-title p{
    position: absolute;
    left: 30px;
    top: 130px;
    font-size: 16px;
    color: white;
}

.image-shoes img{
    width: 300px;
    position: absolute;
    left: 350px; 
    top: 140px;
    z-index: 1;
}

.fast{
    display: flex;
    justify-content: center;
    position: absolute; 
    top: 220px; 
    width: 100%;
    font-size: 90px;
    color: rgba(0, 0, 0, 0.2);
}



.main{
    position: relative; 
    padding: 20px; 
}

.main-title{
    position: relative;
}

.main-title .name h2{
    font-size: 22px;
}

.main-title .description p{
    font-size: 16px;
    margin-top: 5px;
}


.main-title .new {
    background-color: rgb(141, 232, 50);
    font-size: 14px;
    border-radius: 5px;
    padding: 5px 12px;
    position: absolute;
    right: 0;
    top: 0;
    color: white;
    cursor: pointer;
    z-index: 9999; 
}

.main-title .new:hover {
    background-color:rgb(240, 234, 234);
    color: black;
}

.image-shoes img{
    pointer-events: none; 
}


.staricon {
    margin-top: 15px;
}


.size{
 position: relative;
 top: 35px;
}

.size-number{
    display: flex;
    gap: 50px;
    position: relative;
    top: 80px;
    right: 7px;
}


.size-number p{
    padding: 10px ;
    border-radius: 50%;
    transition: 0.3s;
}

.size-number p:hover{
    background-color:red;
    color: white;
    cursor: pointer;
}


.footer{
    margin-top: 40px;
    padding: 20px;
}
.footer .color-text {
position: relative;
top: 60px;
font-weight: bold;
}
.footer .color{
    position: relative;
    top: 100px;
    display: flex;
    gap: 10px;
   
}
.footer .color .red{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: red;
    cursor: pointer;
    transition: 0.3s;
}

.footer .color .green{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: green;
    cursor: pointer;
    transition: 0.3s;
}
.footer .color .red{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: red;
    cursor: pointer;
    transition: 0.3s;
}
.footer .color .yellow{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: yellow;
    cursor: pointer;
    transition: 0.3s;
}
.price{
    padding: 10px;
    font-size: 24px;
    background-color: rgb(141, 232, 50);
    border-radius: 10px;
    color: white;
    width: 160px;
    height: 50px;
    position: relative;
    left: 350px;
    top: 70px;
}
.price:hover{
    background-color:rgb(240, 234, 234);
    color: black;
    cursor: pointer;
}
.price .usd{
    display: flex;
    align-items: center;
}
.price .dollar{
  position: relative;
  bottom: 25px;
  left:50px;
  font-weight: bold;
}