/* ================= GLOBAL ================= */

body{
    margin:0;
    font-family: Arial, sans-serif;
    background:#f2f2f2;
    color:#333;
}

body.menu-open{
    overflow:hidden;
}

.container{
    max-width:1200px;
    margin:0 auto;
    padding:0px 10px;
}

/* ================= HEADER ================= */

.header{
    background:#ffffff;
}

.header-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:120px;
}

.logo img{
    height:80px;
    width:auto;
}

.header-contacts{
    text-align:right;
    font-size:16px;
    line-height:1.5;
}

.header-contacts a{
    display:block;
    font-weight:600;
    color:#333;
    text-decoration:none;
}

/* ================= NAVIGATION DESKTOP ================= */

.nav-bar{
    background:#f1f1f1;
    border-top:1px solid #ddd;
    border-bottom:1px solid #ddd;
}

.nav-inner{
    max-width:1200px;
    margin:0 auto;
    display:flex;
    /* justify-content:center; */
    align-items:center;
    position:relative;
    left:40px;
    gap:40px;
}

/* MENUS */

.menu{
    display:flex;
    gap:35px;
    list-style:none;
    padding:15px 0;
    margin:0;
}

.menu li{
    position:relative;
}

.menu .sub-menu{
    position:absolute;
    top:100%;
    left:0;
    z-index:9999;
    background:#fff;
    list-style:none;
    padding:10px 0;
    margin:0;
    min-width:220px;
    border:1px solid #ddd;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .25s ease;
}

.menu .sub-menu a{
    display:block;
    padding:10px 18px;
    font-size:14px;
}

.menu li:hover > .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.menu li:has(.sub-menu) > a::after{
    content:"▾";
    font-size:14px;
    margin-left:6px;
}

.menu li a{
    text-decoration:none;
    font-weight:700;
    font-size:16px;
    color:#333;
    transition:0.2s;
}
.menu .sub-menu a:hover{
    color:#fff;
	background:#d82d25
}
.menu li a:hover{
    color:#d82d25;
}

/* header menu hidden on desktop */

.menu-header{
    display:none;
}

/* close button hidden */

.mobile-close{
    display:none;
}
.nav-bar-top{
    height:30px;
    background:#353535;
    color:#fff;
}

.nav-inner-top{
    max-width:1200px;
    margin:0 auto;

    display:flex;
    justify-content:flex-end;
    align-items:center;
}

.nav-inner-top .menu{
    display:flex;
    gap:35px;
    list-style:none;
    padding:5px 0;
    margin:0;
}

.nav-inner-top .menu li a{
    text-decoration:none;
    font-weight:700;
    font-size:14px;
    color:#fff;
}

/* ================= MOBILE ================= */

@media (max-width:768px){

    /* OVERLAY PANEL */
    .nav-bar-top{display: none;}
    .nav-inner{
        position:fixed;
        top:0;
        left:0;
        right:0;
        bottom:0;

        background:#737477;

        display:flex;
        flex-direction:column;
        align-items:center;

        overflow-y:auto;

        transform:translateX(100%);
        transition:transform .4s ease;

        z-index:9999;
    }

    .nav-bar.active .nav-inner{
        transform:translateX(0);
    }

    /* OPEN MENU */

    .nav-bar.active .nav-inner{
        transform:translateX(0);
    }

    /* PRIMARY MENU */

    .primary-menu{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:18px;
        margin-top:80px;
    }

    /* HEADER MENU */

    .menu-header{
        display:block;
        margin-top:80px;
        border-top:0px solid rgba(255,255,255,0.3);
        padding-top:0px;
    }

    .header-menu{
        display:flex;
        flex-direction:column;
        align-items:center;
        gap:14px;
    }

    .primary-menu li a,
    .header-menu li a{
        color:#fff;
        font-size:20px;
        font-weight:500;
    }

    /* CLOSE BUTTON */

    .mobile-close{
        position:absolute;
        top: 45px;
        right: 20px;
        transform:translateY(-50%);
        width:28px;
        height:28px;
        font-size:20px;
        background:transparent;
        border:2px solid #fff;
        border-radius:50%;
        color:#fff;
        cursor:pointer;
        display:flex;
        align-items:center;
        justify-content:center;
        z-index:10000;
    }

    .menu .sub-menu{
        display:none;
        position:static;
        border:none;
        padding-left:15px;
    }

    .menu li.open > .sub-menu{
        display:block;
    }
    .menu li:has(.sub-menu) > a::after{
        display:none;
    }
    .has-dropdown > a::after{
        display:none;
    }
	.category-intro {
		width: 90% !important;
		margin: 20px !important;
	}
}
/* ================= SEARCH ================= */

