@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500&family=Righteous&display=swap');

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

body{
    font-family: 'Outfit', sans-serif;
    background: #C0C0C0;
}

.card{
    width: 900px;
    display: flex;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

}

.left{
    background-color: #6e1811;
    background-image: linear-gradient(327deg, #6e1811 0%, #CB2140 46%, #f76668 100%);
    height: 550px;
    width: 470px;
    border-radius: 20px;
}

.slider{
    background-color: rgb(240, 238, 235);
    padding: 0.7rem 1rem;
    font-size: 1.3rem;
    border-radius: 50%;
}

.slider-left{
    position: absolute;
    top: 45%;
    left: -1.5rem;
}

.slider-right{
    position: absolute;
    top: 43%;
    right: -1.5rem;
}

.wordmark{
	opacity: 0.2;
	transform: rotate(-90deg) scale(1.2);
	margin-left: -50px;
    margin-top: 150px;
}

.right{
    background-color: #0C1F2C;
    width: 650px;
    height: 450px;
    position: absolute;
    left: 30%;
    top: 10%;
    border-radius: 20px;
    display: flex;
}

.right img{
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
}

.productInfo{
    margin-left: 30%;
    padding: 3rem 0;
}

.productInfo h1{
    font-family: 'Righteous', cursive;
    letter-spacing: 2px;
    font-size: 2.2rem;
}

.productInfo h2{
    margin: 1rem 0;
    font-weight: 100;
    font-size: 1.7rem;
}

.info{
    display: flex;
}

.info h4{
    font-weight: 400;
}

.info1{
    padding: 2rem 1rem 2rem 0;
    border-right: 1px solid #CB2140;
}

.size{
    display: flex;
}

.size p{
    margin-top: 0.5rem;
    padding: 10px;
}

.size p.active{
    padding: 8px 15px;
    border: 2px solid #CB2140;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.info2{
    margin-left: 1.5rem;
}

h3{
	width: 80px;
	height: 80px;
	font-weight: 400;
	line-height: 90px;
	font-size: 1.5rem;
	margin-left: 30px;
	position: relative;
}

h3::after{
	content: "";
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	border: 5px solid #CB2140;
	border-top-color: transparent;
	transform: rotate(-45deg) translate(-50%,-50%);
}

.info2 h4{
    margin-top: 20px;
}    

.buttons{
    margin-top: 30px;
}

.cart{
    padding: 0.9rem 1.5rem;
    border-radius: 2rem;
    background-color: #CB2140;
    outline: none;
    border: none;
    margin-right: 2rem;
    font-weight: bold;
}

i{
    color: #CB2140;
}

.wishlist{
    text-decoration: none;
    margin-left: 5px;
    color: rgb(146, 145, 145);
}