/* Container */
#product-details-container {
    padding: 60px 20px;
    background-color: #e0f7ff;
    /* playful pastel blue */
    min-height: 80vh;
}

/* Product Wrapper */
.product-details-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

/* Product Image */
.product-image-wrapper {
    flex: 1 1 300px;
    max-width: 400px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.2);
}

.product-image {
    width: 100%;
    object-fit: cover;
    border-radius: 25px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.product-image:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 119, 182, 0.3);
}

/* Product Info */
.product-info {
    flex: 1 1 300px;
    max-width: 500px;
    background: linear-gradient(145deg, #caf0f8, #d0f7ff);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.15);
    font-family: 'Comic Neue', 'Poppins', sans-serif;
}

/* Product Title */
.product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0077b6;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px #b3e0ff;
}

/* Attributes */
.product-attributes p {
    font-size: 1.2rem;
    margin: 10px 0;
    color: #023e8a;
}

/* Price */
.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0077b6;
    margin: 15px 0;
}

/* Buttons Container */
.product-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Buttons */
.book-btn,
.back-btn {
    padding: 20px 20px;
    min-width: 150px;
    text-align: center;
    font-weight: 700;
    font-size: 1.3rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 119, 182, 0.3);
    color: #fff;
}

/* Book Button */
.book-btn {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
}

.book-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.4);
}

/* Back Button */
.back-btn {
    background: linear-gradient(135deg, #90e0ef, #0077b6);
}

.back-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0, 119, 182, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-details-wrapper {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .product-details-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .product-image-wrapper,
    .product-info {
        max-width: 90%;
    }

    .product-title {
        font-size: 2rem;
    }

    .book-btn,
    .back-btn {
        width: 50%;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 1.5rem;
    }

    .product-attributes p {
        font-size: 1rem;
    }

    .book-btn,
    .back-btn {
        width: 80%;
        font-size: 1rem;
    }
}