.klirit-search-form{
    margin-left:auto;
    position:relative;
}

.klirit-search-form input{
    padding:8px 40px 8px 14px;
    border:1px solid #ddd;    
    border-radius: 20px;
    width:320px;
    transition:0.3s;
    background:#ffffff;
}

.klirit-search-form input:focus{
    outline:none;
    border-color:#4b3aa5;
}

.klirit-search-form::after{
    /* content:"\1F50D"; */
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    font-size:14px;
    color:#999;
}

/* ================= SLIDER ================= */


.klirit-slider{
position:relative;
overflow:hidden;
height:200px;
}

.klirit-slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
display:block;
}

.klirit-slide.active{
display:block;
}

.slider-prev,
.slider-next{
position:absolute;
top:50%;
transform:translateY(-50%);
background:rgba(0,0,0,0.6);
color:#fff;
border:none;
padding:10px 15px;
cursor:pointer;
z-index:10;
}

.slider-prev{left:20px;}
.slider-next{right:20px;}
.overlay{
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,0.35); */
}

.overlay-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:350px;
    top: 20px;
    left: 80px;
}

.overlay-content h1 {
    display: block;
    font-size: 3em;
    color:#000;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: bold;
    unicode-bidi: isolate;
}
.overlay-content h2 {
    display: block;
    font-size: 2em;
    color:#000;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: normal;
    unicode-bidi: isolate;
}

.overlay-content p{
    display: block;
    font-size: 18px;
    color:#000;
    margin-block-start: 0.67em;
    margin-block-end: 0.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    font-weight: normal;
    unicode-bidi: isolate;
}

.btn-purple{
    background:#d82d25;
    color:#fff;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    position: relative;
    top: 20px;
}
/* ================= MAIN SECTION HOMEPAGE ============ */
.home-intro{
    max-width:1000px;
    margin:0 auto 40px;
    text-align:center;
    padding:0 20px;
}

.home-intro-title{
    font-size:32px;
    margin-bottom:20px;
}

.home-intro-text{
    font-size:16px;
    line-height:1.8;
    color:#555;
}

.home-intro-text p{
    margin-bottom:15px;
}
/* ================= PRODUCTS SECTION ================= */

.products-section{
    padding:0px 0;
    text-align:center;
}

.products-section h2{
    font-size:28px;
    margin-bottom:20px;
}

/* ================= GRID (ostaje za druge sekcije) ================= */

.grid{
    display:grid;
    gap:25px;
}

/* ================= CAROUSEL STRUCTURE ================= */

.products-wrapper{
    display:flex;
    align-items:center;
    gap:45px;
}

.products-container{
    flex:1;
    overflow:hidden;
}

.products-viewport{
    overflow:hidden;
    width:100%;
    /*padding:0 20px;*/ /* prostor za strelice */
    box-sizing:border-box;
}

.products-track{
    display:flex;
    gap:25px;
    transition:transform 0.4s ease;
}

.products-track .card{
    flex:0 0 calc((100% - 4 * 25px) / 5);
    max-width:calc((100% - 4 * 25px) / 5);
}

.product-thumb{
    width:100%;
    height:170px;
    object-fit:contain;
}

.products-track .card-inner{
    display:flex;
    flex-direction:column;
    align-items:center;
    background:#fff;
    border-radius:16px;
    padding:20px 15px;
    text-align:center;
    border:1px solid #dcdcdc;
    transition:transform 0.3s ease;
}

.products-track .card-image{
    height:130px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:10px 0 20px 0;
}

