/* Main Vierzeh Variation Swatches Styles */

/* -------------------------
 * 1. FORM & TABLE LAYOUT
 * ------------------------- */
.vierzeh-swatches form.cart {
    --list-spacing: var(--components-spacing, 15px);
}

.vierzeh-swatches form.cart table.variations {
    margin-bottom: var(--summary-spacing, 20px);
}

.vierzeh-swatches form.cart table.variations,
.vierzeh-swatches form.cart table.variations tbody {
    display: block;
}

.vierzeh-swatches form.cart tr {
    display: flex;
}

@media(min-width: 1025px) {
    .vierzeh-swatches form.cart tr {
        flex-wrap: nowrap;
    }
}

.vierzeh-swatches form.cart tr:only-child,
.vierzeh-swatches form.cart tr:last-child {
    --list-spacing: 0px;
}

.vierzeh-swatches form.cart tr.--label-s {
    flex-wrap: wrap;
}

.vierzeh-swatches form.cart tr.--label-s th,
.vierzeh-swatches form.cart tr.--label-s td {
    flex-basis: 100%;
}

@media(min-width: 1025px) {
    .vierzeh-swatches form.cart tr.--label-i {
        flex-wrap: nowrap !important;
        --vari-attr-label-w: 100px;
    }
}

.vierzeh-swatches form.cart :is(th.label,td.label) .__name {
    font-size: 12px;
    color: var(--bs-gray-600);
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 .8em;
}

.vierzeh-swatches form.cart td.value {
    flex-grow: 1;
}

.vierzeh-swatches form.cart .reset_variations,
.vierzeh-swatches form.cart .vierzeh-resetVariations {
    font-size: 13px;
    text-decoration: underline;
    margin-top: 15px;
    display: none;
}

.vierzeh-swatches form.cart .reset_variations:hover,
.vierzeh-swatches form.cart .vierzeh-resetVariations:hover {
    text-decoration: none;
}

.vierzeh-swatches form.cart .__s-wrapper {
    display: flex;
    align-items: center;
    justify-content: var(--components-align, start);
}

.vierzeh-swatches form.cart .__s-wrapper > .vierzeh-swatchList-item--dummy {
    flex-shrink: 0;
    margin-inline-start: .5em;
    margin-bottom: var(--list-spacing);
}

.vierzeh-swatches form.cart select[data-attribute_name] {
    margin-bottom: var(--list-spacing);
}

.vierzeh-swatches form.cart .blockUI.blockOverlay {
    transform: scale(1.05);
}

.vierzeh-swatches.vierzeh-swatches--stretch-labels form.cart table.variations tr {
    flex-wrap: wrap;
}

.vierzeh-swatches:is(.vierzeh-swatches--show-selected--name,.vierzeh-swatches--show-selected--desc) form.cart table.variations label:after {
    content: ":";
    margin-right: .5em;
}

.vierzeh-swatches:is(.vierzeh-swatches--show-selected--name,.vierzeh-swatches--show-selected--desc) form.cart table.variations label ~ .__name {
    color: var(--bs-gray-800);
}

/* -------------------------
 * 2. SWATCH LIST BASE STYLES
 * ------------------------- */
.vierzeh-swatchList {
    --item-spacing: 10px;
    --item-padding: 0px;
    --item-radius: 0px;
    --item-border-color: var(--bs-gray-300);
    --item-border-color-hover: var(--bs-gray-600);
    --item-border-color-selected: var(--bs-gray-500);
    --item-border-size: 1px;
    --item-border-size-selected: 2px;
    --item-font-size: 14px;
    --item-image-fit: cover;
    --item-per-row: 1;
}

/* Type: Color */
.vierzeh-swatchList.--type-color {
    --item-width: 60px;
    --item-height: 25px;
    --item-padding: 3px;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--item-spacing, 10px);
    width: 100%;
    align-items: stretch;
}

/* Type: Image */
.vierzeh-swatchList.--type-image {
    --item-width: 50px;
    --item-height: 50px;
    --item-padding: 3px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--item-spacing, 10px);
    width: 100%;
    align-items: stretch;
    justify-items: center;
}

