
/* Hover efekat - dugme se pojavljuje od dole */
.product-card {
    overflow: hidden;
}

.product-card-body {
    transform: translateY(100%);
    transition: transform 0.3s ease;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
    padding: 10px;
}

.product-card {
    position: relative;
}
.product-card:hover .product-card-body {
    transform: translateY(0);
}




/* .product-card-body {
    background: rgba(255,255,255,0.5) !important;
    backdrop-filter: blur(4px);
} */

/* Dugme detaljnije - custom hover boja */
/* .btn-detaljnije:hover {
    background: #e30613 !important;
    color: #fff !important;
} */



.product-card-body {
    background: transparent !important;
    backdrop-filter: none !important;
}
.btn-detaljnije {
    background: rgba(44, 62, 80,0.75) !important;
    color: #fff !important;
    padding: 6px 0 !important;
}
.btn-detaljnije:hover {
    background: rgba(44, 62, 80,0.75) !important;
    color: #fff !important;
}

.product-card:hover .product-card-img img {
    transform: none !important;
}


/* .blog-card-img img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
} */