/**
 * Tech Solution Cotizador - Frontend Styles
 */

/* Price Badges */
.tsc-price-badge {
    display: inline-block;
    background: #eef4ff;
    color: #2957cb;
    font-size: 0.9em;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #c9dafc;
}

/* WhatsApp Direct Button */
.tsc-whatsapp-wrapper.tsc-wa-btn-full,
.tsc-whatsapp-wrapper.tsc-wa-btn-full .tsc-whatsapp-btn {
    width: 100% !important;
    display: flex !important;
}

.tsc-whatsapp-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    padding: 12px 20px !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    line-height: 1.4 !important;
    text-decoration: none !important;
    transition: background-color 0.2s ease, transform 0.1s ease, filter 0.2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.12);
    box-sizing: border-box !important;
    cursor: pointer !important;
}

.tsc-whatsapp-btn:hover {
    filter: brightness(0.92);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.18);
}

.tsc-whatsapp-btn svg {
    margin-right: 8px;
}

/* Notification toast */
.tsc-toast-notification {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0e172d;
    color: #ffffff;
    padding: 14px 22px;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999999;
    font-size: 14px;
    animation: tscSlideIn 0.3s ease-out;
}

.tsc-toast-notification a {
    color: #8ed1fc;
    font-weight: bold;
    text-decoration: underline;
    margin-left: 8px;
}

@keyframes tscSlideIn {
    from { transform: translateY(100px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Clean Shipping from Checkout and Cart */
.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals,
.woocommerce-checkout-review-order-table tr.shipping,
.woocommerce-order-details tr.shipping,
.cart-collaterals tr.shipping,
.cart-collaterals .shipping {
    display: none !important;
}

/* Hide payment methods radio & coupon toggle */
.woocommerce-checkout #payment ul.payment_methods,
.woocommerce-checkout .woocommerce-form-coupon-toggle,
.woocommerce-checkout form.checkout_coupon {
    display: none !important;
}

.woocommerce-checkout #payment .place-order {
    padding: 15px 0 !important;
    background: transparent !important;
}

.cart-collaterals .wc-proceed-to-checkout .checkout-button {
    font-size: 1.1em !important;
    padding: 14px 28px !important;
}