.products-track .card h3{
    font-size:13px;
    font-weight:600;
    margin-bottom:15px;
    min-height:40px;
    text-transform: uppercase;
    text-decoration: none;
}
.products-track .card a{
    text-decoration: none;
    color: inherit;
}

.card-btn{
    background:#d82d25;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    font-size:13px;
    display:inline-block;
    width: 90%;
}
@media(max-width:768px){
    .products-prev,
    .products-next{
        flex:0 0 25px !important;
        height:25px !important;
        border-radius:50%;
        border:none;
        background:#fff;
        box-shadow:0 4px 10px rgba(0,0,0,0.15);
        cursor:pointer;
        font-size:20px;
        display:flex;
        align-items:center;
        justify-content:center;
    }

    .products-prev:hover,
    .products-next:hover{
        background:#3b2f86;
        color:#fff;
    }

    .products-track .card-image img {
        width: 100px;
    }

    .products-viewport {
        overflow: hidden;
        width: 100%;
        padding: 0 0px;
        box-sizing: border-box;
    }

    .products-wrapper{
        gap:20px;
        }

    .products-track{
        gap:15px;
    }

    .products-track .card{
        flex:0 0 calc((100% - 15px) / 2);
        max-width:calc((100% - 15px) / 2);
    }

    .product-thumb{
        height:140px;
    }


}

/* ================= CATEGORY GRID ================= */
.categories-grid{
    display:grid;
    grid-template-columns:repeat(auto-fill, 220px);
    justify-content:center;
    gap:25px;
    margin-top:40px;
    margin-bottom:20px;
}

.category-card{
    width:220px;
    background:#fff;
    border-radius:16px;
    border:1px solid #dcdcdc;
    text-align:center;
    padding:8px;
    transition:0.3s ease;
}

.category-price{
    background:#ffffff;
    font-weight: 500;
    font-size: 16px;    
    text-align:center;
    padding:8px;    
    position: relative;
}

.category-card:hover{
    transform:translateY(-5px);
}

.category-card a{
    text-decoration:none;
    color:inherit;
}

.category-image{
    height:200px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.category-image img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
}

.category-card h3{
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
}
.category-card .card-inner{
    display:flex;
    flex-direction:column;
    height:100%;
}

.category-image{
    margin-bottom:15px;
}

.category-card h3{
    margin-bottom:15px;
}

.category-card-btn{
    margin-top:auto; 
    align-self:center; 
    background:#d82d25;
    color:#fff;
    padding:8px 18px;
    border-radius:20px;
    font-size:13px;
    width:90%;
    text-align:center;
}
@media (max-width:768px){

    .categories-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:15px;
    }

    .category-card{
        width:90%;
    }
    .category-card-btn{width:85%;}
}
/* ================= END CATEGORY GRID ================= */

/* ================= PRODUCT CATEGORY VIEW ================= */
.category-intro{
    width:100%;
    margin:20px;
}

.category-extra{
    width:100%;
    margin:20px;
}
.category-title-view{text-align: center;}
/* ================= END PRODUCT CATEGORY VIEW ================= */

/* ================= PRODUCT STYLE ================= */
.product-title{
    padding-left:10px; 
}

.product-description {
    max-height: 150px;
    overflow: hidden;
    transition: 0.3s ease;
}

.product-description.expanded {
    max-height: 2000px;
}
/* ================= PRODUCT GALLERY ================= */
.product-gallery {
    position:relative;
    width: 450px;
}

.main-image img {
    cursor: pointer;
    width: 450px;
    height: 450px;
    border-radius: 8px;
    cursor: zoom-in;
    object-fit: contain;
}

.thumbnail-wrapper {
    display: flex;
    align-items: center;
    margin-top: 15px;
}

.thumbnails {
    display: flex;
    overflow: hidden;
    scroll-behavior: smooth;
    gap: 10px;
    transition: transform 0.3s ease;
}

.thumb-image {
    width: 80px;
    object-fit: contain;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
}

.thumb-image:hover {
    border: 2px solid red;
}

