.custom-add-to-cart {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 300px;
    margin: 20px 0;
}

.variation-select {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.variation-select select {
    padding: 5px;
    border: 1px solid #ccc;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity-step {
    width: 30px;
    height: 30px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
}

.input-quantity {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    margin: 0 5px;
}

.custom-add-to-cart-button {
    background: #000;
    color: #fff;
    padding: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-add-to-cart-button:hover {
    opacity: 0.8;
}