/* Type: Button */
.vierzeh-swatchList.--type-button {
    --item-width: 40px;
    --item-height: 25px;
    --item-padding: 4px;
    display: grid;
    grid-template-columns: repeat(var(--item-per-row, 3), 1fr);
    gap: var(--item-spacing, 10px);
    width: 100%;
    align-items: stretch;
}

/* Type: Radio */
.vierzeh-swatchList.--type-radio {
    flex-direction: column;
    align-items: flex-start;
}

/* Type: Large Button */
.vierzeh-swatchList.--type-large_button,
.vierzeh-swatchList.--type-rabatt,
.vierzeh-swatchList.--type-price_option {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* -------------------------
 * 3. SWATCH ITEM STYLES
 * ------------------------- */
/* Common Swatch Item Styles */
.vierzeh-swatchList .vierzeh-swatchList-item--dummy,
.vierzeh-swatchList .vierzeh-swatchList-item {
    border: 0;
    box-sizing: border-box;
    cursor: pointer;
    display: flex;
    justify-content: left;
    align-items: center;
    transition: .25s ease;
    transition-property: box-shadow, border, background-color, color;
    position: relative;
    font-weight: normal;
}

.vierzeh-swatchList .vierzeh-swatchList-item--dummy:focus-visible,
.vierzeh-swatchList .vierzeh-swatchList-item:focus-visible {
    outline: var(--focus-ring-size, 1px) auto -webkit-focus-ring-color;
}

/* Regular Swatch Item */
.vierzeh-swatchList .vierzeh-swatchList-item--regular {
    background: none;
    background-color: transparent;
    box-shadow: 0 0 0 var(--item-border-size) var(--item-border-color);
    padding: var(--item-padding);
    width: var(--item-width);
    min-height: 50px;
    color: var(--gray-700);
    border-radius: 3px;
}

.vierzeh-swatchList .vierzeh-swatchList-item--regular:hover,
.vierzeh-swatchList .vierzeh-swatchList-item--regular:focus-visible {
    color: var(--item-hover-color, var(--item-color));
    background-color: var(--item-bg-hover-color, var(--item-bg-color));
    box-shadow: 0 0 0 var(--item-border-size) var(--item-border-color-hover);
}

.vierzeh-swatchList .vierzeh-swatchList-item--regular.--selected,
.vierzeh-swatchList .vierzeh-swatchList-item--regular.--selected:hover {
    color: var(--item-selected-color, var(--item-color));
    background-color: var(--item-bg-selected-color, var(--item-bg-color));
    box-shadow: 0 0 0 var(--item-border-size-selected) var(--primary-700);
}

.vierzeh-swatchList .vierzeh-swatchList-item--regular .vierzeh-swatchList-itemContent {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    background-position: center;
    background-size: var(--item-image-fit);
    background-repeat: no-repeat;
    border-radius: inherit;
}

/* Image Swatch Styles */
.vierzeh-swatchList .vierzeh-swatchList-item.--type-image {
    width: 50px;
    height: 50px;
    padding: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.15s ease-in-out;
    overflow: hidden;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-image .vierzeh-swatchList-itemContent {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

/* Image Swatch (No Style) */
.vierzeh-swatchList .vierzeh-swatchList-item.--type-image.--no-style {
    --item-width: auto;
    --item-padding: 0px 10px;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-image.--no-style .vierzeh-swatchList-itemContent {
    font-size: 11px;
    white-space: break-spaces;
    text-align: center;
    line-height: 1.3;
    display: flex;
    align-items: center;
}

/* Button Swatch */
.vierzeh-swatchList .vierzeh-swatchList-item.--type-button {
    text-align: center;
    width: 100%;
    min-width: 0;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-400);
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.15s ease-in-out;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-button .vierzeh-swatchList-itemContent {
    line-height: 1em;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-button:hover {
    color: inherit;
    border-color: var(--primary-700);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-button.--selected {
    color: var(--primary-700);
    border-color: var(--primary-700);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-button .__swatch {
    display: none;
}

/* Radio Swatch */
.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio {
    font-size: var(--item-font-size);
    color: var(--bs-gray-600);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio:hover,
.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio:focus {
    color: var(--bs-gray-700);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio.--selected {
    color: var(--bs-gray-800);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .vierzeh-swatchList-itemContent {
    display: flex;
    align-items: center;
    position: relative;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point {
    position: relative;
    width: 1em;
    height: 1em;
    transform: scale(1);
    opacity: .8;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:before,
.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 1em;
    width: 1em;
    height: 1em;
    transition: .25s ease;
    transition-property: transform, box-shadow;
}

.rtl .vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:before,
.rtl .vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:after {
    left: auto;
    right: 0;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:before {
    box-shadow: 0 0 0 1px currentColor;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:after {
    transform: scale(0);
    background-color: currentColor;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio.--selected .__point {
    opacity: 1;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio.--selected .__point:before {
    box-shadow: 0 0 0 2px currentColor;
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio.--selected .__point:after {
    transform: scale(0.4);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__text {
    margin-left: .8em;
    font-weight: normal;
}

.rtl .vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__text {
    margin-left: 0;
    margin-right: .8em;
}

/* Bootstrap integration for Radio buttons */
.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio .__point:before {
    border: 1px solid var(--bs-gray-500);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio.--selected .__point:after {
    background-color: var(--bs-primary);
}

.vierzeh-swatchList .vierzeh-swatchList-item.--type-radio.--selected .__point:before {
    border-color: var(--bs-primary);
}

/* Large Button, Rabatt & Price Option Swatches */
.vierzeh-swatchList.--type-rabatt .vierzeh-swatchList-item,
.vierzeh-swatchList.--type-price_option .vierzeh-swatchList-item,
.vierzeh-swatchList.--type-large_button .vierzeh-swatchList-item,
.vierzeh-swatchList.--type-color .vierzeh-swatchList-item {
    width: 100%;
    min-height: 60px;
    margin: 0;
    transition: all 0.2s ease;
    border: 1px solid var(--gray-200);
    border-radius: 5px;
}

.vierzeh-swatchList.--type-rabatt .vierzeh-swatchList-item:hover,
.vierzeh-swatchList.--type-price_option .vierzeh-swatchList-item:hover,
.vierzeh-swatchList.--type-large_button .vierzeh-swatchList-item:hover {
    border-color: var(--primary-700);
}

.vierzeh-swatchList.--type-rabatt .vierzeh-swatchList-item.--selected,
.vierzeh-swatchList.--type-price_option .vierzeh-swatchList-item.--selected,
.vierzeh-swatchList.--type-large_button .vierzeh-swatchList-item.--selected {
    border-color: var(--primary-700);
    background-color: transparent;
    box-shadow: 0 0 0 1px var(--primary-700);
}

.vierzeh-swatchList.--type-rabatt .vierzeh-swatchList-item.--selected .vierzeh-option-name,
.vierzeh-swatchList.--type-price_option .vierzeh-swatchList-item.--selected .vierzeh-option-name,
.vierzeh-swatchList.--type-large_button .vierzeh-swatchList-item.--selected .vierzeh-option-name {
    color: var(--primary-700);
}

/* -------------------------
 * 4. OPTION CONTENT STYLES 
 * ------------------------- */
/* Large Button Layout */
.vierzeh-large-button-layout {
    display: flex;
    align-items: center;
    gap: .75rem;
    width: 100%;
    min-height: inherit;
    text-align: left;
    padding: .5rem .75rem;
}

.vierzeh-large-button-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    border: none;
}

.vierzeh-large-button-content {
    flex: 1;
    min-width: 0; /* Prevents overflow */
}

.vierzeh-large-button-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 3px;
}

/* Rabatt & Price Option Inner Structure */
.vierzeh-rabatt-inner,
.vierzeh-price-option-inner,
.vierzeh-large-button-inner,
.vierzeh-color-button-inner {
    padding: 8px 12px;
    width: 100%;
}

.vierzeh-rabatt-row,
.vierzeh-price-option-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 3px;
}

/* Popular Badge */
.vierzeh-popular-badge {
    display: inline-block !important;
    background-color: var(--primary-700);
    color: var(--primary-50);
    font-size: .6875rem;
    text-transform: uppercase;
    padding: 1px 6px !important;
    border-radius: 10px !important;
    margin-left: 6px !important;
    font-weight: normal !important;
    position: relative !important;
    z-index: 2 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Text Elements */
.vierzeh-option-name {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.vierzeh-option-description {
    font-weight: 400;
    font-size: .75rem;
    color: var(--gray-600);
}

.vierzeh-option-price {
    font-weight: 600;
}

.vierzeh-base-price,
.price-per-unit {
    font-size: 12px;
    color: #777;
}

.vierzeh-option-markup-container {
    font-size: .75rem;
    white-space: nowrap;
    color: var(--sale-red);
    text-transform: uppercase;
    font-weight: 600;
}

.vierzeh-discount {
    font-size: .75rem;
    font-weight: 600;
}

/* Savings Styles */
.vierzeh-savings-positive {
    color: var(--sale-red);
}

.vierzeh-savings-negative {
    color: var(--sale-red);
}

.vierzeh-savings-neutral {
    color: var(--gray-500);
}

.choosejuice {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1em;
}

/* -------------------------
 * 5. TOOLTIP STYLES
 * ------------------------- */
.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip {
    --bg: #fff;
    --border: #ccc;
    position: absolute;
    inset-inline-start: -150vw;
    bottom: calc(100% + 1.1em);
    max-width: 260px;
    min-width: 100px;
    z-index: 9999;
    opacity: 0;
    transition: opacity .25s ease;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__holder {
    color: var(--text);
    box-shadow: var(--bs-shadow-sm);
    padding: .8em 1em;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--bg);
    position: relative;
    z-index: 1;
    min-height: 30px;
    text-align: center;
    font-weight: normal;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__corner {
    font-size: 20px;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__corner:before,
.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__corner:after {
    content: "";
    top: 100%;
    left: calc(50% - 4px);
    position: absolute;
    border: 7px solid rgba(0,0,0,0);
    border-top-color: var(--border);
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__corner:after {
    border-top-color: var(--bg);
    margin-bottom: 2px;
    border-width: 6px;
    margin-left: 1px;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__title {
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
    display: block;
    font-weight: 500;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__title + .__desc {
    margin-top: .7em;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip .__desc {
    font-size: 12px;
    min-width: 200px;
    display: block;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip img.__image {
    width: 120px;
    max-width: none;
    margin-bottom: .7em;
}

.vierzeh-swatchList .vierzeh-swatchList-item .__tooltip img {
    display: block;
    max-width: 100%;
    height: auto;
    max-height: 460px;
    margin-left: auto;
    margin-right: auto;
}

.vierzeh-swatchList .vierzeh-swatchList-item:hover .__tooltip {
    opacity: 1;
    left: auto;
}

/* Tooltip Themes */
.vierzeh-swatchList.--light-tooltips .__tooltip {
    --text: var(--bs-gray-700);
    --bg: var(--bs-white);
    --border: var(--bs-gray-400);
}

.vierzeh-swatchList.--dark-tooltips .__tooltip {
    --text: var(--bs-gray-200);
    --bg: var(--bs-gray-900);
    --border: var(--bs-gray-800);
}

/* -------------------------
 * 6. IMAGE TAG SUPPORT
 * ------------------------- */
.vierzeh-swatchList.--image-tag {
    align-items: center;
}

.vierzeh-swatchList.--image-tag .vierzeh-swatchList-item.--type-image {
    --item-height: auto;
    --woocommerce-swatches-height: auto;
}

.vierzeh-swatchList.--image-tag .vierzeh-swatchList-item.--type-image .vierzeh-swatchList-itemContent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* -------------------------
 * 7. OUT OF STOCK & DISABLED STYLES
 * ------------------------- */
/* Out of Stock Styles */
.vierzeh-swatchList .vierzeh-swatchList-item.--out-of-stock .__content,
.vierzeh-swatchList .vierzeh-swatchList-item.--out-of-stock .__swatch,
.vierzeh-swatchList .vierzeh-swatchList-item.--out-of-stock .vierzeh-swatchList-itemContent {
    opacity: var(--swatches-out-of-stock-opacity, 0.4);
}

.vierzeh-swatchList.--type-price_option .vierzeh-swatchList-item.--disabled,
.vierzeh-swatchList.--type-price_option .vierzeh-swatchList-item.--out-of-stock {
    opacity: 0.6;
    pointer-events: none;
}

/* Disabled Item - X Mark */
.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled {
    pointer-events: none;
    opacity: 0.5;
}

.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled:after {
    content: "";
    width: 1em;
    height: 1em;
    position: absolute;
    left: calc(50% - .5em);
    top: calc(50% - .5em);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' stroke='%23f99' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M22 2L2 22'/%3E%3Cpath fill='none' stroke='%23f99' stroke-linecap='square' stroke-miterlimit='50' stroke-width='2' d='M2 2l20 20'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 10;
    pointer-events: none;
}

.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled .vierzeh-popular-badge {
    z-index: 11 !important; /* Ensures badge is above the X mark */
    opacity: 0.7 !important;
}

li.product .vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled:after {
    font-size: var(--woocommerce-swatches-height);
}

.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled .__content,
.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled .__swatch,
.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled .vierzeh-swatchList-itemContent {
    opacity: .5;
}

.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled.--type-radio:after {
    display: none;
}

/* Remove --no-style from rabatt swatches */
.vierzeh-swatchList.--type-rabatt .vierzeh-swatchList-item.--no-style {
    border: 1px solid #ddd !important;
    background-color: transparent !important;
}

/* Disabled Item - Dim */
.vierzeh-swatchList.--disabled-dim .vierzeh-swatchList-item.--disabled {
    pointer-events: none;
}

.vierzeh-swatchList.--disabled-dim .vierzeh-swatchList-item.--disabled .__content,
.vierzeh-swatchList.--disabled-dim .vierzeh-swatchList-item.--disabled .__swatch,
.vierzeh-swatchList.--disabled-dim .vierzeh-swatchList-item.--disabled .vierzeh-swatchList-itemContent {
    opacity: .25;
}

/* Disabled Item - Hide */
.vierzeh-swatchList.--disabled-hide .vierzeh-swatchList-item.--disabled {
    display: none !important;
}

/* Deselection Styles */
.vierzeh-swatchList.--deselection-click ~ .vierzeh-resetVariations {
    display: none !important;
}

/* Selectable Disabled */
.vierzeh-swatchList.--dsb-selectable .vierzeh-swatchList-item.--disabled {
    pointer-events: auto !important;
}

/* Color Swatch Enhanced Styles */
.vierzeh-color-button-swatch {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Hover styles */
.vierzeh-swatchList.--type-color .vierzeh-swatchList-item:hover {
    border-color: var(--primary-700);
}

/* Selected styles */
.vierzeh-swatchList.--type-color .vierzeh-swatchList-item.--selected {
    border-color: var(--primary-700);
    box-shadow: 0 0 0 1px var(--primary-700);
}

.vierzeh-swatchList.--type-color .vierzeh-swatchList-item.--selected .vierzeh-option-name {
    color: var(--primary-700);
}

/* Override any conflicting styles */
.vierzeh-swatchList.--type-color .vierzeh-swatchList-item .vierzeh-swatchList-itemContent {
    padding: 0;
    width: 100%;
    height: auto;
    background: none;
}

/* Grid and responsive layout for color swatches */
.vierzeh-swatchList.--type-color {
    display: grid;
    gap: var(--item-spacing, 10px);
    grid-template-columns: repeat(1, 1fr);
}

/* Out of stock styles */
.vierzeh-swatchList.--type-color .vierzeh-swatchList-item.--out-of-stock .vierzeh-color-button-inner,
.vierzeh-swatchList.--type-color .vierzeh-swatchList-item.--disabled .vierzeh-color-button-inner {
    opacity: 0.6;
}

/* Make sure disabled items are properly handled */
.vierzeh-swatchList.--disabled-xmark .vierzeh-swatchList-item.--disabled.--type-color:after {
    z-index: 10;
}