.thumb-arrow {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}
@media(max-width:768px){
    .product-gallery {
    position: relative;
    max-width: 100%;
    }

    .main-image {
        width: 100%;
    }

    .main-image img {
        width: 100%;
        aspect-ratio: 1 / 1; /* uvek kvadrat */
        border-radius: 8px;
        cursor: zoom-in;
        object-fit: contain;
    }

	/* THUMBNAILS */

	.thumbnail-wrapper{
		display:flex;
		align-items:center;
		width:100%;
		overflow:hidden;
		box-sizing:border-box;
	}

	.thumbnails{
		flex:1;
		display:flex;
		gap:8px;

		overflow-x:auto;
		overflow-y:hidden;

		scroll-behavior:smooth;

		min-width:0;

		scrollbar-width:none;
	}

	.thumbnails::-webkit-scrollbar{
		display:none;
	}

	.thumb-image{
		flex:0 0 80px;
		width:80px;
		height:80px;

		object-fit:cover;

		box-sizing:border-box;
		cursor:pointer;
	}

	.thumb-image:hover,
	.thumb-image.active{
		border:2px solid red;
	}

	.thumb-arrow{
		flex:0 0 32px;

		width:32px;
		height:32px;

		border:none;
		background:#fff;

		cursor:pointer;
		z-index:10;
	}
	.product-left {
		flex: 0 0 30%;
		width: 100%;
	}
}

/* ================= PRODUCT INFO ===================*/
.product-sidebar {
    width: 100%;
}

.product-price,
.product-dimensions {
    margin-bottom: 15px;
    font-size: 18px;
}

.product-price strong {
    font-size: 24px;
    color: #c00;
}

.product-inquiry-btn {
    width:150px;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    margin: 20px 0;
    position:relative;
    right:0px;
}

.product-description-wrapper {
    position: relative;
}


.toggle-description {
    background: none;
    border: none;
    color: red;
    cursor: pointer;
    margin-top: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size:14px;
}
.product-inquiry-form-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    margin-top: 15px;
}

.product-inquiry-form-wrapper.active {
    max-height: 1000px;
    display: block;
}

.close-inquiry-form {
    width: 150px;
    background: #000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    margin: 20px 0;
    position: relative;
    right: 0px;
}
/* ================= STRELICE ================= */

