.woo-var-qty-container {
    margin-bottom: 20px;
}

.woo-var-qty-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.woo-var-qty-item {
    display: flex;
    flex-direction: column;
}

.woo-var-qty-name {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: #333;
}

.woo-var-qty-controls {
    display: flex;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 0;
    height: 48px;
    overflow: hidden;
}

.woo-var-qty-minus,
.woo-var-qty-plus {
    background: #f0f0f0;
    border: none;
    color: #333;
    width: 48px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.2s ease;
    border-radius: 0;
    padding: 0;
}

.woo-var-qty-minus:active:not(:disabled),
.woo-var-qty-plus:active:not(:disabled),
.woo-var-qty-minus:hover:not(:disabled),
.woo-var-qty-plus:hover:not(:disabled) {
    background: #15324e;
    color: #ffffff;
}

.woo-var-qty-minus:disabled,
.woo-var-qty-plus:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.woo-var-qty-input {
    flex-grow: 1;
    text-align: center;
    border: none !important;
    background: #ffffff !important;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 0 !important;
    box-shadow: none !important;
    width: 100%;
    height: 100%;
    -moz-appearance: textfield;
}

.woo-var-qty-input::-webkit-outer-spin-button,
.woo-var-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woo-var-qty-action {
    display: flex;
    align-items: center;
}


