.elementor-element[data-library-element-type^="webkoob_"]{
    position:relative;
}

.elementor-element[data-library-element-type^="webkoob_"]::after{
    content:"WBKB";

    position:absolute;
    top:-4px;
    right:-4px;

    background:#18d5cf;
    color:#fff;

    font-size:10px;
    font-weight:700;
    line-height:1;

    padding:4px 8px;

    border-radius:0 0 0 12px;

    z-index:9999;
    pointer-events:none;
}

/* stle by add to cart widgect - amirho3ein.ir - webkoob */


.wbkb-add-cart-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    transition:.3s;
    overflow:hidden;
}

.wbkb-add-cart-btn.loading{
    pointer-events:none;
}

.wbkb-add-cart-btn.loading i,
.wbkb-add-cart-btn.loading svg,
.wbkb-add-cart-btn.loading .wbkb-btn-text{
    opacity:0;
}

.wbkb-add-cart-btn.loading::after{
    content:'';
    position:absolute;
    width:18px;
    height:18px;
    border:2px solid rgba(255,255,255,.4);
    border-top-color:#fff;
    border-radius:50%;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    animation:wbkbSpin .7s linear infinite;
}

@keyframes wbkbSpin{
    to{
        transform:translate(-50%,-50%) rotate(360deg);
    }
}

/* stle by category product widgect - amirho3ein.ir - webkoob */

.webkoob-category-box-wrap{
display:grid;
grid-template-columns:repeat(var(--columns),1fr);
gap:var(--gap);
}

.webkoob-category-item{
text-decoration:none;
text-align:center;
padding:15px;
border-radius:12px;
transition:.3s;
display:block;
}

.webkoob-category-image img{
max-width:80px;
height:auto;
display:block;
margin:0 auto 12px;
}

.webkoob-category-title{
font-size:14px;
line-height:1.8;
}

@media(max-width:767px){

.webkoob-category-box-wrap{
    display:flex;
    overflow-x:auto;
    flex-wrap:nowrap;
    gap:15px;
    padding-bottom:10px;
    -webkit-overflow-scrolling:touch;
    scrollbar-width:none;
}

.webkoob-category-box-wrap::-webkit-scrollbar{
    display:none;
}

.webkoob-category-item{
    min-width:120px;
    flex:0 0 auto;
}


}


/* stle by single product carosel - amirho3ein.ir - webkoob */


.webkoob-product-carousel {
    position: relative;
    width: 100%;
}

.webkoob-carousel-inner {
    position: relative;
}

.webkoob-carousel-item {
    display: none;
}

.webkoob-carousel-top-loader {
    width: 100%;
    height: 2px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.webkoob-carousel-top-loader-bar {
    width: 0%;
    height: 100%;
    background: #4caf50;
    transition: width linear;
}


/* stle by discount-badge - amirho3ein.ir - webkoob */

.wbkb-discount-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:14px;
    font-weight:700;
    line-height:1;
}

/* stle by stock alert - amirho3ein.ir - webkoob */

.wbkb-stock-alert{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    line-height:1.5;
}

.wbkb-stock-alert svg{
    width:14px;
    height:14px;
}

.wbkb-stock-alert i{
    font-size:14px;
}

/* stle by product-title - amirho3ein.ir - webkoob */
.wbkb-product-title{
    margin:0;
    line-height:1.6;
}