/**
 * KB Bundle Product - Frontend Styles
 *
 * @author    suspended
 * @copyright 2024
 * @license   Commercial
 */

/* ========================================
   UTILITY CLASSES
   ======================================== */
.kbbp-margin-top-2 {
    margin-top: 2rem;
}

.kbbp-rounded {
    border-radius: 0.25rem;
}

.kbbp-text-right {
    text-align: right;
}

.kbbp-padding-point-5 {
    padding: 0.5rem;
}

.kbbp-border {
    border: 2px solid rgba(0, 0, 0, 0.1);
    box-shadow: 2px 2px 8px 0 rgba(0, 0, 0, 0.2);
}

.kbbp-border-img {
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.kbbp-disable {
    pointer-events: none;
    cursor: not-allowed !important;
}

.kbbp-disabled {
    cursor: not-allowed !important;
}

.kbbp-loader-disable-element {
    opacity: 0.3;
    cursor: not-allowed !important;
}

/* ========================================
   BUNDLE CONTAINER
   ======================================== */
.kbbp-bundle-container {
    margin: 20px 0;
    padding: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
}

.kbbp-bundle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #2fb5d2;
}

.kbbp-bundle-title {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
    color: #232323;
}

.kbbp-bundle-savings {
    padding: 5px 12px;
    font-size: 0.9rem;
    background: #4cbb6c;
    color: #fff;
    border-radius: 4px;
}

/* Section Styles */
.kbbp-section {
    margin-bottom: 25px;
    padding: 15px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.kbbp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.kbbp-section-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
}

.kbbp-required {
    color: #e74c3c;
    margin-left: 3px;
}

.kbbp-section-qty-info {
    font-size: 0.85rem;
    color: #666;
}

.kbbp-section-qty-info span {
    margin-left: 10px;
    padding: 2px 8px;
    background: #f0f0f0;
    border-radius: 3px;
}

/* Grid View */
.kbbp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
}

/* ========================================
   SLIDER VIEW
   ======================================== */
