.model-number {}

.price {
    color: #9E9E9E;
}

.price>span {
    font-size: 1.4em
}

.product-card {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-card .colorme-product-details {
    padding: 0.5em 0.2em;
}


.product-card .product-name {
    line-height: 1.4;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
}

.product-images .slider-container {
    position: relative;
    overflow: hidden;
}

.product-images .slider-track {
    display: flex;
    transition: transform 0.3s ease;
}

.product-images .slide {
    flex: 0 0 100%;
    user-select: none;
    aspect-ratio: 1 / 1;
    background: #fff;
}

.product-images .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.product-images .slider-button {
    border-radius: 3px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: transparent;
    width: 30px;
    height: 30px;
    padding: 0;
    font-size: 16px;
}

.product-images .slider-button.prev {
    left: 0;
}

.product-images .slider-button.next {
    right: 0;
}

.product-images:hover .slider-button.next,
.product-images:hover .slider-button.prev {
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
}

.product-images .thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    margin-top: 0.5em;
}

.product-images .thumbnail-item {
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.product-images .thumbnail-item.active {
    outline: solid 3px #a9a9a9;
}

.product-images .thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}