/* Importing Poppins font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    /* border: 1px solid red; */
}

body {
    height: 100vh;
    width: 100%;
    /* background: #e6e6e6; */
    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(#fff, #ebdcff);
}

::selection {
    background: #fee6eb;
}

body:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: circle(55% at right 30%);
    background: #e6e6e6;
    background-image: linear-gradient(0deg, #FB66FD 10%, #5484FD 100%);
}


.container {
    display: flex;
    max-width: 820px;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    justify-content: space-between;
    position: relative;
}

.container::before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    clip-path: circle(65% at right 35%);
    background: linear-gradient(135deg, #FB66FD 10%, #5484FD 100%);
}

.container .box.one {
    padding: 35px 15px 0 35px;
    margin-right: 10px;
}

.box.one .details .topic {
    font-size: 30px;
    font-weight: 500;
    color: #CB282D;
}

.box.one .details p {
    color: #737373;
    font-size: 15px;
    font-weight: 500;
}

.box.one .details .rating {
    color: #ffe234;
}

.box.one .details .price-box {
    margin-top: 16px;
}

.price-box .discount {
    font-size: 20px;
    color: #737373;
    text-decoration: line-through;
    margin-left: 0;
}

.price-box .discount::before {
    display: none;
}

.details .price-box .price {
    color: #ffa534;
    font-size: 35px;
}

.box.one .button1 {
margin: 55px 0 50px 0;
}

.box.one .button1 button {
    outline: none;
    color: #fff;
    border-radius: 6px;
    font-size: 18px;
    border: none;
    font-weight: 500;
    padding: 8px 16px;
    background-color: #CB282D;
    cursor: pointer;
    transition: all 0.3s ease;
}

.box.one .button1 button:hover {
    transform: scale(0.90);
}

.container .box.two .image-box {
    position: relative;
    text-align: right;
    right: 0;
    bottom: 32px;
}

.container .box.two .image {
    height: 340px;
    width: 440px;
}

.box.two .image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.09);
    transition: all 0.3s ease;
}

.box.two .image img:hover {
    transform: scale(1.14);
    transition: transform 0.3s ease;
}

.box.two .info {
    margin: 0 35px 0 0;
}

.box.two .info .brand {
    font-size: 47px;
    font-weight: 600;
    color: #ffe234;
}

.box.two .info .name {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}

.box.two .info .shipping {
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.box.two .info .button2 {
    margin: 17px 0;
}

.box.two .info .button2 button {
    outline: none;
    padding: 8px 16px;
    color: #fff;
    font-size: 15px;
    font-weight: 400;
    border-radius: 6px;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #fff;
    transition: all 0.3s ease;
}

.box.two .info .button2 button:hover {
    transform: scale(0.90);
}