.kbbp-slider-view {
    padding: 1rem;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.kbbp-slider {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scroll-behavior: smooth;
    position: relative;
}

.kbbp-slider::-webkit-scrollbar {
    height: 6px;
}

.kbbp-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.kbbp-slider::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.kbbp-slider .kbbp-product {
    min-width: 180px;
    flex-shrink: 0;
}

/* MultiCarousel Slider */
.kbbp-slider-view .MultiCarousel {
    float: left;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0 10px;
}

.kbbp-slider-view .MultiCarousel .MultiCarousel-inner {
    transition: 1s ease all;
    float: left;
}

.kbbp-slider-view .MultiCarousel .MultiCarousel-inner .item {
    float: left;
    margin-right: 0;
}

.kbbp-slider-view .MultiCarousel .MultiCarousel-inner .item > div {
    padding: 5px;
    margin: 5px;
}

.kbbp-slider-view .item {
    position: relative;
}

/* Slider Navigation Buttons */
.kbbp-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.2s ease;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.kbbp-slider-nav:hover {
    background: #2fb5d2;
    color: #fff;
    border-color: #2fb5d2;
}

.kbbp-slider-nav:focus {
    outline: none !important;
}

.kbbp-slider-nav.prev {
    left: -18px;
}

.kbbp-slider-nav.next {
    right: -18px;
}

.kbbp-slider-nav.disabled,
.kbbp-slider-nav.over {
    pointer-events: none;
    background: #ccc;
    opacity: 0.5;
    display: none;
}

/* Old module compatible slider buttons */
.kbbp-slider-view .leftLst,
.kbbp-slider-view .rightLst {
    position: absolute;
    border-radius: 0%;
    top: calc(50% - 20px);
    background-color: #ffffff;
    border: none !important;
    cursor: pointer;
    padding: 6px 10px;
    font-size: 25px;
}

.kbbp-slider-view .leftLst:focus,
.kbbp-slider-view .rightLst:focus {
    outline: none !important;
}

.kbbp-slider-view .leftLst {
    left: 0;
}

.kbbp-slider-view .rightLst {
    right: 0;
}

.kbbp-slider-view .leftLst.over,
.kbbp-slider-view .rightLst.over {
    pointer-events: none;
    background: #ccc;
    display: none;
}

.kbbp-slider-view .kbbp-btn-slider {
    padding: 1px 6px !important;
    border-width: 0 !important;
    border-color: none;
    background-color: #f1f1f1 !important;
    cursor: pointer;
}

/* Carousel Indicators */
.kbbp-slider-view .carousel-indicators {
    position: absolute;
    bottom: -16px;
    left: 41%;
    z-index: 15;
    width: 78%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none;
    top: auto;
    margin-bottom: -18px;
}

.kbbp-slider-view .carousel-indicators li {
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background: #a3a3a3;
    border: 1px solid #7a7a7a;
    border-radius: 50%;
}

.kbbp-slider-view .carousel-indicators .active {
    background: #707070 !important;
}

/* Product Card */
.kbbp-product {
    position: relative;
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.kbbp-product:hover {
    border-color: #2fb5d2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.kbbp-product.selected {
    border-color: #2fb5d2;
    background: #f0fafc;
}

.kbbp-product-image {
    position: relative;
    margin-bottom: 10px;
    text-align: center;
}

.kbbp-product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

.kbbp-default-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 2px 8px;
    font-size: 0.7rem;
    background: #2fb5d2;
    color: #fff;
    border-radius: 3px;
}

.kbbp-product-info {
    text-align: center;
}

.kbbp-product-name {
    margin: 0 0 5px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.kbbp-product-attribute {
    display: block;
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

.kbbp-product-price {
    font-size: 1rem;
    font-weight: 600;
    color: #2fb5d2;
}

/* Selection Controls */
.kbbp-product-selection {
    margin-top: 10px;
    text-align: center;
}

.kbbp-qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.kbbp-qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: #f5f5f5;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.kbbp-qty-btn:hover {
    background: #e5e5e5;
}

.kbbp-qty-input {
    width: 45px;
    height: 30px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
    font-size: 0.9rem;
    -moz-appearance: textfield;
}

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

/* Checkbox Style */
.kbbp-checkbox {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.kbbp-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.kbbp-checkmark {
    display: inline-block;
    width: 22px;
    height: 22px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    transition: all 0.2s;
}

.kbbp-checkbox input:checked ~ .kbbp-checkmark {
    background: #2fb5d2;
    border-color: #2fb5d2;
}

.kbbp-checkbox input:checked ~ .kbbp-checkmark:after {
    content: '';
    position: absolute;
    left: 7px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* Quantity Discounts */
.kbbp-qty-discounts {
    margin-top: 15px;
    padding: 10px;
    background: #fff8e5;
    border-radius: 4px;
    font-size: 0.85rem;
}

.kbbp-discount-label {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.kbbp-discount-item {
    display: inline-block;
    margin: 3px 8px 3px 0;
    padding: 3px 8px;
    background: #ffe0b2;
    border-radius: 3px;
    color: #e65100;
}

/* Bundle Summary */
.kbbp-bundle-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding: 15px 20px;
    background: #232323;
    color: #fff;
    border-radius: 6px;
}

.kbbp-selected-count .kbbp-count-label,
.kbbp-bundle-total .kbbp-total-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-right: 8px;
}

.kbbp-count-value {
    font-size: 1.2rem;
    font-weight: 600;
}

.kbbp-total-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4cbb6c;
}

.kbbp-savings-value {
    display: block;
    font-size: 0.85rem;
    color: #4cbb6c;
    margin-top: 3px;
}

/* Errors */
.kbbp-bundle-errors {
    margin-top: 15px;
    padding: 15px;
    background: #fce4ec;
    border: 1px solid #f8bbd9;
    border-radius: 4px;
}

.kbbp-error-list {
    margin: 0;
    padding-left: 20px;
    color: #c62828;
}

.kbbp-error-list li {
    margin-bottom: 5px;
}

/* Order Bundle Detail */
.kbbp-order-bundle-detail {
    margin: 20px 0;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 6px;
}

.kbbp-detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #333;
}

.kbbp-detail-title i {
    color: #2fb5d2;
}

.kbbp-bundle-content table {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .kbbp-bundle-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .kbbp-section-header {
        flex-direction: column;
        gap: 8px;
    }

    .kbbp-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .kbbp-bundle-summary {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .kbbp-grid {
        grid-template-columns: 1fr;
    }

    .kbbp-slider .kbbp-product {
        min-width: 150px;
    }
}

/* ========================================
   PLUS SYMBOL CONNECTORS (Grid View)
   ======================================== */
.kbbp-plus-symbol-grid {
    position: absolute;
    top: 50%;
    left: -12px;
    color: #9b9b9b !important;
    font-size: 24px;
    font-weight: bold;
    transform: translateY(-50%);
}

@media screen and (max-width: 684px) {
    .kbbp-plus-symbol-grid {
        display: none;
    }
}

/* ========================================
   RIBBON/BADGE STYLES
   ======================================== */
.kbbp-ribbon-wrapper {
    width: 85px;
    height: 88px;
    overflow: hidden;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}

.kbbp-ribbon {
    font: bold 10px Sans-Serif;
    text-align: center;
    text-shadow: rgba(255, 255, 255, 0.5) 0 1px 0;
    transform: rotate(45deg);
    position: relative;
    padding: 4px 0;
    left: -5px;
    top: 15px;
    width: 120px;
    background-color: #9b9b9b;
    color: #fff;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.kbbp-ribbon:before,
.kbbp-ribbon:after {
    content: "";
    position: absolute;
    bottom: -3px;
}

.kbbp-ribbon:before {
    left: 0;
}

.kbbp-ribbon:after {
    right: 0;
}

/* ========================================
   CANCEL/REMOVE PRODUCT BUTTON
   ======================================== */
.kbbp-cancel {
    position: absolute;
    z-index: 1;
    right: 12px;
    background-color: #fff;
    color: rgb(112, 109, 109);
    box-shadow: 0 0 3px rgba(75, 74, 74, 0.3);
    opacity: 0.5;
    top: 12px;
    cursor: pointer;
    padding: 2px 4px;
    border-radius: 50%;
    transition: opacity 0.2s;
}

.kbbp-cancel:hover {
    opacity: 1;
}

.kbbp-cancel .material-icons,
.kbbp-cancel i {
    color: black;
    font-size: 18px;
}

/* ========================================
   SECTION REDIRECT/NAVIGATION LINKS
   ======================================== */
.kbbp-section-redirect {
    cursor: pointer;
    display: inline-block;
}

.kbbp-section-redirect .kbbp-chk-circle {
    color: #5a9913;
}

.kbbp-section-redirect .kbbp-add-circle {
    color: #7a7a7a;
}

/* ========================================
   SECTION RIGHT BLOCK (Summary sidebar)
   ======================================== */
.kbbp-section-right-block {
    text-align: left;
}

.kbbp-section-right-block .card-block {
    padding-top: 0.5rem !important;
}

.kbbp-section-right-block-top {
    text-align: left;
}

/* ========================================
   PRODUCT VARIANTS
   ======================================== */
.kbbp-sub-product-variants > .product-variants-item select {
    background-color: #fff;
    padding-right: 1.875rem;
}

.kbbp-sub-product-variants > .product-variants-item ul li {
    margin-right: 0.625rem;
}

.kbbp-sub-product-variants ul {
    list-style: none;
    padding-left: 0;
}

.kbbp-sub-product-variants ul li {
    display: inline;
}

.kbbp-sub-product-variants .input-color:checked + span {
    border: 2px solid #2fb5d2 !important;
}

.kbbp-sub-product-variants .input-color:hover + span {
    border: 2px solid #2fb5d2 !important;
}

.kbbp-color-border {
    border: 2px solid #2fb5d2 !important;
}

/* Color swatches */
.custom-checkbox input[type="checkbox"] + span.color,
.variant-links .color,
label .color {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    margin: 0.3125rem;
    box-shadow: 2px 2px 4px 0 rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    background-size: contain;
}

.input-color {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 1.25rem;
    width: 1.25rem;
}

/* ========================================
   PRODUCT SELECT DROPDOWN
   ======================================== */
.kbbp-bundle-product-select {
    text-align: center;
    margin-top: 5px;
}

.kbbp-bundle-product-select .kbbp-select-sub-product {
    width: 75%;
    text-align: center;
    overflow: hidden;
    white-space: inherit;
}

@media only screen and (max-width: 769px) {
    .kbbp-bundle-product-select .kbbp-select-sub-product {
        width: 100%;
    }
}

.kbbp-select-border {
    border: 2px solid #2fb5d2 !important;
}

/* ========================================
   SECTION TITLE (Grid View)
   ======================================== */
.kbbp-grid-section-title {
    background-color: #f1f1f1;
    padding: 5px 8px;
    margin-bottom: 5px;
}

.kbbp-slider-view-title {
    background-color: #f1f1f1;
    padding-bottom: 6px !important;
}

.kbbp-slider-view-body {
    background-color: #fff;
}

/* ========================================
   TOUCH SPIN QUANTITY CONTROLS
   ======================================== */
.kbbp-quantity-wanted {
    color: #232323;
    background-color: #fff;
    padding: 0.175rem 0.5rem;
    width: 3rem;
}

.kbbp-touch-btn {
    position: absolute;
}

.kbbp-touchspin-down {
    position: relative;
    top: -26px;
    left: -12px;
    padding: 0;
    cursor: pointer;
    color: initial;
}

.kbbp-touchspin-up {
    position: relative;
    top: -22px;
    left: -12px;
    padding: 0;
    cursor: pointer;
    color: initial;
}

.kbbp-touchspin-down i,
.kbbp-touchspin-up i {
    font-size: 18px !important;
}

.kbbp-boot-touchspin a:hover,
.kbbp-boot-touchspin a:visited,
.kbbp-boot-touchspin a:focus {
    color: initial !important;
}

.kbbp-touchspin-down:focus,
.kbbp-touchspin-up:focus {
    outline: none !important;
}

.kbbp-boot-touchspin .kbbp-quantity-wanted {
    height: 38px;
}

.kbbp-boot-touchspin .kbbp-touch-spin-bar {
    border-bottom: 1px solid gray;
    position: relative;
    top: -23px;
    width: 24px;
    left: -12px;
    z-index: 100;
}

/* Cart touch spin adjustments */
#customer_cart .kbbp-boot-touchspin .kbbp-touch-spin-bar {
    top: -20px !important;
    width: 18px !important;
    left: -9px !important;
}

#customer_cart .kbbp-touchspin-up {
    top: -16px !important;
}

#customer_cart .kbbp-touchspin-down {
    top: -23px !important;
}

