/* PRODUCT SWATCHES */

.psm-wrap {
    display: flex;
    gap: 6px;
    margin-top: 8px;
    position: absolute;
    bottom: 0;
    margin-left: 13px;
}

.psm-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #ddd;
    cursor: pointer;
    background-size: cover;
    transition: transform .2s;
    position: relative;
}

.psm-dot:hover,
.psm-dot.active {
    border: 1px solid #181818;
}

.psm-dot:hover::after,
.psm-dot.active::after {
    width: 20px;
    height: 20px;
    content: "";
    position: absolute;
    left: 1px;
    top: 1px;
    border: 2px solid #fff;
    background: transparent;
    border-radius: 50%;
}

.psm-more {
    font-size: 14px;
    color: #777;
    align-self: center;
}
