/* Description: Master CSS file */

/*****************************************
Table Of Contents:
- General Styles
- Navigation
- Home
- Information
- Button
- Services
- Plans
- Testimonials
- Newsletter
- Back To Top Button
- Extra Pages
- Media Queries
******************************************/


/**************************/
/*     General Styles     */
/**************************/
:root {
	--primary: #1c262f;
	--primary-light: #212d37;
	--secondary: #1aa7e8;
	--tertiary: #0878b5;
	--gradient: linear-gradient(to right, #1aa7e8, #0878b5);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Poppins", sans-serif;
}

h1 {
	font-size: 60px;
	font-weight: 500;
}

button {
	font-family: sans-serif;
}

p,
ul,
h4 {
	margin: 0;
	padding: 0;
}

a {
	color: white;
	text-decoration: none;
}

li {
  	list-style-type: none;
}

/* Section Background */
.home,
.about,
.services,
.plans,
.work,
.contact {
	height: 110vh;
	position: relative;
}

.services,
.work,
.contact,
.testimonial,
.footer {
  	background-color: var(--primary);
}

.about,
.plans,
.company,
.newsletter,
.location {
  	background-color: var(--primary-light);
}

.bottom {
  	background-color: black;
}

/* Gradient Border And Background On Icons */
.home_text,
.home .fas,
.plans .far,
.information .fas,
.work .fas,
.services .fas,
.location .far,
.location .fas {
	padding: 15px 0;
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#1aa7e8),
		to(#0878b5)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.navbar-nav a:hover,
.footer a:hover,
.footer .fab:hover {
	cursor: pointer;
	background: var(--gradient);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}


/**********************/
/*     Navigation     */
/**********************/
.navbar {
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	background-color: var(--primary);
	box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.025);
}

.navbar .navbar-brand {
	padding-top: 0.25rem;
	padding-bottom: 0.25rem;
}

.navbar .logo-image img {
	width: 108px;
	height: 32px;
}

.navbar .logo-text {
	color: #fff;
	font-weight: 500;
	line-height: 1rem;
	font-size: 1.575rem;
	text-decoration: none;
}

.offcanvas-collapse {
	position: fixed;
	top: 2.75rem; /* adjusts the height between the top of the page and the offcanvas menu */
	bottom: 0;
	left: 100%;
	width: 100%;
	overflow-y: auto;
	visibility: hidden;
	padding-right: 1rem;
	padding-left: 1rem;
	background-color: var(--primary);
	transition: transform 0.2s ease-in-out, visibility 0.2s ease-in-out;
}

.offcanvas-collapse.open {
	visibility: visible;
	transform: translateX(-100%);
}

.navbar .navbar-nav {
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.navbar .dropdown-menu {
	border: none;
	margin-top: 0.25rem;
	margin-bottom: 0.25rem;
	background-color: var(--primary);
}

.navbar .dropdown-item {
	color: #eee;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 0.875rem;
	padding-top: 0.625rem;
	text-decoration: none;
	padding-bottom: 0.625rem;
}

.navbar .dropdown-item:hover {
  	background-color: var(--primary);
}

.navbar .dropdown-divider {
	width: 100%;
	height: 1px;
	border: none;
	margin: 0.5rem auto 0.5rem auto;
	background-color: var(--primary-light);
}

.navbar .nav-item .nav-link {
	color: #eee;
	text-decoration: none;
	padding-top: 0.625rem;
	padding-bottom: 0.625rem;
	transition: all 0.2s ease;
}

.navbar .fa-stack {
	width: 2em;
	font-size: 0.75rem;
	margin-right: 0.25rem;
}

.navbar .fa-stack-2x {
	background: -webkit-gradient(
		linear,
		left top,
		left bottom,
		from(#1aa7e8),
		to(#0878b5)
	);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	transition: all 0.2s ease;
}

.navbar .fa-stack-1x {
	color: #ffffff;
	transition: all 0.2s ease;
}

.navbar .fa-stack:hover .fa-stack-2x {
  	color: var(--primary);
}

.navbar .fa-stack:hover .fa-stack-1x {
  	color: var(--primary);
}

.navbar .navbar-toggler {
	padding: 0;
	border: none;
	font-size: 1.25rem;
}


/****************/
/*     Home     */
/****************/
.home {
	background-image: url(../assets/images/home.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.para {
  	width: 50%;
}

.para-light {
  	opacity: 0.7;
}


/***********************/
/*     Information     */
/***********************/
.information .container-fluid .row div:first-child {
  	background-color: var(--primary);
}

.information .container-fluid .row div:last-child {
  	background-color: white;
}

.information .container-fluid .row div:nth-child(2) {
  	background-color: var(--primary-light);
}


/******************/
/*     Button     */
/******************/
.btn {
	color: white;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn:hover {
	color: white;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}

/* Email - Newsletter Button */
.btn-secondary {
	color: black;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
}

.btn-secondary:hover {
	color: black;
	padding: 10px 30px;
	background-image: var(--gradient);
}

/* Other Pages Button */
.btn-tertiary {
	color: black;
	border-radius: 0;
	border-width: 2px;
	padding: 10px 30px;
	border-image-slice: 1;
	background-image: none;
	background: transparent;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px var(--secondary);
}

.btn-tertiary:hover {
	color: black;
	box-shadow: none;
	border-radius: 0;
	padding: 10px 30px;
	transform: translate(5px, 5px);
}


/********************/
/*     Services     */
/********************/
.services .card {
	padding: 20px;
	border-radius: 0;
	border: 2px solid white;
}

.services .card:hover {
	border: 10px solid;
	transform: scale(1.01);
	border-image-slice: 1;
	border-width: 2px;
	border-image-source: var(--gradient);
	box-shadow: 5px 5px 0px 0px #1aa7e8;
}


/*****************/
/*     Plans     */
/*****************/
.plans .card {
	padding: 20px;
	border: 2px solid white;
}


/************************/
/*     Testimonials     */
/************************/
.slider-1 {
	padding-top: 8.25rem;
	padding-bottom: 8.5rem;
}

.slider-1 .section-title {
  	text-align: center;
}

.slider-1 .h2-heading {
	text-align: center;
	margin-bottom: 3rem;
}

.testimonial-card {
	border: 10px solid;
	border-image-slice: 1;
	border-width: 3px;
	border-image-source: var(--gradient);
}

.slider-1 .slider-container {
  	position: relative;
}

.slider-1 .swiper-container {
	width: 86%;
	position: static;
}

.slider-1 .swiper-button-prev,
.slider-1 .swiper-button-next {
  	color: var(--primary);
}

.slider-1 .swiper-button-prev:focus,
.slider-1 .swiper-button-next:focus {
	/* even if you can't see it chrome you can see it on mobile device */
	outline: none;
}

.slider-1 .swiper-button-prev {
	left: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .swiper-button-next {
	right: -14px;
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2028%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23707375'%2F%3E%3C%2Fsvg%3E");
	background-size: 18px 28px;
}

.slider-1 .card {
	border: none;
	position: relative;
	background-color: transparent;
}

.slider-1 .card-image {
	width: 80px;
	height: 80px;
	margin-left: auto;
	margin-right: auto;
	border-radius: 50%;
	margin-bottom: 1.25rem;
}

.slider-1 .card-body {
  	padding: 0;
}

.slider-1 .testimonial-text {
  	margin-bottom: 0.75rem;
}

.slider-1 .testimonial-author {
	margin-bottom: 0;
	color: #252c38;
}

.slider-1 .avatar {
	width: 70px;
	height: 70px;
	border-radius: 50%;
}

/* Dropdown Menu */
.navbar .dropdown .dropdown-menu {
  	animation: fadeDropdown 0.2s; /* required for the fade animation */
}

@-webkit-keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeDropdown {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}


/**********************/
/*     Newsletter     */
/**********************/
.form-control-input,
.form-control-textarea {
	width: 100%;
	appearance: none;
	border-radius: 4px;
	font-size: 0.875rem;
	line-height: 1.5rem;
	padding-left: 1.5rem;
	padding-top: 0.775rem;
	padding-bottom: 0.775rem;
}


/******************************/
/*     Back To Top Button     */
/******************************/
#myBtn {
	z-index: 99;
	right: 20px;
	width: 52px;
	height: 52px;
	bottom: 20px;
	border: none;
	outline: none;
	display: none;
	position: fixed;
	cursor: pointer;
	border-radius: 50%;
	background-color: #323137;
}

#myBtn:hover {
  	background-color: #0f0f11;
}

#myBtn img {
	width: 18px;
	margin-left: 0.125rem;
	margin-bottom: 0.25rem;
}


/***********************/
/*     Extra Pages     */
/***********************/
.ex-header {
	padding-top: 8.5rem;
	padding-bottom: 4rem;
	background-color: var(--primary);
}

.ex-header h1 {
  	color: #fff;
}

.ex-basic-1 .list-unstyled .fas {
	font-size: 0.375rem;
	line-height: 1.625rem;
}

.ex-basic-1 .list-unstyled .flex-grow-1 {
  	margin-left: 0.5rem;
}

.ex-basic-1 .text-box {
	padding: 1.25rem 1.25rem 0.5rem 1.25rem;
	background-color: #f7f9fd;
}

.ex-cards-1 .card {
	border: none;
	background-color: transparent;
}

.ex-cards-1 .card .fa-stack {
	width: 2em;
	font-size: 1.125rem;
}

.ex-cards-1 .card .fa-stack-2x {
  	color: var(--secondary);
}

.ex-cards-1 .card .fa-stack-1x {
	width: 2em;
	color: #ffffff;
	font-weight: 700;
	line-height: 2.125rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 {
  	margin-left: 2.25rem;
}

.ex-cards-1 .card .list-unstyled .flex-grow-1 h5 {
	margin-top: 0.125rem;
	margin-bottom: 0.5rem;
}


/*************************/
/*     Media Queries     */
/*************************/
@media only screen and (max-width: 1024px) {
	.services,
	.work,
	.testimonial,
	.about,
	.contact,
	.plans {
		height: 100%;
	}
}

@media (min-width: 992px) {
	.slider-1 .swiper-container {
		width: 92%;
	}

	.slider-1 .swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.slider-1 .swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	/* Navigation */
	.navbar {
		box-shadow: none;
		transition: all 0.2s;
		padding-top: 1.75rem;
		background-color: transparent;
	}

	.navbar.top-nav-collapse {
		padding-top: 0.5rem;
		padding-bottom: 0.5rem;
		background-color: var(--primary);
		box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.025);
	}

	.offcanvas-collapse {
		position: static;
		top: auto;
		bottom: auto;
		left: auto;
		width: auto;
		padding-right: 0;
		padding-left: 0;
		background-color: transparent;
		overflow-y: visible;
		visibility: visible;
	}

	.offcanvas-collapse.open {
		transform: none;
	}

	.navbar .navbar-nav {
		margin-top: 0;
		margin-bottom: 0;
	}

	.navbar .nav-item .nav-link {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}

	.navbar .dropdown-menu {
		padding-top: 0.75rem;
		padding-bottom: 0.875rem;
		box-shadow: 0 3px 3px 1px rgba(0, 0, 0, 0.08);
	}

	.navbar .dropdown-divider {
		width: 90%;
	}

	.navbar .social-icons {
		margin-left: 0.5rem;
	}

	.navbar .fa-stack {
		margin-right: 0;
		margin-left: 0.25rem;
	}
}

@media only screen and (max-width: 540px) {
	h1 {
		font-size: 30px;
	}

	.para {
		width: 100%;
	}

	.swiper-container {
		width: 92%;
	}

	.swiper-button-prev {
		left: -16px;
		width: 22px;
		background-size: 22px 34px;
	}

	.swiper-button-next {
		right: -16px;
		width: 22px;
		background-size: 22px 34px;
	}
}
/* Gigal final polish */
.home .btn{background:transparent!important;border:1px solid rgba(255,255,255,.72)!important;color:#fff!important;box-shadow:none!important}
.home .btn:hover,.home .btn:focus{background:rgba(0,35,55,.48)!important;border-color:#fff!important;color:#fff!important}
.information .col-lg-4{position:relative;min-height:265px;display:flex;flex-direction:column;align-items:center;justify-content:center;overflow:hidden}
.information .col-lg-4 h4,.information .col-lg-4 p{position:relative;z-index:2;margin-left:auto;margin-right:auto;max-width:340px}
.information .col-lg-4:nth-child(3){background:#f3f6f8!important;color:#063958!important}
.information .col-lg-4:nth-child(3) h4{color:#063958!important;font-weight:700}
.information .col-lg-4:nth-child(3) p{color:#35586d!important;opacity:1!important}
.information .col-lg-4:nth-child(3) i{color:#08689d!important}
.navbar .nav-link:hover,.navbar .dropdown-item:hover,.navbar .dropdown-item:focus{color:#1aa7e8!important}
/* common readable content */
.gigal-page-section{background:#062f46;color:#fff;padding:64px 0}
.gigal-page-section.alt{background:#0b405a}
.gigal-page-section h1,.gigal-page-section h2,.gigal-page-section h3,.gigal-page-section h4{color:#fff}
.gigal-page-section p{color:#d6e4eb}
/* action */
.akcija-svih-osam{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;max-width:1180px;margin:0 auto;padding:36px 18px 70px!important;background:#062f46!important}
.akcija-kartica{background:#0b405a!important;border:1px solid rgba(255,255,255,.14);border-radius:12px;padding:12px;overflow:hidden}
.akcija-h2{font-size:18px!important;line-height:1.3;color:#fff!important;margin:4px 4px 12px!important}
.akcija-puna-slika{width:100%!important;aspect-ratio:1/1;object-fit:contain!important;background:#fff;border-radius:8px;display:block}
@media(max-width:600px){.akcija-svih-osam{grid-template-columns:repeat(2,minmax(0,1fr));gap:8px;padding:16px 8px 40px!important}.akcija-h2{font-size:12px!important}}
.contact-form-clean,.faq-clean{max-width:1000px;margin:0 auto 36px;background:#0b405a;border:1px solid rgba(255,255,255,.14);border-radius:14px;padding:28px;color:#fff}.contact-form-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.contact-form-clean label{display:flex;flex-direction:column;gap:7px;color:#dbeaf1;margin-bottom:14px}.contact-form-clean input,.contact-form-clean textarea{width:100%;padding:12px;border-radius:7px;border:1px solid #517184;background:#f6f8fa;color:#102b3b}.contact-form-clean button{background:#0878b5;color:#fff;border:0;padding:12px 20px;border-radius:6px}.faq-clean details{border-top:1px solid rgba(255,255,255,.15);padding:14px 0}.faq-clean summary{cursor:pointer;font-weight:700}.faq-clean p{color:#dbeaf1}@media(max-width:650px){.contact-form-grid{grid-template-columns:1fr}}
.gigal-slider{background:#062f46;padding:48px max(18px,calc((100% - 1180px)/2));color:#fff;overflow:hidden}.product-slider-head{display:flex;justify-content:space-between;align-items:end;margin-bottom:18px}.product-slider-head h2{color:#fff}.slider-controls{display:flex;gap:8px}.slider-btn{width:44px;height:44px;border-radius:50%;border:1px solid rgba(255,255,255,.4);background:transparent;color:#fff;font-size:28px}.product-slider{overflow:hidden;border-radius:14px}.product-slider-track{list-style:none;padding:0;margin:0;display:flex;transition:transform .55s ease}.product-slide{min-width:100%;height:440px;background:#f5f7f8;display:flex;align-items:center;justify-content:center}.product-slide img{width:100%;height:100%;object-fit:contain}.gigal-about-points{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin:30px 0}.gigal-about-points>div{background:#0b405a;border:1px solid rgba(255,255,255,.14);padding:22px;border-radius:10px}.gigal-about-points strong,.gigal-about-points span{display:block}.gigal-about-points span{color:#d6e4eb;margin-top:6px}.gigal-brand-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin-top:20px}.gigal-brand-grid img{width:100%!important;height:120px!important;object-fit:contain!important;background:#f4f7f8;border-radius:10px;padding:12px}@media(max-width:700px){.product-slide{height:280px}.gigal-about-points{grid-template-columns:1fr}.gigal-brand-grid{grid-template-columns:repeat(2,1fr)}}
body:not(.home) .container h1,body:not(.home) .container h2,body:not(.home) .container h3,body:not(.home) .container h4{opacity:1}.catalog-page,.catalog-shell,.category-page{color:#fff}.catalog-page p,.catalog-shell p,.category-page p{color:#d6e4eb}.catalog-page a,.catalog-shell a,.category-page a{color:#35b7f3}


/* V41 — jedinstvena tema po uzoru na Pocetnu */
:root{--secondary:#1aa7e8!important;--tertiary:#0878b5!important;--gradient:linear-gradient(to right,#1aa7e8,#0878b5)!important}
body{background:#1c262f;color:#f5f8fa}
a{color:#45b8ee} a:hover{color:#8bd5f5}
.navbar .nav-link:hover,.navbar .dropdown-item:hover,.navbar .dropdown-item:focus{color:#1aa7e8!important}
.services .fas,.services .far,.services .fab{color:#1aa7e8!important}
.services .card:hover{box-shadow:5px 5px 0 0 #1aa7e8!important}
.category-responsive-fix+*,.category-back-link{color:#8bd5f5!important}
.category-content,section:has(.category-wrap){background:#1c262f!important;color:#fff!important}
.category-wrap{color:#fff!important}
.category-title,.category-wrap h1,.category-wrap h2,.category-wrap h3,.category-richtext h2,.category-richtext h3{color:#fff!important}
.category-intro,.category-richtext p,.category-richtext li,.catalog-overview,.catalog-overview div,.catalog-search label{color:#d7e5ec!important}
.chemistry-inline-title{color:#45b8ee!important}
.chemistry-branch-card,.category-contact,.catalog-jump-link{border-color:rgba(69,184,238,.45)!important}
.chemistry-branch-card{background:#212d37!important;color:#fff!important}
.chemistry-branch-card strong,.chemistry-branch-card span{color:#fff!important}
.category-contact{background:#0878b5!important;color:#fff!important}
.catalog-overview{background:#212d37!important;border-color:rgba(255,255,255,.14)!important}
.catalog-search input{background:#16232d!important;color:#fff!important;border-color:#48697a!important}
.catalog-jump-link{background:#0b405a!important;color:#bfeaff!important}
.catalog-group{background:#212d37!important;border:1px solid rgba(255,255,255,.13)!important;color:#fff!important}
.catalog-group summary,.catalog-group summary span{color:#fff!important}
.catalog-table-wrap{background:#16232d!important}
.catalog-table{background:#16232d!important;color:#f5f8fa!important}
.catalog-table th{background:#0b405a!important;color:#fff!important}
.catalog-table td{background:#16232d!important;color:#eef6fa!important;border-color:#34505f!important}
.catalog-price{color:#8bd5f5!important;font-weight:700}
.gigal-vp__eyebrow,.gigal-vp__benefits li::before{color:#45b8ee!important}
.gigal-vp-form input:focus,.gigal-vp-form textarea:focus{border-color:#1aa7e8!important}

/* V42 — transparentna tema kao Pocetna */
html,body{background-color:#16232d!important}
body:not(.home){background-image:linear-gradient(rgba(13,28,38,.62),rgba(13,28,38,.62)),url(../assets/images/home.jpg)!important;background-size:cover!important;background-position:center!important;background-attachment:fixed!important;background-repeat:no-repeat!important}
/* bez zelenih akcenata */
.information .fas,.information .far,.information .fab,.services .fas,.services .far,.services .fab,
.navbar .nav-link.active,.navbar .dropdown-item.active{color:#45b8ee!important}
/* info blokovi na Pocetnoj: providni, bez bele trece kartice */
.information{background:rgba(7,25,35,.46)!important}
.information .container-fluid,.information .row{background:transparent!important}
.information .container-fluid .row>div,.information .col-lg-4:nth-child(3){background:rgba(8,39,54,.58)!important;color:#fff!important;border-right:1px solid rgba(255,255,255,.08)!important}
.information .col-lg-4:nth-child(3) h4,.information .col-lg-4:nth-child(3) p{color:#fff!important}
.information .col-lg-4:nth-child(3) i{color:#45b8ee!important}
/* unutrasnje strane: sekcije i kartice ostaju providne kao template Pocetne */
body:not(.home) .gigal-page-section,body:not(.home) .gigal-page-section.alt,
body:not(.home) .catalog-page,body:not(.home) .catalog-shell,body:not(.home) .category-content,
body:not(.home) section:has(.category-wrap),body:not(.home) .gigal-slider{background:transparent!important}
body:not(.home) .chemistry-branch-card,body:not(.home) .catalog-overview,body:not(.home) .catalog-group,
body:not(.home) .gigal-about-points>div,body:not(.home) .contact-form-clean,body:not(.home) .faq-clean{
 background:rgba(12,45,61,.64)!important;backdrop-filter:blur(4px);border:1px solid rgba(255,255,255,.10)!important;box-shadow:none!important
}
body:not(.home) .catalog-table-wrap,body:not(.home) .catalog-table,body:not(.home) .catalog-table td{background:rgba(8,29,40,.72)!important}
body:not(.home) .catalog-table th{background:rgba(10,61,84,.78)!important}
/* Akcija: bez belih linija/okvira i bez pune pozadine kartica */
.akcija-svih-osam{background:transparent!important;gap:22px!important}
.akcija-kartica{background:transparent!important;border:0!important;border-radius:0!important;padding:0!important;box-shadow:none!important}
.akcija-puna-link{display:block!important;background:transparent!important;border:0!important;outline:0!important}
.akcija-puna-slika{background:transparent!important;border:0!important;border-radius:8px!important;box-shadow:none!important}
.akcija-h2{padding:0 2px!important}
/* plavi linkovi, nikakav zeleni hover */
a:hover,.navbar .nav-link:hover,.navbar .dropdown-item:hover,.navbar .dropdown-item:focus{color:#45b8ee!important}
@media(max-width:600px){.information .container-fluid .row>div{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important}.akcija-svih-osam{gap:10px!important}}

/* V43 screenshot-precise corrections */
:root{--gigal-navy:#082b3a;--gigal-navy2:#0d3545;--gigal-blue:#0798d3;--gigal-text:#f7fbfd;--gigal-muted:#b9ccd6}
html{scroll-padding-top:20px} body{background:#082b3a!important;color:var(--gigal-text)!important}
.navbar{position:relative!important;top:auto!important;left:auto!important;right:auto!important;width:100%;padding:14px 0!important;background:#0b2d3b!important;box-shadow:none!important;z-index:20}
.navbar.top-nav-collapse{position:relative!important;padding:14px 0!important;background:#0b2d3b!important}
.gigal-logo-link{display:flex!important;align-items:center;height:52px}.gigal-logo-link img{width:58px!important;height:49px!important;object-fit:contain!important;display:block!important}
.navbar .nav-link:hover,.navbar .dropdown-item:hover{color:#0798d3!important}.navbar .dropdown-toggle::after{display:none!important}
.home{min-height:560px}.home .btn{background:transparent!important;border:1px solid rgba(255,255,255,.7)!important}.home .btn:hover{background:rgba(0,0,0,.18)!important}
.information .row>div{background:#082b3a!important;color:#fff!important;border-right:1px solid rgba(255,255,255,.08)!important;min-height:245px!important;padding:38px 28px!important}
.information .row>div:last-child{border-right:0!important}.information h4{color:#fff!important;font-size:24px!important}.information p{color:#c3d4dc!important;opacity:1!important;font-size:16px!important;line-height:1.55!important}.information i{color:#0798d3!important}
.home-categories{background:#f6f8fa!important;color:#082b3a!important;padding:54px 0 64px}.home-cat-head{margin-bottom:30px}.home-cat-head h2{color:#082b3a!important;font-size:38px!important;font-weight:700!important}.home-cat-head p{color:#678294!important;font-size:18px}.home-cat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.home-cat-item{border:1px solid #a9ccea;border-radius:8px;background:#fff;overflow:hidden}.home-cat-item summary{position:relative;list-style:none;cursor:pointer;padding:20px 48px 20px 20px;color:#061e2c;font-size:18px;font-weight:700}.home-cat-item summary::-webkit-details-marker{display:none}.home-cat-item summary::after{content:'+';position:absolute;right:20px;color:#086bd6;font-size:24px;top:15px}.home-cat-item[open] summary::after{content:'−'}.home-cat-item p{margin:0;padding:20px 22px 30px;color:#5e7d91;font-size:16px;line-height:1.55;border-top:0}.home-cat-item[open]{min-height:230px}
.category-back-link{max-width:1180px;margin:20px auto 0!important;padding:0 24px;display:block!important;color:#5bc6f4!important}.category-wrap{width:min(1180px,calc(100% - 48px))!important;margin:0 auto!important;padding:28px 0!important}.category-title{font-size:clamp(38px,5vw,64px)!important;line-height:1.05!important;color:#fff!important;margin:0 0 16px!important}.category-intro{max-width:900px;color:#d5e3e9!important;font-size:16px!important;line-height:1.6}.category-content{background:#082b3a!important}.category-richtext h2,.category-richtext h3,.category-richtext h4{color:#fff!important}.category-richtext>p,.category-richtext li{color:#d5e3e9!important}.catalog-overview{background:#0d3545!important;border-color:rgba(255,255,255,.13)!important}.catalog-group{border-color:rgba(8,43,58,.16)!important}.catalog-group summary{background:#0d3545!important;color:#fff!important}.category-richtext .catalog-table th{background:#dce6eb!important;color:#082b3a!important}.category-richtext .catalog-table td{background:#fff!important;color:#172c36!important}.category-richtext .catalog-table tbody tr:hover td{background:#f4f8fa!important}
.chemistry-branch-heading{color:#fff!important;font-size:34px!important;margin:30px 0 20px}.chemistry-branch-grid{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px;margin:0 0 28px}.chem-brand-card{display:grid;grid-template-columns:180px 1fr;align-items:center;gap:24px;padding:28px;background:#f7f9fb;border:1px solid #d5e0e7;border-radius:10px;text-decoration:none!important}.chem-brand-card img{width:180px;height:120px;object-fit:contain;background:#fff}.chem-brand-card h3{font-size:30px;color:#082b3a!important;margin:0 0 12px}.chem-brand-card p{color:#627d8e!important;margin:0 0 14px;line-height:1.5}.chem-brand-card strong{color:#086bd6!important}
.akcija-svih-osam{background:#082b3a!important;gap:20px!important}.akcija-kartica{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important}.akcija-puna-slika{background:transparent!important;border:0!important;border-radius:0!important}.akcija-h2{padding:0 2px!important}
@media(max-width:767px){.home-cat-grid,.chemistry-branch-grid{grid-template-columns:1fr}.home-cat-item[open]{min-height:0}.category-wrap{width:min(100% - 28px,1180px)!important}.chem-brand-card{grid-template-columns:1fr}.chem-brand-card img{width:100%;height:160px}.navbar{padding:9px 0!important}.gigal-logo-link img{width:50px!important;height:43px!important}.information .row>div{border-right:0!important;border-bottom:1px solid rgba(255,255,255,.08)!important}.home-cat-head h2{font-size:30px!important}}

/* V63 — NOVI MENI: cist, citljiv, bez gradient-text nasledja */
@media (min-width: 992px){
  #navbar.navbar{background:#06283a!important;border-bottom:1px solid rgba(72,184,238,.22)!important;padding:12px 0!important;}
  #navbar .navbar-nav{align-items:center!important;gap:8px!important;margin:0 0 0 auto!important;}
  #navbar .nav-item{position:relative!important;}
  #navbar .nav-item>.nav-link,
  #navbar .nav-item>.nav-link:link,
  #navbar .nav-item>.nav-link:visited{
    display:block!important;color:#f7fbff!important;background:transparent!important;
    background-image:none!important;-webkit-background-clip:border-box!important;background-clip:border-box!important;
    -webkit-text-fill-color:#f7fbff!important;padding:13px 17px!important;border-radius:7px!important;
    font-size:15px!important;font-weight:600!important;line-height:1.2!important;transition:background .16s ease,color .16s ease!important;
  }
  #navbar .nav-item>.nav-link:hover,#navbar .nav-item>.nav-link:focus{
    color:#fff!important;-webkit-text-fill-color:#fff!important;background:#0b65b8!important;background-image:none!important;
  }
  #navbar .nav-item>.nav-link.active{color:#fff!important;-webkit-text-fill-color:#fff!important;background:rgba(11,101,184,.28)!important;}
  #navbar .dropdown:hover>.nav-link,#navbar .dropdown.show>.nav-link{
    color:#fff!important;-webkit-text-fill-color:#fff!important;background:#0b65b8!important;
  }
  #navbar .dropdown-menu{
    display:none;position:absolute!important;top:100%!important;left:0!important;min-width:300px!important;margin:0!important;padding:8px!important;
    background:#06283a!important;border:1px solid rgba(89,188,235,.35)!important;border-radius:9px!important;
    box-shadow:0 16px 35px rgba(0,0,0,.32)!important;
  }
  #navbar .dropdown:hover>.dropdown-menu,#navbar .dropdown.show>.dropdown-menu{display:block!important;}
  #navbar .dropdown-item,#navbar .dropdown-item:link,#navbar .dropdown-item:visited{
    color:#f7fbff!important;-webkit-text-fill-color:#f7fbff!important;background:transparent!important;background-image:none!important;
    -webkit-background-clip:border-box!important;background-clip:border-box!important;border-radius:7px!important;padding:12px 14px!important;
    font-size:14px!important;font-weight:600!important;line-height:1.25!important;white-space:normal!important;
  }
  #navbar .dropdown-item:hover,#navbar .dropdown-item:focus,#navbar .dropdown-item:active{
    color:#fff!important;-webkit-text-fill-color:#fff!important;background:#0b65b8!important;background-image:none!important;
  }
}

/* V66: compact icons in desktop Products dropdown */
@media (min-width: 992px) {
  .navbar .dropdown-menu .dropdown-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
  }
  .navbar .dropdown-menu .gigal-menu-icon {
    width: 22px;
    min-width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    line-height: 1;
  }
  .navbar .dropdown-menu .dropdown-item:hover .gigal-menu-icon,
  .navbar .dropdown-menu .dropdown-item:focus .gigal-menu-icon { color: #fff; }
}
