.product {
    padding: 6rem 0;
    text-align: center;
    background-color: #f1eeea;
}

.product h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.product-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}

.product-image {
    width: 40%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-details {
    width: 40%;
    text-align: left;
}

.product-logo {
    font-family: "Hasthon";
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.product-price {
    margin-bottom: 2rem;
}

.product-price p {
    font-size: 1.5rem;
    font-weight: bold;
}

.buy-button {
    margin-top: 1rem;
    display: inline-block;
}

.product-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 2rem;
}

.product-gallery img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-gallery img:hover {
    border-color: #333;
}

.product-gallery img.selected {
    border: 2px solid #333;
}

/* Media Queries */
@media (max-width: 992px) {
    .product h2 {
        font-size: 2.5rem;
    }

    .product-showcase {
        flex-direction: column;
    }

    .product-image,
    .product-details {
        width: 90%;
        max-width: 500px;
    }
}