table.variations {
    display: none !important;
}

.swatch-container {
    display: flex;
    flex-direction: column;
}

.swatch-size-container {
    margin-bottom: 15px;
}

.swatch-section-title {
    font-weight: bold;
    font-size: 16px;
}

.swatch-color-container {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.color-swatch {
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    cursor: pointer;
}

.color-swatch.active {
    border-bottom: 3px solid #000;
}

.color-swatch img {
    width: 100px;
    height: 100px;
    border-radius: 0px;
    object-fit: cover;
}

.color-swatch.disabled {
    opacity: 0.4;
    filter: grayscale(100%);
    /*cursor: not-allowed;
    poter-events: none;*/
    transition: 0.3s ease;
    position: relative;
}

.color-swatch.disabled::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 141%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.5);
    transform: rotate(45deg);
    transform-origin: left top;
    z-index: 2;
    pointer-events: none;
}

.color-swatch.disabled img {
    opacity: 0.6;
    filter: grayscale(100%) brightness(80%);
}

.swatch-color-name {
    font-size: 14px;
    margin-bottom: 10px;
    font-style: italic;
    color: #333;
}

.swatch-size-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50px, 1fr));
    gap: 10px;
    max-width: 400px;
}

.size-swatch {
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-weight: bold;
    background-color: white;
    cursor: pointer;
    position: relative;
    display: inline-block;
    overflow: hidden;
    font-size: 18px;
}

.size-swatch.active {
    background-color: #000;
    color: white;
    border-color: #000;
}

.size-swatch.disabled {
    background-color: #eee;
    color: #999;
    border-color: #ccc;
    cursor: not-allowed;
    position: relative;
}

.size-swatch.disabled::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 150%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.5);
    transform: rotate(45deg);
    transform-origin: top left;
    z-index: 2;
    pointer-events: none;
}