/* ========================================
   SUB-PRODUCT TITLE
   ======================================== */
.kbbp-sub-product-title {
    font-size: 14px;
    color: #232323;
    letter-spacing: 0;
}

/* ========================================
   CART POPUP DISPLAY
   ======================================== */
.kbbp-cart-popup {
    font-size: 10px !important;
}

/* ========================================
   LOADING IMAGE
   ======================================== */
.kbbp-loading-image {
    position: absolute;
    top: 212px;
    left: 100px;
    z-index: 10;
}

/* ========================================
   GRID DROPDOWN
   ======================================== */
.kbbp-grid-dropdown {
    background-color: #fff !important;
}

/* ========================================
   ROW MARGIN
   ======================================== */
.kbbp-row-margin {
    margin-bottom: 25px;
}

/* ========================================
   PROMO/PROMOTION STYLES
   ======================================== */
.kbbp-promo-configure {
    text-align: center;
    margin: 1rem;
}

.kbbp-promo-start-price {
    font-size: 11px;
    text-decoration: #000;
}

/* Bundle Promotion Slider */
.kbbp-bundle-promotion-slider .bx-next {
    position: absolute;
    top: 40%;
    right: 14px;
    z-index: 999;
    width: 40px !important;
    height: 40px !important;
    display: block;
    outline: none;
}

