body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #f4f4f4;
}

header {
    background-color: #333;
    color: white;
    padding: 1.5em 0;
}

.title {
    font-size: 2.5em;
    margin: 0;
}

.subheading {
    font-size: 1.5em;
    margin-top: 5px;
    color: #ddd;
}

main {
    margin: 20px;
}

#product-gallery {
    max-width: 1200px;
    margin: auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    justify-items: center;
    margin-top: 20px;
}

.product-box {
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.product-box img {
    width: 150px;
    height: 150px;
    border-radius: 5px;
}

.product-box:hover {
    transform: scale(1.05);
}

.color-label {
    font-size: 1em;
    font-weight: bold;
    margin-top: 5px;
}

span {
    color: #555;
}
#review-section {
    padding: 30px;
    background: #fff;
    margin-top: 40px;
}
#reviewText {
    width: 80%;
    height: 100px;
    padding: 10px;
    border-radius: 5px;
}
#reviewsContainer {
    margin-top: 20px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
