.price-list__item{
    margin-bottom: 20px;
}

.price-list__row{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
}

.price-list__col-left{
    width:70%;
    display:flex;
    flex-direction: column;
    cursor: pointer;
}

.price-list__col-right{
    width:30%;
    text-align:right;
    flex-shrink:0;
}

.price-list__title{
    font-weight:600;
    display:flex;
    align-items:center;
}

.price-list__toggle-icon{
    display:inline-block;
    font-weight:700;
    margin-right:8px; 
    transition: transform 0.3s ease;
}

/* Smooth slide animacija */
.price-list__description{
    height:0;
    overflow:hidden;
    margin-top:0;
    font-size:0.9em;
    color:#666;
    transition: height 0.5s ease, margin-top 0.5s ease;
    margin-left: 30px;
}

.price-list__description.active{
    max-height:500px; 
    margin-top:4px;
}

.price-list__price{
    white-space:nowrap;
    font-weight:700;
}

.price-list__item{
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc; 
    padding-bottom: 10px;
}

/* ------------------------------
RESPONZIVNO ZA MOBILNE
------------------------------ */
@media (max-width: 768px) {

    .price-list__row{
        display:flex;
        justify-content:space-between;
        align-items:flex-start;
        gap:10px;
    }

    .price-list__col-left{
        width:70%;
    }

    .price-list__col-right{
        width:30%;
        text-align:right;
    }

    .price-list__description{
        width:100%;
        margin-left: 20px;
    }
}