.vac-variations {
    display: flex;
    flex-direction: column;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 20px !important;
    row-gap: 20px;
}

.vac-section {
    border-bottom: 1px solid var(--e-global-color-38f8e0b, #E5E7EB);
    padding-bottom: 10px;
}

.vac-section-title {
    align-items: center;
    color: var(--e-global-color-d6755de, #6B7280);
    cursor: pointer;
    display: flex;
    font-size: 16px;
    font-weight: 400;
    justify-content: space-between;
    line-height: 24px;
}

.vac-chevron {
    transition: transform 0.3s ease-out;
}

.vac-section:not(.collapsed) .vac-chevron {
    transform: rotate(180deg);
}

.vac-section.collapsed .vac-section-body {
    overflow: hidden;
}

.vac-section-body {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    row-gap: 10px;
}

.vac-swatch-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.vac-swatch-button {
    all: unset !important;
    background-color: var(--e-global-color-b103fd5, #fff) !important;
    border: 1px solid var(--e-global-color-38f8e0b, #E5E7EB) !important;
    color: var(--e-global-color-40f7e51, #000) !important;
    cursor: pointer !important;
    font-family: inherit !important;
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: 20px !important;
    letter-spacing: 0.14px !important;
    margin: 0 !important;
    padding: 8px 12px !important;
    text-transform: none !important;
    transition: border-color 0.3s ease-out !important;
}

.vac-swatch-button:hover, .vac-swatch-button.selected {
    border-color: var(--e-global-color-9b71ecb, #0D1C42) !important;
}

.vac-section-body .reset_variations {
    color: var(--e-global-color-d6755de, #6B7280);
    display: none;
    font-size: 14px !important;
    font-weight: 300;
    line-height: 20px;
    letter-spacing: 0.14px;
    transition: color 0.3s ease-out;
}
.vac-section-body .reset_variations:hover {
    color: var(--e-global-color-9b71ecb, #0D1C42);
}

.vac-section-body .reset_variations[style*="visibility: visible"] {
    display: block;
}
