
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
ul{
    list-style: none;
}
a{
    text-decoration: none;
    color: inherit;
}
:root{
    --main-color: #b7e587;
    --secondary-color: #c6ea9f;
    --opacity-color: #d5f0b7;
    --l-size : 2rem;
    --m-size : 1.25rem;
    --s-size : 1rem;
    --main-transition: 0.2s linear;
}
body{
    width: 100%;
    height: 100vh;
    font-family: sans-serif;
    font-size:1rem ;
}
.container{
    height: 100vh;
    padding: 0px 3em;
    background-image: url("images/Bg.jpg");
    background-position: center center;
    background-size: cover;
    background-color: #ffff;
    display: flex;
    flex-direction: column;
    
}
nav{
    width: 100%;
    height: fit-content;
    display: flex;
    justify-content: space-between;
    margin-top: 1em;
    align-items: anchor-center;
}
nav #logo{
    height: 2em;
    cursor: pointer;
}
nav .icons {
    display:flex ;
    gap: 1em;
}
nav .icons > img{
    width: 20px;
    cursor: pointer;
}

nav .classes  li{
    display: inline;
    padding:0px  1em;
    font-weight: bolder;
    font-size: 12px;
    text-transform: uppercase;
}

.header{
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 25px;
    display: flex;
    justify-content: space-between;

}
.header .productCard{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    max-width: 600px;
}
.header .productName{
    font-size: 40px;
    font-family: arial !important;
    color: #333333;
    display: flex;
    justify-self: center;
}
.header .productCard .mainPhoto{
    width: 29em;
    transform: rotate(345deg);
    position: relative;
    left: -26px;
    margin-top: 1em;
}
.header .productCard > p{
    font-size: 10px ;
    position: relative;
    bottom: -35px;
    line-height: 14px;
    text-align: center;
}
.header .infoCard{
    text-align: left;
}
.infoCard h2{
    font-size: 75px;
    position: relative;
    font-weight: 700;
    top: 50px;
    font-family: "Inter";
    line-height: 80px;
    margin-bottom: 20px;
}
article{
    margin-top: 55px;
    font-size: 10px;
    font-weight: 600;
}

article #tit-size{
    margin-bottom: 5px;
}
.box-size{
    display: flex;
    gap: 5px;
}
.box-size .sizes{
   display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d9f1bf;
    gap: 3px;
    width: 15px;
    height: 15px;
    margin-bottom: 10px;
    text-transform: uppercase;
    cursor: pointer;
}
.box-size .sizes:hover{
    background-color: #b7e587;
}
article{
    display: flex;
    flex-direction: column;
}
article #purchase{
    padding: 3px 7px;
    background-color: var(--main-color);
    border-radius: 5px  ;
    letter-spacing: 1px;
    width: fit-content;
    cursor: pointer;
}
article #purchase i{
    margin-left: 3px;
}
article #price{
    font-size: 25px;
    font-weight: bolder;
    margin: 10px 0px;
}
article #tit-color{
      margin-bottom: 5px;  
}
article .colors{
    display: flex;
    gap:5px;
}
article .colors > span{
    width:13px;
    aspect-ratio: 1;
    border-radius: 50%; cursor: pointer;
}
article .colors > span:nth-child(1){
    background-color: red;
}
article .colors > span:nth-child(2){
    background-color: blue;
}
article .colors > span:nth-child(3){
    background-color: goldenrod;
}
.shurtcutImg{
    display:flex;
    flex-direction: column;
    gap: 12px;
    align-self: center;
    cursor: pointer;
}
.shurtcutImg > div{
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #d3f0b1cc;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 3px;
}
.shurtcutImg > div:hover img{
    transform: scale(1.2);
    transition: var(--main-transition) ;
}
.shurtcutImg > div img{
    width: 42px;
        transition:var(--main-transition);
}
.social-icon{
    position: absolute;
    display: flex;
    right: 0px;
    bottom: 25px; 
}
.social-icon li{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    margin: 0px 2px;
    transition: var(--main-transition);
    cursor: pointer;
}
.social-icon li .fa-brands{
    font-size: 10px;
}
.social-icon li:hover{
    background-color: #c6ea9f;
    transition: var(--main-transition);
}

