/* General Styles */


/* Layout Styles */
.product-layout {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/*

/* Content Wrapper on the right */
.content-wrapper {
    flex: 1;
    max-width: ;
}



.content5-wrapper {
    flex: 1;
    max-width: ;
}

.placeholder-text {
    margin-top: 20px;
}

.placeholder-text .line {
    height: 20px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    width: 80%;
    animation: pulse 1.5s infinite;
}

.placeholder-text .line.short {
    width: 60%;
}













.placeholder-text5 .line {
    height: 20px;
    background-color: #f0f0f0;
    margin-bottom: 10px;
    width: 100%;
    animation: pulse 1.5s infinite;
}


.placeholder-text5 .line.short {
    width: 100%;
}

.placeholder-text5 .line.short {
    width: 100%;
}















.hidden {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.visible {
    opacity: 1;
}




/* Pulse animation for placeholders */
@keyframes pulse {
    0% {
        background-color: #f0f0f0;
    }
    50% {
        background-color: #e0e0e0;
    }
    100% {
        background-color: #f0f0f0;
    }
}






















/* Loading Overlay */
.loading-overlay {
    position: absolute; /* Overlay on top of the content */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Center it */
    text-align: center;
    z-index: 10; /* Ensure it's on top */
}

/* Circular Loading Spinner */
.loading-spinner {
    border: 4px solid rgba(0, 0, 0, 0.1); /* Light grey */
    border-top: 4px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto; /* Center the spinner */
}

/* Loading Text */
.loading-text {
    font-size: 16px;
    color: #555; /* Neutral grey */
    margin-top: 10px;
}

/* Spinner Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}







