.main-category-container .child-category h2 {
    font-size: 20px;
}
 .category-card-body{
    padding: 20px;
 }
.child-category .row {
    row-gap: 30px;
}
.app-features-icon {
    width: 70px;
}
.app-features-inner {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    height: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}

.app-features-card.checked {
    border-color: var(--theme-color);
}
.app-features-card.checked .app-features-bottom{
    background-color: #6FD9431A;
    border-color: var(--theme-color);
}
.app-features-inner .app-features-top{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
        gap:10px;
        padding: 15px;
}
.app-features-inner .app-features-top .app-features-icon{
    width: 35px;
    height: 35px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.app-features-inner .app-features-top .app-features-icon img{
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}
.app-features-bottom{
    width: 100%;
    background: #FAFAFA;
    border-top: 1px solid var(--border-color);
    text-align: center;
    padding:10px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        gap: 7px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
}
.app-features-bottom .price ins {
    margin-left: 4px;
}
.app-features-inner .app-features-top h6{
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}
.app-features-card h6 {
    font-weight: 600;
}
.app-features-card{
    border: 1px solid var(--border-color);
    background-color: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    position: relative;
    z-index: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    cursor: pointer;
}
.app-features-card .input-box{
    position: absolute;
    top: -7px;
    right: -7px;
    width: 20px;
    height: 20px;
}
.app-features-card .input-box input[type="checkbox"]{
    padding: 0px;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.app-features-card input[type="checkbox"],
.category-card-head input[type="checkbox"],
.category-checkbox-wrp input[type="checkbox"]{
    width: 20px;
    height: 20px;
    -moz-appearance: none;
         appearance: none;
    -webkit-appearance: none;
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 3px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    padding: 0;
}

.app-features-card input[type="checkbox"]:checked,
.category-card-head input[type="checkbox"]:checked,
.category-checkbox-wrp input[type="checkbox"]:checked
 {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
}


.app-features-card input[type="checkbox"]:checked::after ,
.category-card-head input[type="checkbox"]:checked::after,
.category-checkbox-wrp input[type="checkbox"]:checked::after
{
    content: '';
    display: block;
    position: absolute;
    top: 45%;
    left: 7px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0px 1px 1px 0;
    transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
}

.product-sidebar .product-sidebar-inner {
    width: 100%;
    background-color: #ffffff;
    border-radius: 10px;
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
}
.sticky-column{
    position: sticky;
    top: 150px;
}
.product-sidebar .product-sidebar-header {
    margin: 0 0 10px 0;
    color: #333;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
}
.product-sidebar .product-sidebar-header h3{
    font-size: 18px;
    font-weight: 600;
}
.product-sidebar .product-sidebar-header svg{
    width: 18px;
    height: 18px;
}
.products-list-wrp {
    margin-bottom: 10px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
}
.products-list-wrp .product-list{
    max-height: 200px;
    overflow-y: auto;
    padding: 10px;
    background: #F4B41A1A;
}
.product-list::-webkit-scrollbar {
    width: 2px;
}

.product-list::-webkit-scrollbar-track {
    border-radius: 2px;
}

.product-list::-webkit-scrollbar-thumb {
    background: var(--third-color);
    border-radius: 2px;
}

.product-list .selected-product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
    border-bottom: 1px solid var(--third-color);
    padding: 5px 0;
    gap: 10px ;
}
.product-list .selected-product-item .price-wrp{
    font-weight: 600;
}
.product-list .selected-product-item:last-child {
    border-bottom: none;
}

.sidebar-totals {
    background-color: #F6F6F6;
    border-radius: 10px;
    padding: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    margin-bottom: 20px;
}

.totals-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    font-size: 16px;
    font-weight: 500;
}
.totals-row:not(:last-of-type){
    margin-bottom: 10px;
}
.totals-row span:last-of-type{
    color: var(--black);
    font-weight: 600;
}