.products-prev,
.products-next{
    flex:0 0 45px;
    height:45px;
    border-radius:50%;
    border:none;
    background:#fff;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    cursor:pointer;
    font-size:20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.products-prev:hover,
.products-next:hover{
    background:#3b2f86;
    color:#fff;
}

/* ================= MOBILE ================= */

.mobile-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* FULLSCREEN MOBILE MENU SYSTEM */

@media (max-width:768px){

    .header-top{
        height:70px;
        padding:0 15px;
    }

    .logo img{
        height:40px;
    }

    .header-contacts{
        display:none;
    }
    
    .mobile-toggle{
        display:block;
    }

    .klirit-search-form{
        display:none;
    }

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

    .slide{
        height:300px;
    }
}

/* =====  PRODUCT TABLE PRICES ===== */

.pricing-title{
    font-size:28px;
    margin:40px 0 20px;
}

.pricing-table{
    width:100%;
    border-collapse:collapse;
    font-size:15px;
}

.pricing-table thead th{
    text-align:left;
    font-weight:600;
    padding:12px 10px;
    border-bottom:2px solid #ff0202; /*e5e5e5*/
    color:#c00000;
    text-transform:uppercase;
    font-size:13px;
    letter-spacing:1px;
}

.pricing-table tbody td{
    padding:15px 10px;
    border-bottom:1px solid #ff0202; /*c3c0c0*/
    vertical-align:top;
}

.pricing-table tbody tr:last-child td{
    border-bottom:1px solid #ff0202; /*ddd*/
}

.product-price-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .pricing-title {
        font-size: 22px;
        margin: 25px 0 15px;
    }

	.pricing-table{
		font-size: 12px;
		width:100%;
		table-layout:fixed;
	}
	.pricing-table th,
    .pricing-table td{
        padding:6px 4px;
        font-size:12px;
    }
    .pricing-table thead th {
        padding: 10px 8px;
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .pricing-table tbody td {
        padding: 10px 8px;
    }

    .product-extra-content {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .pricing-table {
        font-size: 12px;
    }

    .pricing-table thead th {
        font-size: 10px;
        padding: 8px 6px;
    }

    .pricing-table tbody td {
        padding: 8px 6px;
    }
}

/* ===== EXTRA CONTENT ===== */
.product-extra-content{
    margin-top:10px;
    font-size:1em;
    line-height:1.7;
}



/* ================= SEARCH BUTTON ================= */

.search-toggle{
    background:none;
    border:none;
    font-size:22px;
    cursor:pointer;
    color:#333;
}

/* ================= SEARCH OVERLAY ================= */
.search-content {
    padding: 20px;
    position: relative;
    top: 0px;
}

.klirit-search-form input[type="search"]{
    width: 420px;
    padding: 12px;
    box-sizing: border-box;
}

.search-input-wrapper{
    position:relative;
}

.search-icon{
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#888;
    font-size:16px;
}

.search-results{
    position: absolute;
    top: 100%;
    left: 0;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    display:none;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.search-item{
    display:flex;
    gap:12px;
    padding:10px;
    text-decoration:none;
    color:#333;
    align-items:center;
}

.search-item img{
    width:50px;
    height:50px;
    object-fit:cover;
    border-radius:6px;
}

.search-item:hover{
    background:#f5f5f5;
}

.search-overlay{
    position:fixed;
    inset:0;
    background:#ffffff;
    display:flex;
    justify-content:center;
    align-items:center;

    transform:translateX(100%);
    transition:transform 0.4s ease;
    z-index:99998;
}

.search-overlay.active{
    transform:translateX(0);
}

.search-overlay-inner{
    width:80%;
    max-width:500px;
}

.search-overlay input{
    width:100%;
    padding:15px 20px;
    font-size:18px;
    border:2px solid #ddd;
    border-radius:40px;
}

.search-overlay input:focus{
    outline:none;
    border-color:#4b3aa5;
}
.mobile-icons{display:none;}
/* CLOSE BUTTON */

.search-close{
    position:fixed;
    top:20px;
    right:20px;
    font-size:28px;
    background:none;
    border:none;
    cursor:pointer;
}

/* MOBILE ONLY */

@media(max-width:768px){
    .mobile-icons{display:block;}
    .search-content{
        display:none;
    }
}

/* ================= SEARCH PAGE ================= */

.search-page{
    padding:60px 0;
}

.search-title{
    margin-bottom:40px;
    font-size:28px;
}

.search-title span{
    color:#4b3aa5;
}

.search-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.search-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,0.06);
    transition:0.3s;
}

.search-card:hover{
    transform:translateY(-5px);
}

.search-card a{
    text-decoration:none;
    color:#333;
}

.search-thumb img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.search-content h3{
    margin-bottom:10px;
    font-size:18px;
}

.search-content p{
    font-size:14px;
    color:#666;
}

/* Pagination */

.search-pagination{
    margin-top:40px;
    text-align:center;
}

.search-pagination a{
    margin:0 5px;
    padding:8px 12px;
    background:#eee;
    border-radius:5px;
    text-decoration:none;
}

.search-pagination .current{
    background:#4b3aa5;
    color:#fff;
}

.search-close{
    position:absolute;
    top:5px;
    right:8px;
    background:none;
    border:none;
    font-size:20px;
    cursor:pointer;
}

.search-results-inner{
    padding-top:30px; /* da X ne preklapa rezultate */
}

.search-results:empty{
    display:none;
}

/* MOBILE */

@media(max-width:768px){
    .search-grid{
        grid-template-columns:1fr;
    }
}
/* ================= PAGE ================= */
.positionH1Page{width:100%;text-align: center;}
.custom-ngg-gallery{
    
    grid-template-columns:repeat(auto-fit, 160px);
    justify-content:center;   /* Centriranje cele galerije */
    gap:20px;
    margin-top:40px;
}

.custom-ngg-gallery .ngg-galleryoverview{
    display:grid !important;
    grid-template-columns:repeat(auto-fit, 200px);
    justify-content:center;
    gap:20px;
}

/* Poništi NextGEN float */
.custom-ngg-gallery .ngg-gallery-thumbnail-box{
    float:none !important;
    width:auto !important;
    margin:0 !important;
}

/* 16:9 wrapper */
.custom-ngg-gallery .ngg-gallery-thumbnail{
    width:200px;
    aspect-ratio:16 / 9;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#f5f5f5;
    border-radius:8px;
    overflow:hidden;
    border: 0px solid #A9A9A9;
}

/* Slika bez crop */
.custom-ngg-gallery .ngg-gallery-thumbnail img{
    max-width:100%;
    max-height:100%;
    object-fit:contain;
    display:block;
}

.custom-ngg-gallery img{
    width:190px;
    height:160px;
    object-fit:cover;
    border-radius:8px;
    transition:0.3s ease;
}

.custom-ngg-gallery img:hover{
    transform:scale(1.05);
}

.product-pdfs{
    /*display:flex;*/
    justify-content:center;
    gap:30px;
    margin:40px auto;
    flex-wrap:wrap;
    max-width:800px;
}

.pdf-box{
    width:200px;
    height:140px;
    background:#f1f1f1;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    border-radius:6px;
    transition:0.3s;
}

.pdf-box:hover{
    background:#e5e5e5;
}

.pdf-icon{
    width:48px;
    height:48px;
    background:url('https://cdn-icons-png.flaticon.com/512/337/337946.png') center/contain no-repeat;
    margin-bottom:10px;
}

.pdf-box span{
    font-weight:600;
    color:#555;
}
@media (max-width:600px){
    .custom-ngg-gallery{
        grid-template-columns:repeat(auto-fit, 140px);
    }
}

/* ================= breadcrumb ================= */

.klirit-breadcrumb{
    font-size: 15px;
    margin: 20px 20px 20px 20px;
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
}

.klirit-breadcrumb a{
    text-decoration:none;
    color:#555;
}

.klirit-breadcrumb a:hover{
    color:#000;
}

.klirit-breadcrumb .current{
    font-weight:600;
    color:#000;
}

.klirit-breadcrumb .sep{
    color:#aaa;
}
/* ================= END breadcrumb ================= */

/* ================= taxonomy template ================= */
.category-hero{
    width:100%;
    height:400px;
    overflow:hidden;
}

.category-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}
/* ================= END taxonomy template ================= */

