body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.product-images {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-basis: 50%;
    padding: 20px;
}

.thumbnail-images {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail:hover {
    border-color: #ff9900;
}

.main-image img {
    max-width: 100%;
    height: auto;
    border: 2px solid #ddd;
    padding: 10px;
}

.product-details {
    flex-basis: 50%;
    padding: 20px;
    text-align: left;
}

.product-title {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.5em;
    color: #b12704;
    margin-bottom: 10px;
}

.mrp {
    text-decoration: line-through;
    color: #888;
    margin-left: 10px;
}

.buy-now-btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #ff9900;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.buy-now-btn:hover {
    background-color: #e68a00;
}

.product-description {
    font-size: 1.1em;
    color: #555;
    line-height: 1.6;
}
.containers {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    font-weight: bold;
}

input[type="text"],
input[type="number"],
textarea,
input[type="file"],
button {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

textarea {
    resize: vertical;
}

button {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
}

button:hover {
    background-color: #0056b3;
}

.preview-images img {
    max-width: 100px;
    height: auto;
    margin-right: 10px;
    display: inline-block;
}
/* Add a placeholder or loading spinner for lazy-loaded images */
.lazy {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-loaded {
    opacity: 1;
}