.kbbp-bundle-promotion-slider .bx-prev {
    position: absolute;
    top: 40%;
    left: 14px;
    z-index: 999;
    width: 40px !important;
    height: 40px !important;
    display: block;
    outline: none;
}

/* ========================================
   IS REQUIRED BLOCK
   ======================================== */
.kbbp-is-required-block {
    color: #9a9a9a;
}

/* ========================================
   HIGHLIGHT/SELECTED BORDER
   ======================================== */
.highlight {
    border: 2px solid #2fb5d2;
}

/* ========================================
   QUICKVIEW SPECIFIC STYLES
   ======================================== */
.quickview .kbbp-section-redirect {
    display: none;
}

.quickview .kbbp-section-right-block {
    text-align: left;
}

.quickview .kbbp-section-right-block-top {
    margin-left: 2.5rem;
}

/* ========================================
   RESPONSIVE SECTION
   ======================================== */
@media only screen and (max-width: 769px) {
    .kbbp-section-resp {
        margin-bottom: 1.5rem;
    }

    .card {
        background-color: #fff !important;
    }
}

/* ========================================
   INPUT GROUP FIX
   ======================================== */
.kbbp-bundle-sub-product .input-group {
    position: relative;
    width: 92%;
    display: table;
    border-collapse: separate;
}

