/* ======================================================================
   Product checkout (PDP actions) — Cohort 10 (Kiddies Bazar — warm orange)
   Orange: #F26522  |  Green: #25A55D  |  Teal: #128C7E  |  Navy: #1A3C6E
   Standalone semantic classes — no Bootstrap utility chains in HTML.
   ====================================================================== */

/* ---------- Wrapper ---------- */
.product-checkout-10 {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 0.5rem;
}

/* ---------- Quantity stepper ---------- */
.product-checkout-10-qty {
    display: inline-flex;
    align-items: stretch;
    align-self: flex-start;
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
    background: #fff;
}

.product-checkout-10-qty-btn {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #212529;
    background: #FFF9F6;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1;
    border: none;
    user-select: none;
    transition: background 0.1s ease;
}

.product-checkout-10-qty-btn:hover { background: #ffe8d6; color: #212529; }

.product-checkout-10-qty-input {
    width: 56px;
    text-align: center;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    padding: 0.25rem 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #212529;
    background: #fff;
    outline: none;
    -moz-appearance: textfield;
}

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

/* ---------- Shared CTA base ---------- */
.product-checkout-10-cta {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 16px;
    border-radius: 0.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    color: #fff;
    transition: background 0.1s ease, transform 0.05s ease;
    line-height: 1.2;
}

.product-checkout-10-cta:hover { transform: translateY(-1px); color: #fff; }

/* ---------- CTA 1: Add to Cart (Fresh green) ---------- */
.product-checkout-10-cta-cart { background: #25A55D; }
.product-checkout-10-cta-cart:hover { background: #1E8C4E; }

/* ---------- CTA 2: Buy Now (Orange) ---------- */
.product-checkout-10-cta-buynow { background: #F26522; }
.product-checkout-10-cta-buynow:hover { background: #D95A1A; }

/* ---------- CTA 3: WhatsApp Order (dark teal) ---------- */
.product-checkout-10-cta-whatsapp { background: #128C7E; }
.product-checkout-10-cta-whatsapp:hover { background: #0E7268; }

/* ---------- CTA 4: Call Now (navy) ---------- */
.product-checkout-10-cta-phone { background: #1A3C6E; }
.product-checkout-10-cta-phone:hover { background: #142F5A; }

/* ---------- Unavailable ---------- */
.product-checkout-10-cta-unavailable {
    background: #9ca3af;
    cursor: not-allowed;
    opacity: 0.85;
}
.product-checkout-10-cta-unavailable:hover { transform: none; }

@media (max-width: 575.98px) {
    .product-checkout-10-cta { padding: 10px 14px; font-size: 0.9rem; }
}
