.custom-add-to-cart {
    margin: 20px 0;
    text-align: center;
    font-family: "Poppins", Sans-serif;
}

.price-display {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
    font-family: "Poppins", Sans-serif;
    text-align: left;
}

.out-of-stock-message {
    background-color: #faf6f2;
    padding: 25px;
    font-family: "Poppins", Sans-serif;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.out-of-stock-message h2 {
    font-weight: 700;
    color: #242424;
    font-size: 22px;
    margin-bottom: 5px;
}

.out-of-stock-message  p {
    margin-bottom: 0px;
    color: #3B3B3B;
    font-family: "Poppins", Sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.quantity-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0px;
}

.product-alternative-link a {
    background-color: #8c6751;
    color: white;
    padding: 10px 35px;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
}

.quantity-input {
    width: 60px;
    padding: 8px;
    font-size: 16px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: "Poppins", Sans-serif;
}

.quantity-minus, .quantity-plus {
    width: 45px;
    height: 45px;
    background-color: #faf6f2;
    color: #000000;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}

.quantity-minus:hover, .quantity-plus:hover {
    background-color: #1a1d33; /* Kicsit sötétebb árnyalat hoverhez */
}

.quantity-wrapper input.quantity-input {
    background-color: #faf6f2;
    border: 0px;
    font-weight: 600;
}

.add-to-cart-btn {
    background-color: #1a1d33;
    color: white;
    padding: 10px 35px;
    border: none;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Poppins", Sans-serif;
    margin-left: 15px;
}

.add-to-cart-btn:hover {
    background-color: #04071d; /* Kicsit sötétebb árnyalat hoverhez */
}

.add-to-cart-btn:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}