.elementor-2399 .elementor-element.elementor-element-32eb873{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:50px;--padding-bottom:50px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for shortcode, class: .elementor-element-112d48a *//* =========================================
   BOLD CATEGORIES GRID STYLES
========================================= */

/* Kontejner grida */
.bold-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
}

/* Pojedinačna stavka - mora imati overflow: hidden za zoom efekat */
.bold-category-item {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* Zadržava proporciju 16:10 */
    overflow: hidden; 
}

/* Link koji obuhvata celu stavku */
.bold-category-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none !important;
}

/* Sloj sa slikom koji se zumira */
.bold-category-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease; /* Glatka animacija za zoom */
    z-index: 1;
}

/* Zoom in efekat slike na hover */
.bold-category-item:hover .bold-category-bg {
    transform: scale(1.05); /* Vrlo mali zoom in (5%) */
}

/* Mali overlay po defaultu koji omogućava čitljivost teksta */
.bold-category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Blago zatamnjenje preko cele slike i jače zatamnjenje pri dnu */
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0) 100%);
    z-index: 2;
}

/* Sadržaj (Tekst i link) */
.bold-category-content {
    position: absolute;
    bottom: 30px; /* Udaljenost teksta od dna */
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3; /* Iznad slike i overlay-a */
    padding: 0 15px;
}

/* Naslov kategorije - Tvoj tačan CSS */
h3.bold-category-title {
    font-family: "Montserrat", Sans-serif;
    font-size: 26px;
    font-weight: 500;
    text-transform: uppercase;
    line-height: 1.3em;
    letter-spacing: 1px;
    color: #FFFFFF;
    margin: 0 0 5px 0;
}

/* Tekst "pogledaj sve" - Tvoj tačan CSS */
.bold-category-view-all {
    font-family: "Montserrat", Sans-serif;
    font-weight: 400;
    text-decoration: underline;
    text-underline-offset: 4px; /* Lepše izgleda kada je linija malo odmaknuta */
    color: #FFFFFF;
    font-size: 15px; /* Dodato da se uklopi uz naslov, promeni po želji */
}

/* =========================================
   RESPONZIVNOST (MEDIA QUERIES)
========================================= */

/* Za tablete - 2 kolone */
@media (max-width: 992px) {
    .bold-categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Za mobilne telefone - 1 kolona */
@media (max-width: 576px) {
    .bold-categories-grid {
        grid-template-columns: 1fr;
    }
    
    h3.bold-category-title {
        font-size: 22px; /* Blago smanjen naslov da bolje stane na uske ekrane */
    }
}/* End custom CSS */