@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Bree+Serif&family=EB+Garamond:ital,wght@0,500;1,800&display=swap');

/* body {
    background: #DFC2F2;
    background-image: linear-gradient(to right, #ffffb3, #ffe6e6);
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    font-family: Arial, sans-serif;
} */

/* Container Styling */
#container, #container-second {
    box-shadow: 0 15px 30px 1px grey;
    background: rgba(255, 255, 255, 0.90);
    text-align: center;
    border-radius: 5px;
    overflow: hidden;
    margin: 2em auto;
    padding: 20px;
    width: 90%;
    max-width: 1237px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
	margin-top: 125px;
}

#container-second {
   
	display: flex;
    flex-direction: row-reverse;
}

/* Hero Section */
#mu-hero {
    display: block;
    padding: 20px 0;
    width: 100%;
	padding-top: 69px;
}

.mu-author-sign {
    height: 70px;
    width: 100px;
}

/* Product Details */
.product-details {
    text-align: left;
    padding: 20px;
    width: 100%;
    flex: 1 1 55%;
}

#container .product-details h1 {
    font-size: 24px;
    color: #344055;
    margin: 0 0 20px;
}

.hint-star {
    display: inline-block;
    margin-left: 0.5em;
    color: gold;
}

/* Responsive Button */
.control {
    margin-top: 20px;
}

.btn {
    transition: 0.3s linear;
    background: #809fff;
    border-radius: 5px;
    cursor: pointer;
    border: none;
    color: #eee;
    padding: 10px 20px;
    font-size: 1em;
}

.btn:hover {
    background: #1a66ff;
}

.btn span {
    display: inline-block;
    padding: 10px;
    font-size: 1.2em;
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 45%;
    flex: 1 1 45%;
    margin: 10px 0;
}

.product-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

/* Info Section */
.info {
    background: rgba(27, 26, 26, 0.9);
    font-family: 'Bree Serif', serif;
    color: #FFF;
    line-height: 1.8;
    text-align: left;
    font-size: 105%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(-100%);
    transition: all 0.3s ease-out;
}

.info h2 {
    text-align: center;
}

.info ul li {
    transition: 0.3s ease;
}

.info ul li:hover {
    transform: translateX(50px) scale(1.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    #container, #container-second {
        flex-direction: column;
        padding: 10px;
    }

    .product-details {
        width: 100%;
    }

    .product-image {
        max-width: 100%;
    }

    .btn {
        font-size: 0.9em;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {
    #container, #container-second {
        margin: 1em auto;
    }

    .product-details h1 {
        font-size: 20px;
    }

    .btn {
        font-size: 0.8em;
    }
}