/* ================= FOOTER ================= */
footer{
    width:100%;
    background:#000;
    color:#fff;
}

.footer-inner{
    max-width:1200px;
    margin:0 auto;
    padding:60px 20px;
    display:flex;
    justify-content:space-between;
    gap:10px;
}
.footer-block h4{
    margin-bottom:15px;
}

.footer-block ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-block li{
    margin-bottom:8px;
}

.footer-block a{
    color:#fff;
    text-decoration:none;
}

.footer-block a:hover{
    color:#ccc;
}

.header-contacts .contact-link,
.contact-time{    
    align-items:center;
    gap:8px;
}

.footer-contacts .contact-link,
.contact-time{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:20px;
}
.footer-contacts a{
   text-decoration: none;
   color:#fff; 
}
.footer-copyright{text-align: center;}
.footer-contacts .contact-address,
.contact-name{
    display:flex;
    align-items:center;
    text-align: center;
    gap:8px;
    margin-bottom:20px;
    margin-top:20px;
}
footer{
    height:auto;
    position:relative;
    bottom:0px;
}

.footer-inner .wpcf7-submit {
    background: #fa0202 !important;
    color: #fff;
    width: 100%;
    padding:5px;
    border-radius: 3px;
    cursor: pointer;
}
.footer-left,
.footer-center,
.footer-right{
    flex:1;
    text-align: center;
}
.footer-map iframe{
    width:100%;
    height:540px;
    border-radius:8px;
}
@media (max-width: 768px){
    .footer-inner{
        flex-direction:column;
    }
    .footer-map iframe{
    width:100%;
    height:250px;
    border-radius:8px;
}
}
/* ================= END FOOTER ================= */

