




/* Hot spot baner */

.hero-section {
    position: relative;
    width: 100%;
}

.hero-section picture,
.hero-section img {
    width: 100%;
    height: 100%;
    object-fit: center;
    display: block;
}

.hotspot{
    z-index: 10;
}

.hotspot-tooltip {
    display: none;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    width: 200px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 20;
    text-decoration: none;
}

.hotspot:hover .hotspot-tooltip {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hotspot-tooltip img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.hotspot-tooltip__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-left: 15px;
}

.hotspot-tooltip__naziv {
    font-size: 15px;
    font-weight: 500;
    color: #171717;
}

.hotspot-tooltip__cena {
    font-size: 12px;
    color: #666;
}

/* Pulsing dot */

.hotspot-marker {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
}

.hotspot-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    z-index: 2;
}

.hotspot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse 2s ease-out infinite;
    z-index: 1;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(5);
        opacity: 0;
    }
}

/* Tab products*/

.tab-content .product img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}



/* Video sekcija nase vrednosti */

.nase-vrednosti {
    position: relative;
    margin-top: -25px;
}

.nase-vrednosti::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}


.nase-vrednosti .vrednosti-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    width: 100%;
}

.nase-vrednosti .vrednosti-video video {
    width: 100%;
}

.nase-vrednosti .vrednosti-video {
    height: 500px;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.nase-vrednosti .vrednosti-content h2 {
    font-size: 60px;
    color: #fff;
    font-weight: 400;
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.vrednosti-content {
    position: relative;
    z-index: 2;
}

.nase-vrednosti .vrednosti-content p {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
}


/* Hotspot */

.hotspot{
    z-index: 3;
}
.hotspot-tooltip {
    position: absolute; 
    top: 45px; 
    left: 50%; 
    transform: translateX(-50%);
    background: #e1dcd8;
    color: #333333; 
    border-radius: 5px;
    font-size: 12px;  
    display: none;
    min-width: 315px;
    padding: 10px;
    backdrop-filter: blur(1px);
    z-index: 15;
}

.hotspot-tooltip a {
    display: flex;
    align-items: center;
}

.hotspot-tooltip a {

}

/* Izdvojeni proizvod na pocetnoj */

.izdvojeni-proizvod {
    padding: 115px 0;
    background: #e1dcd8;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: -20px;
    position: relative;
    z-index: 3;
}

.izdvojeni-proizvod__wrap {
    display: grid;
    grid-template-columns: minmax(0, 62%) minmax(0, 1fr);
    grid-template-rows: auto;
    gap: 60px;
    padding: 0 7%;
}

.izdvojeni-proizvod__gallery {
    display: grid;
    grid-template-rows: auto auto;
    gap: 20px;
    grid-template-columns: minmax(0, 64%) minmax(0, 1fr);
}

.izdvojeni-proizvod__main-img {
    grid-column: 1;
    grid-row: 1 / 3;

    position: sticky;
    top: 30px;
    align-self: start;
}

.izdvojeni-proizvod__main-img img,
.izdvojeni-proizvod__thumb img {
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

.izdvojeni-proizvod__main-img img {
    min-height: 800px;
}

.izdvojeni-proizvod__thumb img {
    height: 100%;
}

.izdvojeni-proizvod__thumbs {
    grid-column: 2;
    grid-row: 1 / 3;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.izdvojeni-proizvod__thumb {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
}

.izdvojeni-proizvod__info {
    display: flex;
    flex-direction: column;
    color: #333333;
    position: sticky;
    top: 25px;
    align-self: start;
}

.izdvojeni-proizvod__info h2 {
    font-size: 45px;
    font-weight: 400;
}

.izdvojeni-proizvod__price {
    font-size: 25px;
    color: #333333;
}

.izdvojeni-proizvod__desc {
    font-size: 16px;
    line-height: 1.6;
}

.izdvojeni-proizvod__btn-add {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #171717;
    color: #fff;
    padding: 18px 30px;
    border-radius: 40px;
    font-size: 15px;
    text-decoration: none;
    margin-top: 30px;
}

.izdvojeni-proizvod__btn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #171717;
    text-decoration: none;
    padding-bottom: 4px;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 17px;
}


.izdvojeni-proizvod_cena {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 10px 0;
}

.izdvojeni-proizvod__info .izdvojeni-proizvod__desc strong {
    display: block;
    margin-bottom: 20px;
}

.btn-separator {
    margin: 0 10px;
}

.izdvojen_proizvod_info {
    background: #dcd8d4;
    padding: 25px;
    margin-top: 25px;
    border-radius: 10px;
}

.izdvojen_proizvod_info li {
    padding: 15px;
    display: flex;
    align-items: center;
}

.izdvojen_proizvod_info li svg {
    margin-right: 10px;
}

.izdvojen_proizvod_info li:first-child {
    margin-bottom: 10px;
}

.izdvojen_proizvod_info li:first-child {
    background: #e1dcd8;
}




/* Cistoca koja inspirise */

.cistoca-inspirise__slika,
.cistoca-inspirise {
    position: relative;
}

.cistoca-inspirise__slika {
    overflow: hidden;
    height: 600px;
}

.cistoca-inspirise__slika::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
}

.cistoca-inspirise__slika img {
width: 100%;
    height: 130%;
    object-fit: cover;
    will-change: transform;
    display: block;
}

.cistoca-inspirise__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    color: #fff;
    text-align: center;
    width: 100%;
}

.cistoca-inspirise__wrap h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 400;
}

