:root{
    --pink : #dd0285;   
}

#container{
    display:flex;
    flex-direction: column;
    gap:10px;
    padding: 10px 0;;
}

#container>div{
    width: 80%;
    margin:auto;
    padding: 5px;
    display: grid;
    gap:20px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#container>div:first-child{
    grid-template-columns: 1fr 3fr;
}
#top-section>div{
    padding: 5px;
}
#top-section>div:first-child{
    padding: 20px;
}
#top-section h2{
    text-transform: uppercase;
}
#top-section ul{
    margin-top: 20px;
    text-transform: capitalize;
    list-style: none;
    line-height: 2rem;
}
#container h2>img{
    width: 1.2rem;;
}
#container ul img{
    width: 1.5rem;
    padding-right: 10px;
}
#container>div>img,
#slider{
    width: 100%;
}
#top-section li {
    padding: 4px 20px;
    position: relative;
    margin-bottom: 10px;
    width: 100%;
    cursor:pointer;

  }
  #top-section li:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  }
#top-section:before {
    position: absolute;
    top: 0;
    left: 10px;
    font-family: FontAwesome;
    content: "";
    color: green;
  }


  #container>div:nth-child(3),
  #container>div:nth-child(7){
    gap:0;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
    row-gap: 10px;
  }

#container>div:nth-child(7) h2,
#container>div>p{
    font-size: 1rem;
    font-weight: 400;
    border-bottom: 2px solid var(--pink);
    width: fit-content;
    padding-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.productDiv{
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    text-align: center;
    border: 1px solid rgba(128, 128, 128, 0.295);
}
.productDiv>div{
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid transparent;
    border-right: 1px solid rgba(128, 128, 128, 0.212);
}
.productDiv>div:nth-child(5){
    border-right: none;
}

.productDiv>div:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border: 2px solid var(--pink);
}
.product>div>div{
    display: flex;
    justify-content: center;
    gap:10px;
}
.product>div>div>p:first-child{
    text-decoration: line-through;
    color: grey;
}
.product>div>div>p:nth-child(3){
    color: green;
    font-weight: bold ;
}
.productDiv img{
    width:100px;
    display: block;
    margin: auto;
}

.productDiv>div>div{
    display: flex;
    gap:10px;
    justify-content: center;
    margin: 10px;
}
.productDiv>div>div:first-child{
    flex-direction: column;
}


.productDiv button{
    border: none;
    padding: 0.2rem 1rem;
    border-radius: 5px;
    background-color: transparent;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    border: 1px solid pink

}


.productDiv button>img{
    width: 0.8rem;
}

.productDiv button:first-of-type{
    background-color: var(--pink);
    display: flex;
    gap:0.5rem;
    font-size: 1rem;
    padding: 0.2rem 1rem ;

}

#container>div:nth-child(4){
    grid-template-columns: repeat(2,1fr);
    box-shadow: none;
}

#container>div:nth-child(5){
    padding: 0;
    gap: 0;
}

#selection-div>div:first-child{
    display: grid;
    grid-template-columns: repeat(7,1fr);
    text-align: center;
    border: 1px solid rgba(128, 128, 128, 0.507);
}

#selection-div>div:first-child>div{
    padding:10px;
}


#selection-div>div>div>img{
    width: 50px;
    height: 50px;
}
.active,
#selection-div>div:first-child>div:hover{
    background-color: pink;
    color: white;
    cursor: pointer;
}

.non-active{
    background-color: transparent;
    color: black;
}

#container>div:nth-child(9){
    box-shadow: none;
    padding: 20px;
}

#container>div:nth-child(9)>p{
    background-color: transparent;
    box-shadow: none;
    text-transform: lowercase;
    text-align: justify;
    line-height: 1.5rem;
    border: none;
    letter-spacing: 0;
}
#intro>b{
    text-transform: capitalize;
    font-weight: 600;
}

#container>div:nth-child(9)>h5{
    color:var(--pink);
    font-weight: 400;
    cursor: pointer;
}

