.tool-carousel-section{
    border-radius:10px;
}
.tool-carousel-wrapper{
    position:relative;
    /* margin-top:20px; */
}
.tool-carousel-viewport{
    position:relative;
    overflow:hidden;
    user-select:none;
}
.tool-slides-container{
    display:flex;
    transition:transform 0.35s ease;
}
.tool-slide{
    flex:0 0 80%;
    /* padding:12px; */
    /* opacity:0; */
    margin-top:10px;
    margin-bottom:10px;
    transition:opacity 0.2s ease;
    margin-right:10px;
}
.tool-slide.active{
    opacity:1;
}
.tool-slide-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:36px;
    height:36px;
    font-size:16px;
    border-radius:50%;
    border:none;
    background:none;
    color:#999;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:background 0.2s ease,transform 0.2s ease,opacity 0.2s ease;
    cursor:pointer;
    z-index:10;
    opacity:0.9;
}
.tool-slide-arrow.prev{
    left:10px;
}
.tool-slide-arrow.next{
    right:10px;
}

.tool-card-main{
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: 5px;
    background:#fff;
}

.tool-card{
    display:flex;
    gap:8px;
    padding:0px 10px 10px 10px;
    align-items:center;
}

.tool-card-media{
    position:relative;
    width:120px;
    height:120px;
    border-radius:12px;
    overflow:hidden;
    background:#e6f1fb;
    flex-shrink:0;
}
.tool-card-img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.tool-card-placeholder{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
    color:#7a8da3;
}
.tool-offer-badge{
    position:absolute;
    top:8px;
    left:8px;
    background:#2BC582;
    color:#fff;
    font-size:11px;
    padding:4px 8px;
    border-radius:6px;
    text-transform:uppercase;
    letter-spacing:0.5px;
}
.tool-card-body{
    flex:1;
}
.tool-card-title{
    font-size:1.2rem;
    font-weight:600;
    margin-bottom:4px;
    color:#11253a;
    padding-top:6px;
    padding-left:10px;
}
.tool-card-category{
    font-size:0.95rem;
    color:#4a5e78;
    margin-bottom:8px;
}
.tool-card-location{
    font-size:12px;
    color:#5f738c;
    display:flex;
    align-items:center;
    gap:6px;
    margin-bottom:12px;
    margin-left:10px;
}
.tool-card-pricing{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-bottom:12px;
}
.tool-price-block{
    min-width:auto;
    padding-left:5px;
    padding-right:0px;
}

.hire_buy_btn{
    padding-left:5px;
    margin-top:3px;
}

.view-profile-btn{
    padding:5px;
    min-width:auto;
}

.tool-price-label{
    font-size:0.8rem;
    text-transform:uppercase;
    color:#7a8da3;
    letter-spacing:0.5px;
    margin-bottom:4px;
}
.tool-price-value{
    display:flex;
    /* flex-direction:column; */
}
.tool-price-current{
    font-size:12px;
    font-weight:700;
    color:#777;
}
.tool-price-compare{
    font-size:11px;
    color:#9ca9b7;
    text-decoration:line-through;
    margin-top:2px;
    margin-left:5px;
}
.tool-card-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
}
.tool-carousel-controls{
    display:flex;
    align-items:center;
    gap:12px;
    /* padding-bottom:10px; */
    flex-wrap:wrap;
    /* margin-left:5px; */
}
.tool-nav-btn{
    width:25px;
    height:25px;
    font-size:15px;
    border-radius:50%;
    border:none;
    background:#00a0d2;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 4px 12px rgba(0,160,210,0.25);
    transition:background 0.2s ease;
}
.tool-bullets{
    display:flex;
    gap:6px;
}
.tool-bullet{
    width:8px;
    height:8px;
    border-radius:50%;
    border:none;
    background:#c7d8e2;
    padding:0;
    transition:background 0.2s ease,transform 0.2s ease;
}
.tool-bullet.active{
    background:#00a0d2;
    transform:scale(1.2);
}
.tool-see-all-link{
    margin-left:auto;
    margin-right:0px;
}
@media(max-width:768px){
    .tool-card{
        flex-direction:column;
        text-align:center;
    }
    .tool-card-media{
        width:100%;
        height:160px;
    }
    .tool-card-location{
        justify-content:center;
    }
    .tool-card-actions{
        justify-content:center;
    }
    .tool-slide-arrow{
        display:none;
    }
    .tool-carousel-controls{
        flex-wrap:wrap;
    }
    /* .tool-see-all-link{
        margin-left:0;
    } */
}