.cistoca-inspirise__wrap p {
    font-size: 20px;
    width: 55%;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-weight: 300;
}

/* Nas pristup zdravlju */

.nas-pristup {
    padding: 80px 0;
    background: #e1dcd8; 
    overflow: hidden;
}

.nas-pristup .nas-pristup__header {
    text-align: center;
}

.nas-pristup .nas-pristup__header h2 {
    font-size: 60px;
    font-weight: 400;
    color: #333333;
}

.nas-pristup__kolone {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 25px;
    margin-top: 50px;
}

.nas-pristup__kolone .nas-pristup__kolona {
    text-align: center;
}

.nas-pristup__kolone .nas-pristup__kolona img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.nas-pristup__kolone h3 {
    font-weight: 400;
    font-size: 20px;
    margin: 20px 0;
}





/* Vise od nege */

.vise-od-nege {
    background: #e1dcd8;
    padding: 80px 0;
}


.vise-od-nege .vise-od-nege__wrap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    grid-gap: 30px;
}

.vise-od-nege .vise-od-nege__content h2 {
    font-size: 60px;
    font-weight: 400;
    color: #333333;
}

.vise-od-nege .vise-od-nege__content p {
    font-size: 20px;
    margin-top: 25px;
}


.vise-od-nege {
    overflow: hidden;
}

.vise-od-nege__wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 650px;
}

.vise-od-nege__slika {
    height: 650px;
    overflow: hidden;
    position: relative;
    border-radius: 25px;
}

.vise-od-nege__slika img {
    width: 100%;
    height: 140%;
    object-fit: cover;
    object-position: center;
    will-change: transform;
}

.vise-od-nege__content {
    padding: 60px;
}

.vise-od-nege__content h2 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 20px;
}