.tab-button {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.tab-button.active {
    background-color: var(--theme-color);
    color: #fff;
    border-color: var(--theme-color);
}

.main-category-section {
    display: none;
}

.main-category-section.active {
    display: block;
}

.hidden {
    display: none !important;
}
.price-progress-bar-container {
    margin-bottom: 40px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: #F9FAFB;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}
.price-progress-bar-container .pagetitle{
    padding: 25px 20px 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}
.price-progress-bar-container .pagetitle h3{
    margin-bottom: 12px;
    color: #2C3E50;
    font-size: 28px;
    font-weight: 700;
}

.price-progress-wrp{
    padding: 25px 20px;
}
.price-progress-bar {
    background: #FFE5B4;
    border-radius: 50px;
    height: 18px;
    width: 100%;
    position: relative;
    margin: 15px 0 0;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
            box-shadow: inset 0 2px 4px rgba(0,0,0,0.08);
}

.progress {
    background: -webkit-gradient(linear, left top, right top, from(#F4B41A), to(#E6A617));
    background: -o-linear-gradient(left, #F4B41A, #E6A617);
    background: linear-gradient(to right, #F4B41A, #E6A617);
    border-radius: 50px;
    height: 100%;
    width: 0;
    -webkit-transition: width 0.5s ease;
    -o-transition: width 0.5s ease;
    transition: width 0.5s ease;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0 2px 8px rgba(244, 180, 26, 0.4);
            box-shadow: 0 2px 8px rgba(244, 180, 26, 0.4);
}
.progress::after{
    content: '';
    position: absolute;
    top: 50%;
    right:-28px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: #FFE5B4;
    z-index: -1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.progress::before{
    content: '';
    position: absolute;
    top: 50%;
    right: -22px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    width: 22px;
    height: 22px;
    background-color: #F4B41A;
    z-index: 1;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    -webkit-box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    border: 3px solid var(--white);
}
.with-right::before {
    right: -2px;
}
.with-right::after {
    right: -8px;
}
.price-steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.price-steps .step{
    position: relative;
    padding-top: 35px;
    font-size: 16px;
    font-weight: 700;
    color: #2C3E50;
}
.price-steps .step::after{
    content: '';
    position: absolute;
    width: 2px;
    height: 28px;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    background: #F4B41A;
}
.price-steps .step::before{
    content: '';
    position: absolute;
    top: 22px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 10px;
    height: 10px;
    background: #F4B41A;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    z-index: 1;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.15);
            box-shadow: 0 2px 4px rgba(0,0,0,0.15);
    border: 2px solid var(--white);
}
.category-tabs-inner{
    background-color: #F5F5F5;
    margin-bottom: 30px;
    padding: 8px;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}
.category-tabs-inner::-webkit-scrollbar,
.selected-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.category-tabs-inner::-webkit-scrollbar-track,
.selected-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}
.category-tabs-inner::-webkit-scrollbar-thumb,
.selected-list::-webkit-scrollbar-thumb {
    background-color: rgba(160, 160, 160, 0.5);
    border-radius: 10px;
}
.category-tabs::-webkit-scrollbar-track,
.selected-list::-webkit-scrollbar-track {
    background-color: transparent;
}

.category-left-col{
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}
.category-tabs{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
    gap: 10px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
}
.category-tabs li a{
    position: relative;
    background-color: var(--white);
    border-color: transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-weight: 500;
}
.category-tabs li a .tab-icon-wrapper{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background-color: #F4B41A;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.category-tabs li a .category-tab-icon{
    color: #F4B41A;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.category-tabs li a:hover,
.category-tabs li a:focus{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
    -webkit-box-shadow: 0 4px 12px rgba(111, 217, 67, 0.3);
            box-shadow: 0 4px 12px rgba(111, 217, 67, 0.3);
}
.category-tabs li a:hover .tab-icon-wrapper,
.category-tabs li a:focus .tab-icon-wrapper{
    background-color: rgba(255,255,255,0.2);
}
.category-tabs li a.active{
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: var(--white);
    -webkit-box-shadow: 0 4px 12px rgba(111, 217, 67, 0.4);
            box-shadow: 0 4px 12px rgba(111, 217, 67, 0.4);
}
.category-tabs li a.active .tab-icon-wrapper{
    background-color: rgba(255,255,255,0.25);
}
.category-tabs li a .tab-text{
    white-space: nowrap;
}
.main-category-head {
    gap: 15px;
}
.main-category-head h2{
    font: var(--h4);
    word-break: break-word;
}
.main-category-head .main-category-img{
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.main-category-head .main-category-img img{
    width: 100%;
    height: 100%;
}
.main-category-section .main-category-head{
    margin-bottom: 25px;
   
}
.main-category-head img.main-category-img img{
    width: 100%;
    height: 100%;
    -o-object-fit: scale-down;
       object-fit: scale-down;
}
.main-category-items{
    -webkit-box-shadow: 0px 0px 20px 0px #00000008;
            box-shadow: 0px 0px 20px 0px #00000008;
    border: 1px solid #F4F4F4;
    background-color: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.main-category-items:not(:last-of-type){
    margin-bottom: 30px;
}
.category-card-head{
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
.category-left-col input[type=checkbox]+label,input[type=radio]+label {
    margin: 0 0 0 10px;
}

.category-left-col input[type=checkbox]+label {
    cursor: pointer;
}

.hfeed.site{
    overflow: unset;
}
/* Tooltip Styling */
.progress-tooltip {
    position: absolute;
    top: -40px;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 5px 8px;
    font-size: 12px;
    border-radius: 4px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 10;
    display: none; 
}
body .storefront-breadcrumb{
    display: none;
}
.alert.error {
    color: red;
    padding-top: 10px;
}
.discount-info {
    margin-top: 12px;
    padding: 10px 12px;
    background-color: #FFF8E7;
    border-left: 3px solid #F4B41A;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
.discount-info small {
    display: block;
    font-size: 13px;
    line-height: 1.6;
    font-weight: 600;
}
.discount-details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
}
.site-header .widget_shopping_cart p.total, .site-header .widget_shopping_cart p.buttons, .site-header .widget_shopping_cart li{
    padding-left: 15px !important;
    padding-right: 15px !important;
}
.widget_shopping_cart .mini_cart_item a{
    line-height: 1.4;
}
.selected-addons-section {
    margin: 20px 0 30px;
    padding: 20px;
    background-color: #F0F9FF;
    border: 2px solid #6FD943;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.selected-addons-header h3 {
    font-size: 18px;
    color: #6FD943;
    margin-bottom: 15px;
    font-weight: 600;
}
.selected-category-group {
    margin-bottom: 20px;
}
.selected-category-group:last-child {
    margin-bottom: 0;
}
.selected-category-name {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 2px solid #6FD943;
}
.selected-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 10px;
}
.selected-addon-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
    padding: 10px 15px;
    background-color: var(--white);
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,0.05);
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.selected-addon-item .addon-check {
    color: #6FD943;
    font-size: 18px;
    font-weight: bold;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
.selected-addon-item .addon-name {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}
.selected-addon-item .addon-price {
    font-size: 14px;
    font-weight: 600;
    color: #F4B41A;
    -ms-flex-negative: 0;
        flex-shrink: 0;
}
/* responsive css end */
.price-progress-bar-container .saving-des{
    margin: 15px auto 0;
    font-size: 18px;
    color: var(--black);
    font-weight: 500;
}
.price-progress-bar-container .shopping-des{
    max-width: 66%;
    width: 100%;
    margin: 0 auto 15px;
    color: var(--black);
    font-size: 16px;
}
.main-category-wrp {
    gap: 15px;
}
.price-progress-bar-container .bulk-price-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}
.price-progress-bar-container .bulk-price-list li{
    position: relative;
    font-size: 18px;
    color: var(--white);
    background-color: var(--dark-green);
    padding: 8px 24px;
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    font-weight: 600;
    -webkit-box-shadow: 0 3px 10px rgba(1, 61, 41, 0.3);
            box-shadow: 0 3px 10px rgba(1, 61, 41, 0.3);
}
.price-progress-bar-container .bulk-price-list li:not(:last-of-type)::after{
    content: '';
    background-image: url('../../../themes/storefront-child/assets-v2/images/common-img/bulk-arrow-right.webp');
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    right: -40px;
    height: 20px;
    width: 20px;
}
.price-progress-bar-container .bulk-price-list {
    gap: 60px;
}

.product-card .price del {
    font-size: 16px;
}

/* single page css start */
.single .theme-details-inner del .woocommerce-Price-amount {
    font-size: 28px !important;
}
/* single page css end */


/* special-bulk-offer page css start */
.app-features-card .price del{
    font-size: 18px;
    font-weight: 600;
    opacity: 1;
}
.app-features-card ins,
.app-features-card .price{
font-size: 22px;
font-weight: 700 !important;
}
.checkout-header h3,
.checkout-header p{
    margin-bottom: 10px !important;
}
.no-selection{
    padding: 10px !important;
}
/* special-bulk-offer page css end */

.price-progress-wrp{
    margin: 0 !important;
}
.woocommerce-cart-form .shop_table ins{
    font-size: 16px;
    margin-left: 5px;
}
.cart-header .widget_shopping_cart .product_list_widget li{
    padding: 15px !important;
}
.widget_shopping_cart .mini_cart_item a{
    padding: 0 !important;
}
.final-row{
    padding: 10px 0 0 !important;
}
.main-category-row {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    padding: 20px;
    border: 1px solid var(--border-color);
}
.checkout-section {
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
    border: 1px solid var(--border-color);
}

/* responsive css start */
@media (max-width: 1199px) {
    .totals-row{
        font-size: 14px;
    }

    .child-category .row{
        margin: 0 -10px;
        row-gap: 20px;
    }
    .child-category .row [class*="col-"]{
        padding: 0 10px;
    }
    .sticky-column{
        top: 140px;
    }
    .price-progress-bar-container .pagetitle h3{
        font-size: 22px;
    }
    .price-progress-bar-container .bulk-price-list li {
        font-size: 16px;
        padding: 5px 14px;
    }
    .price-progress-bar-container .bulk-price-list li:not(:last-of-type)::after {
        right: -30px;
    }   
    .price-progress-bar-container .bulk-price-list {
        gap: 40px;
    } 
    .app-features-card ins{
        font-size: 20px !important;
    }
    .app-features-card .price del{
        font-size: 16px !important;
    }
}
@media (max-width: 991px) {
    .sticky-column{
        top: 120px;
    }
    .category-card-body{
        padding: 20px 15px;
    }
    .app-features-inner .app-features-top h6{
        font-size: 14px;
    }
    .price-progress-bar-container .shopping-des {
        max-width: 100%;
    }
    .price-progress-bar-container .bulk-price-list li:not(:last-of-type)::after{
        display: none;
    }
    .price-progress-bar-container .bulk-price-list {
        gap: 20px;
    }
    .price-progress-bar-container .bulk-price-list li {
        font-size: 14px;
        padding: 5px 8px;
    }
    .price-progress-bar{
        margin: 0;
    }
    .product-card .price del {
        font-size: 14px;
    }
    .price-progress-bar-container{
        margin-bottom: 30px;
    }

    .checkout-section,
    .main-category-row,
    .category-left-col,
    .category-card-head{
        padding: 15px !important;
    }
}
@media (max-width: 767px) {
   .main-category-inner .category-tabs-wrp{
    order: 2;
 }
 .main-category-inner .col-md-8{
    order: 3;
 }
 .main-category-inner .col-md-4{
    order: 1;
 }
    .price-progress-bar-container .pagetitle{
        padding: 20px 15px;
        font: var(--h4);
    }
    .price-progress-wrp{
        padding: 15px;
    }
    .price-steps .step{
        font-size: 14px;
    }
    .category-tabs{
        gap: 8px;
    }
    .category-tabs li .category-tab-icon{
        width: 16px;
        height: 16px;
    }
    .tab-button{
        padding: 10px 15px;
    }
    .price-progress-bar-container .pagetitle h3{
        font-size: 18px;
    }
    .main-category-head .main-category-img{
        width: 50px;
        height: 50px;
    }
    .category-left-col,
    .checkout-section{
        border: 0 !important;
        padding: 0 !important;
    }
 
    .main-category-items,.price-progress-bar-container{
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
    }
    .main-category-items:not(:last-of-type) {
        margin-bottom: 25px;
    }
 
    .price-progress-bar{
        height: 10px;
    }
    .progress::after{
        width: 25px;
        height: 25px;
    }
    .progress::before{
        width: 15px;
        height: 15px;
    }
    .category-tabs-inner,
    .checkout-section,
    .main-category-section .main-category-head{
        margin-bottom: 20px;
    }
    .category-tabs-inner::-webkit-scrollbar {
        height: 4px;
    }
    .price-progress-bar-container .bulk-price-list{
        grid-template-columns: repeat(2, 1fr);
        display: -ms-grid;
        display: grid;
        gap: 15px;
    }
    .main-category-container .child-category h2{
        font-size: 18px;
    }
    .app-features-card ins {
        font-size: 18px !important;
    }
    .category-card-head input[type="checkbox"],
    .category-checkbox-wrp input[type="checkbox"] {
        height: 17px;
        width: 17px;
    }
    .category-left-col input[type=checkbox]+label, input[type=radio]+label{
        margin: 0 0 0 8px;
    }
    .app-features-bottom .price{
        font-size: 20px;
    }
}
@media (max-width: 575px) {
    .price-progress-bar-container h3,
    .main-category-container .child-category h2{
        font-size: 16px;
    }
    .price-progress-bar-container .bulk-price-list{
        grid-template-columns: repeat(1, 1fr);
    }
}
