.empyra-atc {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Price */
.empyra-atc__price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.empyra-atc__price-sale {
    font-size: 18px;
    font-weight: 700;
    color: var(--emp-coral);
}
.empyra-atc__price-regular {
    font-size: 18px;
    font-weight: 700;
    color: var(--emp-charcoal);
}
.empyra-atc__price-regular .woocommerce-Price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--emp-coral);
}
.empyra-atc__price-regular--strike {
    font-size: 15px;
    font-weight: 400;
    color: var(--emp-muted);
    text-decoration: line-through;
}

/* Variant chips */
.empyra-atc__attr-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #7A7A7A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.empyra-atc__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.empyra-atc__chip {
    padding: 6px 14px;
    border: 1.5px solid #E8E4DC;
    border-radius: 100px;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #2D2D2D;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
    font-family: inherit;
    line-height: 1;
}

.empyra-atc__chip:hover:not(:disabled) {
    border-color: #2C5F6F;
}

.empyra-atc__chip--selected {
    border-color: #2C5F6F;
    background: #2C5F6F;
    color: #fff;
}

.empyra-atc__chip--oos,
.empyra-atc__chip:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* Qty + button row */
.empyra-atc__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Qty stepper */
.empyra-atc__qty {
    display: flex;
    align-items: center;
    border: 1.5px solid #E8E4DC;
    border-radius: 100px;
    overflow: hidden;
    background: #fff;
    flex-shrink: 0;
}

.empyra-atc__qty-btn {
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: #2D2D2D;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    font-family: inherit;
}

.empyra-atc__qty-btn:hover { background: #F5F2EC; }

.empyra-atc__qty-input {
    width: 36px;
    text-align: center;
    border: none;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: #2D2D2D;
    background: transparent;
    font-family: inherit;
    -moz-appearance: textfield;
}
.empyra-atc__qty-input::-webkit-outer-spin-button,
.empyra-atc__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Add to cart button */
.empyra-atc__btn {
    flex: 1;
    padding: 0 20px;
    height: 38px;
    background: #2C5F6F;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.empyra-atc__btn:hover:not(:disabled) { opacity: 0.85; }

.empyra-atc__btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.empyra-atc__btn--added {
    background: #166534;
}

/* Feedback */
.empyra-atc__feedback {
    font-size: 13px;
    padding: 7px 12px;
    border-radius: 6px;
    font-weight: 500;
}

.empyra-atc__feedback--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.empyra-atc__feedback--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* Color swatches */
.empyra-atc__chip--swatch {
    width: 28px;
    height: 28px;
    padding: 0;
    border-radius: 50%;
    border: 2.5px solid transparent;
    box-shadow: 0 0 0 1.5px rgba(0,0,0,0.15);
    transition: box-shadow 0.15s, border-color 0.15s;
}
.empyra-atc__chip--swatch:hover:not(:disabled) {
    box-shadow: 0 0 0 2px var(--emp-teal);
}
.empyra-atc__chip--swatch.empyra-atc__chip--selected {
    border-color: #fff;
    box-shadow: 0 0 0 2.5px var(--emp-teal);
}
.empyra-atc__color-label {
    font-size: 11px;
    color: var(--emp-muted);
    margin-top: 4px;
    min-height: 14px;
    font-weight: 500;
}