@media only screen and (max-width: 1600px) {
    .nav-menu ul li .sub-menu::before,
    .nav-menu ul li .sub-menu::after {
        top: 5px;
    }
    .proizvodi-grid .carousel-header h2 {
        font-size: 45px;
    }

    .proizvodi-grid .tabs button {
        padding: 15px 30px;
    }
    .izdvojeni-proizvod__main-img img {
        min-height: 700px;
    }
    .nase-vrednosti .vrednosti-content p {
        font-size: 17px;
    }
    .nase-vrednosti .vrednosti-content p {
        margin-top: 0;
    }
    .izdvojeni-proizvod__wrap {
        padding: 0;
    }
    .izdvojeni-proizvod__info h2 {
        font-size: 37px;
    }
    .izdvojeni-proizvod__price {
        font-size: 21px;
    }
    .izdvojen_proizvod_info li span {
        font-size: 14px;
    }
    .izdvojeni-proizvod__btn-more {
        font-size: 15px;
    }
    .trenuci-inspirisu h2,
    .cistoca-inspirise__wrap h2,
    .nas-pristup .nas-pristup__header h2,
    .korisnici .korisnici__header h2,
    .korisnici .korisnici__header p,
    .vise-od-nege .vise-od-nege__content h2 {
        font-size: 50px;
    }   
    .trenuci-inspirisu p {
        font-size: 16px;
    }
    .trenuci-inspirisu .heading a {
        margin-top: 15px;
    }
    .cistoca-inspirise__wrap p {
        font-size: 16px;
    }
    .cistoca-inspirise__slika {
        height: 500px;
    }
    .korisnici__lista .korisnici__kartica {
        max-width: 40%;
    }
    .vise-od-nege__slika {
        height: 550px;
    }
    .vise-od-nege .vise-od-nege__content p {
        font-size: 16px;
    }
    footer.main_footer .footer_wrap .footer_newsletter .footer_news_top span {
        font-size: 35px;
    }
    footer.main_footer .footer_wrap .footer_newsletter .fluentform {
        width: 100%;
    }
    footer.main_footer .footer_wrap .footer_phone a {
        font-size: 21px;
    }
    footer.main_footer .footer_wrap .footer_phone {
        gap: 5px;
    }


}


@media only screen and (max-width: 1300px) { 
    .trenuci-inspirisu h2, 
    .cistoca-inspirise__wrap h2, 
    .nas-pristup .nas-pristup__header h2, 
    .korisnici .korisnici__header h2, 
    .korisnici .korisnici__header p, 
    .vise-od-nege .vise-od-nege__content h2,
    .nase-vrednosti .vrednosti-content h2 {
        font-size: 45px;
    }
    .nase-vrednosti .vrednosti-content p {
        font-size: 16px;
    }
    .nase-vrednosti .vrednosti-content {
        width: 50%;
    }
    .izdvojeni-proizvod__wrap {
        grid-template-columns: minmax(0, 55%) minmax(0, 1fr);
        gap: 30px;
    }
}

@media only screen and (max-width: 992px) { 
    .trenuci-inspirisu h2, 
    .cistoca-inspirise__wrap h2, 
    .nas-pristup .nas-pristup__header h2, 
    .korisnici .korisnici__header h2, 
    .korisnici .korisnici__header p, 
    .vise-od-nege .vise-od-nege__content h2, 
    .nase-vrednosti .vrednosti-content h2,
    .proizvodi-grid .carousel-header h2 {
        font-size: 40px;
    }

    .izdvojeni-proizvod__wrap {
        grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
    }
}


