/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fffaf2;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

/* Card */
.card {
    background: #ffffff; /* Light Peach */
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    text-align: center;
    width: 90%;
    max-width: 400px;
}

/* Title */
.title {
    font-size: 24px;
    font-weight: bold;
    color: #444;
    margin-bottom: 15px;
}

/* Image */
.image-container {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

#product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    display: block;
}

/* Loader */
.loader {
    width: 40px;
    height: 40px;
    border: 5px solid #ddd;
    border-top: 5px solid #ff9f68;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.hidden {
    display: none;
}

/* Details */
.details {
    text-align: left;
    font-size: 16px;
    background: rgba(249, 224, 198, 0.6);
    padding: 12px;
    border-radius: 8px;
}

.details p {
    margin: 5px 0;
    font-weight: 500;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
    margin-top: 10px;
}

/* Loader Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}