/*================== CONTACT PAGE ==================*/
.contact-banner{
    background:linear-gradient(135deg,#d61d1d,#8f0d0d);
    border-radius:12px;
    padding:50px;
    margin:40px 0;
    color:#fff;
}

.contact-banner-inner{
    display:flex;
    justify-content:space-between;
    gap:40px;
}

.contact-col{
    flex:1;
}

.contact-left{
    line-height:1.8;
    font-weight: 600;
}

.contact-item{
    margin-bottom:8px;
    display:flex;
    align-items:center;
    gap:10px;
}

.contact-center{
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight: 600;
}

.map-button{
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#000;
    padding:12px 25px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.map-button i{
    color:red;
    font-size:18px;
}

.contact-right{
    display:flex;
    flex-direction:column;
    gap:8px;
    font-weight: 600;
}

.contact-link{
    color:#fff;
    text-decoration:none;
}

.contact-link i{
    margin-right:8px;
}
@media (max-width:768px){

    .contact-banner{
        padding:30px 20px;
    }

    .contact-banner-inner{
        flex-direction:column;
        gap:25px;
        align-items:center;
        text-align:center;
    }

    .contact-col{
        width:100%;
    }

    .contact-left,
    .contact-center,
    .contact-right{
        align-items:center;
    }

    .contact-item{
        justify-content:center;
    }

    .contact-right{
        align-items:center;
    }

}
/* ================= MOBILE CONTACT PAGE ================= */

/* ================= MOBILE SEARCH PANEL ================= */

.mobile-search-panel {
    position: fixed;
    top: 0;
    right: 100%;
    width: 100vw;
    height: 100vh;
    background: #737477;
    z-index: 99999;
    transition: right 0.3s ease;
    padding: 20px;
    overflow-y: auto;
}

.mobile-search-panel.open {
    right: 0;
}

.mobile-search-close {
    position: absolute;
    top: 30px;
    right: 20px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color:#fff;
}

.mobile-search-content {
    margin-top: 80px;
}

.mobile-search-form {
    width: 100%;
}

.mobile-search-form input {
    padding:8px 40px 8px 14px;
    border:1px solid #ddd;    
    border-radius: 20px;
    width:320px;
    transition:0.3s;
    background:#ffffff;
    position: relative;
    top: 50px;
    left: 50px;
}
.mobile-search-form input:focus{
    outline:none;
    border-color:#4b3aa5;
}

.mobile-search-form::after{
    /* content:"\1F50D"; */
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    font-size:14px;
    color:#999;
}
.mobile-search-content .search-results{
    position:relative;
    top:50px;
    left:20px;
    width:100%;
    background:#fff;
    border:1px solid #ddd;
    border-radius:10px;
    display:none;
    z-index:9999;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
}
.mobile-search-toggle{
    display:none;
}

/* MOBILE ONLY */

@media(max-width:768px){
    .mobile-search-form input {
        width:80%;
    }
    .mobile-search-toggle{
        display:block;
        background:none;
        border:none;
        font-size:22px;
        cursor:pointer;
        color:#333;
    }
    .klirit-slider {
        position: relative;
        overflow: hidden;
        height:70px;
    }
    .slider-prev, .slider-next {
        position: absolute;
        top: 90%;
        transform: translateY(-50%);
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        border: none;
        padding: 10px 15px;
        cursor: pointer;
        z-index: 10;
    }
    .overlay-content h1 {
        display: block;
        font-size: 17px;
        color: #000;
        margin-block-start: 0.67em;
        margin-block-end: 0.67em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: bold;
        unicode-bidi: isolate;
    }
    .overlay-content h2 {
        display: block;
        font-size: 15px;
        color: #000;
        margin-block-start: 0.67em;
        margin-block-end: 0.67em;
        margin-inline-start: 0px;
        margin-inline-end: 0px;
        font-weight: normal;
        unicode-bidi: isolate;
    }
    .overlay-content p {
        font-size: 13px;
    }
    .btn-purple {
        background: #d82d25;
        color: #fff;
        padding: 8px 8px;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 600;
        position: relative;
        top: 20px;
        font-size:12px;
    }
    .overlay-content {
        position: relative;
        margin-left: 0px;
        z-index: 2;
        color: #fff;
        max-width: 300px;
        top: 10px;
        left: 10px;
    }
}