@media only screen and (max-width: 768px) {
    .nase-vrednosti .vrednosti-video {
        height: 430px;
    }
    .nase-vrednosti .vrednosti-content {
        width: 100%;
    }
    .proizvodi-grid .tab-content .splide__slide img {
        width: 100%;
        height: 100%;
    }
    .proizvodi-grid__list {
        display: flex;
        gap: 20px;
        white-space: nowrap;
        overflow: scroll;
    }
    .proizvodi-grid__list li.product {
        min-width: 35%;
    }
    .proizvodi-grid .tab-content {
        margin-right: -20px;
    }
    .tab-content .product img,
    .nase-vrednosti::after,
    .nase-vrednosti .vrednosti-video {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    

    .izdvojeni-proizvod__wrap {
        grid-template-columns: 1fr;
    }

    .trenuci-inspirisu .trenuci-inspirisu__mali-naslov {
        font-size: 17px;
    }

    .trenuci-inspirisu__proizvodi {
        display: inherit;
    }

    .trenuci-inspirisu__proizvodi.splide {
    display: block !important;
}


    .cistoca-inspirise__wrap p {
        width: 75%;
    }

    .vise-od-nege .vise-od-nege__wrap {
        grid-template-columns: 1fr;
    }
    .vise-od-nege__slika {
        border-radius: 20px;
    }
    .vise-od-nege__content {
        padding: 0;
    }

}

@media only screen and (max-width: 600px) {

    
    .trenuci-inspirisu h2, 
    .cistoca-inspirise__wrap h2, 
    .nas-pristup .nas-pristup__header h2, 
    .korisnici .korisnici__header h2, 
    .korisnici .korisnici__header p, 
    .vise-od-nege .vise-od-nege__content h2, 
    .nase-vrednosti .vrednosti-content h2, 
    .proizvodi-grid .carousel-header h2, 
    .izdvojeni-proizvod__info h2 {
        font-size: 30px;
    }
    .tab-content .product img, .nase-vrednosti::after, .nase-vrednosti .vrednosti-video {
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    .product-info-wrap {
        border-bottom-left-radius: 10px;
        border-bottom-right-radius: 10px;
    }
    .nase-vrednosti .vrednosti-video {
        height: auto;
    }
    .nase-vrednosti .vrednosti-video video {
        height: 350px;
        object-fit: cover;
    }
    .proizvodi-grid__list {
        gap: 0;
        padding-left: 10px;
    }
    .proizvodi-grid__list li.product {
        min-width: 70%;
        padding-left: 10px;
    }
    .proizvodi-grid .container {
        padding: 0;
    }
    .proizvodi-grid .tab-content {
        margin-right: 0;
    }
    .proizvodi-grid .tabs button {
        padding: 11px 20px;
        font-size: 13px;
    }
    .izdvojeni-proizvod__main-img img {
        min-height: 300px;
    }
    .izdvojeni-proizvod__gallery,
    .izdvojeni-proizvod__thumbs {
        gap: 10px;
    }
    .izdvojeni-proizvod {
        padding: 50px 0;
    }
    .izdvojen_proizvod_info {
        padding: 15px;
    }
    .view_product_link {
        bottom: 30px;
    }
    .cistoca-inspirise__slika {
        height: 440px;
    }
    .cistoca-inspirise__wrap p {
        width: 100%;
        padding: 0 20px;
    }
    .nase-vrednosti .vrednosti-content p {
        padding: 0 15px;
    }
    .nas-pristup {
        padding: 40px 0;
    }
    .nas-pristup__kolone {
        display: inherit;
    }
    .nas-pristup__kolone .splide__pagination {
        position: static;
    }
    .nas-pristup__kolone .splide__pagination__page {
        background: #000;
        width: 7px;
        height: 7px;
        border: 2px solid transparent;
    }
    .nas-pristup__kolone .splide__pagination__page {
        background: #000;
        width: 7px;
        height: 7px;
        border: 2px solid transparent;
    }

    .nas-pristup__kolone .splide__pagination__page.is-active {
        border: 2px solid #000;
        background: transparent;
    }
    .vise-od-nege {
        padding: 20px 0 80px;
    }
    .vise-od-nege__slika {
        height: 450px;
    }
    .vise-od-nege__slika {
        border-radius: 10px;
    }
    .vise-od-nege .vise-od-nege__wrap {
        grid-gap: 0;
    }
    .vise-od-nege {
        padding: 30px 0 20px;  
    }
    .korisnici .korisnici__header {
        position: static;
        display: inline-block;
        line-height: 1.2;
        padding-left: 30px;
    }
    .korisnici {
        overflow: hidden;
        padding: 50px 0 25px;
    }
    .korisnici__lista .korisnici__kartica {
        max-width: 100%;
    }
    .korisnici__lista .korisnici__kartica:nth-child(2),
    .korisnici__lista .korisnici__kartica:nth-child(3),
    .korisnici__lista .korisnici__kartica:nth-child(4) {
        left: 0;
    }
    .korisnici .korisnici__header p {
        margin-top: 0;
    }
    .proizvodi-grid {
        padding: 50px 0 80px;
    } 
    .trenuci-inspirisu-proizvodi {
        padding-bottom: 60px;
    }

    .proizvodi-grid__list {
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .proizvodi-grid__list::-webkit-scrollbar {
        display: none;
    }

    .proizvodi-grid__scroll-track {
        height: 2px;
        background: rgba(0,0,0,0.1);
        border-radius: 2px;
        margin-top: 16px;
        overflow: hidden;
        width: 100%;
        margin-left: 20px;
    }

    .proizvodi-grid__scroll-thumb {
        height: 100%;
        background: #222;
        border-radius: 2px;
        width: 30%;
        transform: translateX(0);
        transition: transform 0.1s linear;
    }



}



