.variation-swatches-wrapper {
    margin-bottom: 10px;
}

.attribute-label {
    display: block;
    margin-bottom: 5px;
    color: #4C4C4C;
    font-size: 14px;

}

.variation-swatches {
    display: flex;
    flex-wrap: wrap;
}

.swatch {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 0 calc(33.33% - 10px);
    height: 45px;
    margin-right: 5px;
    margin-bottom: 5px;
    border: 1px solid #ccc;
    cursor: pointer;
    font-size: 14px;
    text-transform: uppercase;
    padding: 5px;
    position: relative;
  }

.swatch.selected {
    border: 2px solid #272727; 
}

.swatch.out-of-stock::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent calc(50% - 1px), #ccc, transparent calc(50% + 1px));
}

.quantity {
    display: none;
}