/**
 * KB Add to Cart Style 1 Widget
 * Price, quantity, button, and bulk pricing
 */

.kbpb-add-to-cart-style1 {
    max-width: 430px;
}

/* Price */
.kbpb-price-wrapper {
    margin-bottom: 20px;
}

.kbpb-price {
    font-size: 32px;
    font-weight: 700;
    color: #E84B19;
    line-height: 1;
}

/* Quantity Selector */
.kbpb-quantity-wrapper {
    display: inline-flex;
    align-items: center;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
    max-width: 130px;
    width: auto !important;
}

.kbpb-qty-btn {
    background: #fff;
    border: none;
    width: 35px;
    height: 40px;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.kbpb-qty-btn:hover {
    background: #f5f5f5;
    color: #E84B19;
}

.kbpb-quantity-input {
    width: 60px;
    height: 40px;
    text-align: center;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 16px;
    font-weight: 600;
    color: #212223;
    -moz-appearance: textfield !important;
    appearance: textfield !important;
    padding: 0;
}

.kbpb-quantity-input::-webkit-outer-spin-button,
.kbpb-quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none !important;
    appearance: none !important;
    margin: 0 !important;
    display: none !important;
}

.kbpb-quantity-input:focus {
    outline: none;
}

/* Add to Cart Button */
.kbpb-add-to-cart-btn {
    width: 100%;
    background-color: #E84B19;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0;
}

.kbpb-add-to-cart-btn:hover {
    background-color: #D14316;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 75, 25, 0.3);
}

.kbpb-add-to-cart-btn:active {
    transform: translateY(0);
}

/* Bulk Pricing */
.kbpb-bulk-pricing {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kbpb-bulk-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border: 2px solid #E84B19;
    border-radius: 8px;
    background: #ffffff;
    transition: all 0.3s ease;
    cursor: pointer;
}

.kbpb-bulk-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(232, 75, 25, 0.15);
}

.kbpb-bulk-label {
    font-size: 16px;
    font-weight: 600;
    color: #E84B19;
}

.kbpb-bulk-price-text {
    font-size: 18px;
    font-weight: 700;
    color: #212223;
}

/* Responsive */
@media (max-width: 480px) {
    .kbpb-price {
        font-size: 28px;
    }

    .kbpb-bulk-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        padding: 14px 16px;
    }

    .kbpb-bulk-label {
        font-size: 14px;
    }

    .kbpb-bulk-price-text {
        font-size: 16px;
    }
}
