/**
 * Produkt Titel - IDENTISCH zu Paket-Titel
 */
.product-title {
    font-size: 2.5rem;
    font-family: 'Kaushan Script', handwriting;
    line-height: 1em;
}

/**
 * Produkt Warenkorb-Button - Identisch zu Paket-Button
 */

.product-add-cart-btn {
    width: 100%;
    padding: 18px 24px;
    background: #1a3a5c;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.product-add-cart-btn svg {
    width: 20px;
    height: 20px;
}

.product-add-cart-btn:hover {
    background: #0f2540;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(26, 58, 92, 0.4);
}

.product-add-cart-btn:disabled {
    background: #95a5a6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.product-add-cart-btn.added-to-cart {
    background: #27ae60;
}

/* Produkt Mengenauswahl - IDENTISCH zu Paket Controls */
.product-quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.qty-btn {
    width: 35px;
    height: 45px;
    border: 2px solid white;
    background: #173876;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
}

.qty-btn:hover {
    background: white;
    border: 2px solid #173876;
    color: #173876;
}

.qty-btn:active {
    background: #dc3545;
    color: #fff;
    transform: scale(0.95);
}

.qty-btn:focus {
    outline: none;
    border: 2px solid white;
    background: #173876;
    color: #fff;
}

.qty-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.qty-btn:disabled:hover {
    background: #173876;
    color: white;
}

/* Nur Minus */
.qty-minus {
    color: white;
    padding-top: 0px;
    padding-bottom: 5px;
}

/* Nur Plus */
.qty-plus {
    padding-top: 1px;
    padding-bottom: 0px;
    color: white;
}

/* Produkt Mengen-Input */
.product-qty-input {
    width: 60px;
    height: 30px;
    padding: 2px 5px !important;
    border: 2px solid #173876;
    background: #173876;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: white;
    box-sizing: border-box;
    appearance: textfield;
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
}

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

.product-qty-input:focus {
    outline: none;
}

/* Produkt Gesamtpreis - EXAKT wie Paket-Preis (ohne Umrandung) */
.product-total-price {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px !important;
    font-size: 30px;
    font-weight: 900;
    color: #173876;
}
