body{background:#f5f6f8}.card{border:0;border-radius:16px}.address{font-family:monospace;overflow-wrap:anywhere;background:#eee;padding:16px;border-radius:12px}
.product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
}

.card {
    overflow: hidden;
}

.product-image {
    transition: transform 0.25s ease;
}

.card:hover .product-image {
    transform: scale(1.03);
}


.product-main-image-container {
    width: 100%;
    background: white;
    border-radius: 18px;
    overflow: hidden;
}

.product-main-image {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: contain;
    padding: 20px;
}

.product-thumbnails {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.product-thumbnail-button {
    width: 90px;
    height: 90px;

    padding: 5px;

    border: 2px solid transparent;
    border-radius: 12px;

    background: white;

    cursor: pointer;

    overflow: hidden;
}

.product-thumbnail-button:hover,
.product-thumbnail-button.active {
    border-color: #333;
}

.product-thumbnail {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 7px;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
}

.product-description {
    white-space: pre-line;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 768px) {

    .product-main-image {
        height: 350px;
    }

    .product-thumbnail-button {
        width: 70px;
        height: 70px;
    }

}