.kbbp-bundle-sub-product .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0;
}

.kbbp-bundle-sub-product .input-group .form-control:active,
.kbbp-bundle-sub-product .input-group .form-control:focus,
.kbbp-bundle-sub-product .input-group .form-control:hover {
    z-index: 3;
}

.kbbp-bundle-sub-product .input-group-addon,
.kbbp-bundle-sub-product .input-group-btn,
.kbbp-bundle-sub-product .input-group .form-control {
    display: table-cell;
}

.kbbp-bundle-sub-product .input-group-addon {
    padding: 0.5rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
    color: #7a7a7a;
    text-align: center;
    background-color: #f6f6f6;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0;
}

.kbbp-bundle-sub-product .color {
    box-shadow: none;
}

.kbbp-bundle-sub-product .wk-product-quantity .kbbp-qty,
.kbbp-bundle-sub-product .wk-product-quantity .kbbp-qty .input-group {
    margin-right: 0 !important;
    display: table !important;
}

.kbbp-bundle-sub-product .product-cover img {
    box-shadow: none !important;
}

/* ========================================
   CUSTOM MARGINS/PADDINGS
   ======================================== */
.kbbp-custom-margin-t {
    margin: 5px 0 !important;
}

.kbbp-custom-padding-t {
    padding: 5px 0 !important;
}

.kbbp-custom-margin-b {
    margin-bottom: 5px !important;
}

.kbbp-custom-margin-2-t {
    margin-top: 2px !important;
}

.kbbp-custom-margin-10-t {
    margin-top: 10px !important;
}

.kbbp-custom-margin-2-b {
    margin-bottom: 2px !important;
}

/* ========================================
   SELECTED ITEMS LIST
   ======================================== */
.kbbp-selected-list {
    margin-top: 15px;
    padding: 10px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

.kbbp-selected-list-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.kbbp-selected-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.kbbp-selected-item:last-child {
    border-bottom: none;
}

.kbbp-selected-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kbbp-selected-item-image {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
}

.kbbp-selected-item-name {
    font-size: 0.9rem;
    color: #333;
}

.kbbp-selected-item-attribute {
    font-size: 0.8rem;
    color: #666;
}

.kbbp-selected-item-qty {
    font-size: 0.85rem;
    color: #666;
}

.kbbp-selected-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: #e74c3c;
    font-size: 18px;
    padding: 0 5px;
}

.kbbp-selected-item-remove:hover {
    color: #c0392b;
}
