﻿:root {
	--siva-boja: #717071;
	--osnovna-boja: #ea1b25;
	--osnova-hover: #c11119;
	--Gray-Scales-Black: #272343;
	--Gray-Scales-White: #FFF;
	--Dark: #0A142F;
	--plava-hover: #4389B8;
	--Color-System-success-green-light: #ECFDF3;
	--Color-System-success-green: #027A48;
	--Color-System-error-red-light: #FEF3F2;
	--Color-System-error-red: #B42318;
	--Yellow-light: #F7B500;
}

html, body {
	touch-action: manipulation;
	background: #f5f5f5;
}

::-webkit-scrollbar {
	background-color: transparent;
	width: 8px;
}

::-webkit-scrollbar-thumb {
	background-color: #ADADB2;
	border-radius: 999px;
}

a{
	text-decoration: none;
}

body {
	font-family: Inter;
	margin: 0 auto;
	/*width: 1440px;*/
	display: flex;
	flex-direction: column;
	gap: 24px;
	align-items: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Firefox */
input[type=number] {
	-moz-appearance: textfield;
}

input:focus-visible, textarea:focus-visible {
	outline: none !important;
}

.ucitavanje {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	height: 100vH;
	width: 100%;
	display: none;
	justify-content: center;
	align-items: center;
	color: black;
	background: rgb(255, 255, 255, 0.85);
	backdrop-filter: blur(3px);
	font-size: 24px;
	flex-direction: column;
	gap: 24px;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.header {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 16px;
	align-self: stretch;
	/*background: linear-gradient(to bottom right, #d0e7ff, #ffffff 50%, #d0e7ff);*/
	/*background-color: #ffffff;*/
	/*box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);*/
	z-index: 5;
}

.header-top {
	display: flex;
	padding: 14px 0px;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	background: white;
	border-bottom: 1px solid #dddddd;
}

.header-top-shipping {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	justify-content: space-between;
	margin: 0 18px;
	gap: 8px;
	opacity: 0.7;
	color: black;
	font-family: Inter;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%; /* 14.3px */
	/*text-transform: uppercase;*/
}

.header-top-shipping-left{
	display: flex;
}

.header-top-shipping-left-item {
	display: flex;
	gap: 8px;
	border-right: 2px solid #ccc;
	padding: 0 12px;
	color: black;
}

	.header-top-shipping-left-item:last-child{
		border: 0;
	}

.header-top-shipping-right {
	display: flex;
}

.header-navigation {
	top: -200px;
	display: flex;
	padding: 0px 20px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	transition: top 0.5s ease-in-out;
}

.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
	background: white;
	width: calc(100% - 20px);
	padding: 10px;
	box-shadow: 0px -2px 5px 0px black;
}

.header-navigation-left {
	display: flex;
	align-items: center;
	gap: 24px;
	position: relative;
	flex: 1;
}

.header-navigation-left1{
	display: flex;
	align-items: center;
	gap: 24px;
	cursor: pointer;
}

.header-navigation-left3-parent {
	display: flex;
	flex: 1;
}

.header-navigation-left1-menu {
	display: flex;
	width: 52px;
	height: 52px;
	align-items: center;
	gap: 7px;
}

.header-navigation-left3 {
	display: flex;
	flex: 1;
	height: 32px;
	padding: 3px 8px;
	align-items: center;
	gap: 6px;
	border-radius: 32px;
	border: 2px solid var(--osnovna-boja);
	background: #FFF;
	position: relative;
}

.header-navigation-left3-input {
	height: 100%;
	width: 100%;
	border: 0;
	color: var(--siva-boja);
	border-radius: 32px;

	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.header-navigation-right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 5px;
	margin-left: 24px;

}

.header-navigation-right-menu-item{
	display: flex;
	padding: 16px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 80px;
}

	.header-navigation-right-menu-item svg{
		width: 22px;
		height: 22px;
	}

.header-navigation-right-menu-item2 {
	padding: 0;
	flex-direction: row;
	max-width: 500px;
	gap: 0;
}

.header-navigation-right-menu-item-pom {
	display: flex;
	padding: 16px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.header-navigation-right-menu-item-text {
	color: var(--siva-boja);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.content {
	display: flex;
	width: 1440px;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}

.content-margin-top{
	margin-top: 24px;
}

.home-prvi-red {
	display: flex;
	/*height: 400px;*/
	width: 1400px;
}

.home-prvi-red-slideri{
	width: 100%;
}

.home-drugi-red{
	display: flex;
	align-items: flex-start;
	gap: 20px;
}

.home-drugi-red-item{
	display: flex;
	width: 690px;
	height: 400px;
	justify-content: center;
	align-items: center;
}

.home-drugi-red-item-banner{
	width: 100%;
	height: 100%;
}

.home-slider{
	display: flex;
	width: 100%;
	padding: 10px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.home-podnaslov{
	align-self: stretch;
	color: #000;

	/* H2 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.home-slider-content{
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	margin: 0 48px;
}

.home-slider-content-container{
	display: flex;
	height: 378px;
	justify-content: center;
	align-items: center;
	gap: 33px;
	flex: 1 0 0;
}

.heart2 {
	width: 44px;
	height: 44px;
	flex-shrink: 0;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.80);
	cursor: pointer;
}

.heart {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 10px;
	top: 10px;
}

.heart-fill svg path {
	fill: red;
	stroke: transparent;
}



.product {
	position: relative;
	display: flex;
	height: 100%;
	padding: 8px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 14px;
	/*flex: 1 0 0;*/
	border-radius: 6px;
	width: 220px;
	min-height: 378px;
	background: white;
	transition: background-color 1s ease;
	border: 1px solid #ebebeb;
}

	.product:hover {
		background: #E8E8E8;
	}

.product-vertical-start{
	justify-content: flex-start;
}

.product-no-width {
	width: auto !important;
}

.product-img {
	flex: 1 0 0;
	align-self: center;
	border-radius: 6px;
	object-fit: fill;
	aspect-ratio: 1 / 1;
	width: 100%;
	object-fit: contain;
	mix-blend-mode: multiply;
}

.product-img-a {
	display: flex;
	align-self: stretch;
	flex: 1 0 0;
	border-radius: 6px;
	/*border: 1px solid #E8E8EA;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);*/
	aspect-ratio: 1 / 1;
}

.product-img-a-order{
	flex: 0;
}

.product-img2 {
	object-fit: cover;
}

.product-tag-parent {
	position: absolute;
	left: 20px;
	top: 20px;
	display: flex;
	gap: 8px;
}

.product-tag{
	display: flex;
	padding: 6px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 4px;
	color: var(--Gray-Scales-White);
	font-family: Inter;
	font-size: 11px;
	font-style: normal;
	font-weight: 500;
	line-height: 110%; /* 14.3px */
	text-transform: capitalize;
}

.product-tag-new {
	background: #6c6e6f;
}

.product-tag-action {
	background: var(--osnovna-boja);
}

.product-content {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.product-content-order {
	gap: 12px;
}

.product-content-info{
	display: flex;
	width: 74px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.product-content-info-name {
	width: 100%;
	height: 60px;
	/*text-align: center;*/
	color: black;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 120%;

	display: -webkit-box; /* Potrebno za višelinijsko ograničenje */
	-webkit-line-clamp: 3; /* Maksimalan broj redova (u ovom slučaju 3) */
	-webkit-box-orient: vertical; /* Orijentacija kutije (vertikalna) */
	overflow: hidden; /* Sakriva višak teksta */
	text-overflow: ellipsis; /* Dodaje tri tačke (...) na kraju */
	height: 50px; /* Osigurava visinu za 3 reda */
}

.product-content-info-other {
	display: flex;
	flex: 1;
	justify-content: space-between;
}

.product-content-info-price {
	display: flex;
	align-items: flex-start;
	gap: 4px;
	flex-direction: column;
	justify-content: center;
}

.product-content-info-price1 {
	color: var(--Gray-Scales-Black);
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;

	/* Product Price */
	font-family: Inter;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 110%; /* 19.8px */
	text-transform: capitalize;
}

.product-content-info-price2 {
	color: gray;
	text-decoration: line-through;
	font-size: 14px;
	white-space: nowrap;
}

.product-content-info-price2-without {
	color: gray;
	text-decoration: none;
	font-size: 14px;
	white-space: nowrap;
}

.product-content-cart{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 5px;
	align-self: stretch;
}

.kolica {
	display: flex;
	width: 60px;
	height: 64px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 8px;
	cursor: pointer;
	transition: fill 1s ease;
}

.kolica-puna svg path {
	fill: var(--osnovna-boja);
	stroke: var(--osnovna-boja);
}

.kolica-text{
	color: var(--siva-boja);
	
	/* paraf card text */
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.kolicina-text-shop {
	display: flex;
	justify-content: center;
	align-content: center;
	height: auto; /* Postavi visinu u JS-u */
	overflow: hidden;
	opacity: 1;
	transition: height 1s ease, opacity 1s ease;
	text-align:center;
}

.kolicina-text-dodato2 {
	display: flex;
	justify-content: center;
	align-content: center;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: height 0.5s ease, opacity 1s ease;
}

.kolica-text-dodato {
	color: var(--osnovna-boja);
}

	.kolica-text-dodato .kolicina-text-dodato2 {
		display: flex;
		height: auto; /* Postavi visinu u JS-u */
		opacity: 1;
	}

	.kolica-text-dodato .kolicina-text-shop {
		height: 0;
		overflow: hidden;
		opacity: 0;
	}

.vidi-sve-kupaonice {
	margin-top: 24px;
	display: flex;
	flex: 1;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.menu-item {
	display: flex;
	padding: 12px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	/*border-radius: 35px;*/
	border-radius: 2px;
	background: var(--osnovna-boja);
	box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.25);
	color: #FFF;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.footer-parent{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.footer-newsletter {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	width: calc(100% - 64px);
	padding: 18px 32px;
	flex: 1;
	justify-content: space-between;
	background-color: var(--osnovna-boja);
}

.footer-newsletter-left {
	display: flex;
	gap: 18px;
	color: white;
	font-size: 18px;
	align-items: center;
}

.footer-newsletter-right {
	display: flex;
	flex-wrap: wrap;
	gap: 18px;
	color: white;
	font-size: 18px;
	align-items: center;
}

	.footer-newsletter-right label {
		font-size: 14px;
	}

	.footer-newsletter-right label a {
		color: white;
		text-decoration: underline;

	}

.footer {
	display: flex;
	/*width: 1440px;*/
	width: calc(100% - 64px);
	padding: 32px 32px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.footer-frame {
	display: flex;
	/*width: 1400px;*/
	width: 100%;
	padding: 10px 0px;
	justify-content: space-between;
	align-items: flex-start;
}

.footer-frame-frame{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 72px;
	flex: 1 0 0;
}

.footer-frame-frame-up {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-self: stretch;
	gap: 36px;
}

.footer-frame-frame-up-left{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	margin: 24px 0;
}

.footer-frame-frame-up-left-img-prostor{
	display: inline-flex;
	padding: 6px 10px;
	align-items: center;
	gap: 12px;
}

.footer-frame-frame-up-left-title {
	align-self: stretch;
	color: var(--Dark);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 32px; /* 160% */
}

.footer-frame-frame-up-left-other{
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.footer-frame-frame-up-left-telephone {
	align-self: stretch;
	color: var(--Dark);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
}

.footer-frame-frame-up-left-email{
	align-self: stretch;
	color: var(--Dark);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
}

.footer-frame-frame-up-left-podrska{
	margin: 24px 12px;
	font-size: 18px;
}

.footer-frame-frame-up-center {
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: center;
	gap: 128px;
	margin-top: 24px;
	align-items: flex-start;
	flex: 1 0 0;
	align-self: stretch;
}

.footer-frame-frame-up-center-header2 {
	align-self: stretch;
	color: var(--Dark);
	text-align: center;
	font-family: Inter;
	font-size: 18px;
	font-style: italic;
	font-weight: 900;
	line-height: 28px; /* 155.556% */
}

.footer-frame-frame-up-center-header {
	text-transform: uppercase;
	align-self: stretch;
	color: var(--Dark);
	text-align: left;
	font-family: Inter;
	font-size: 18px;
	font-weight: 900;
	line-height: 28px; /* 155.556% */
}

.footer-frame-frame-up-center-frame {
	display: flex;
	align-items: flex-start;
	flex: 1 0 0;
	gap: 124px;
	width: 100%;
	justify-content: center;
	margin-top: 24px;
}

.footer-frame-frame-up-center-frame-items {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	gap: 8px;
}

.footer-frame-frame-up-center-frame-items-item {
	display: flex;
	height: 16px;
	justify-content: left;
	align-items: center;
	color: var(--Dark);
	font-family: Inter;
	font-size: 13px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	opacity: 0.65;
	flex: 1;
	flex-wrap: nowrap;
	min-width: 220px;
	text-align: center;
}

.footer-frame-frame-up-right{
	display: flex;
	width: 367px;
	padding: 14px 28px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	background: rgba(32, 60, 134, 0.05);
	border-radius: 10px;
}

.footer-frame-frame-up-right-frame{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 18px;
	align-self: stretch;
}

.footer-frame-frame-up-right-frame-title{
	height: 28px;
	align-self: stretch;
	
	color: var(--Dark);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 28px; /* 175% */
}

.footer-frame-frame-up-right-frame-input-div{
	display: flex;
	height: 42px;
	padding-left: 16px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	border-radius: 6px;
	border: 1.5px solid #E7E8F2;
	background: #FFF;
}

.footer-frame-frame-up-right-frame-input-div input{
	width: 100%;
	height: 100%;
	border: 0;
	height: 18px;
	flex: 1 0 0;
	color: var(--Dark);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

	.footer-frame-frame-up-right-frame-input-div input:focus-visible {
		outline: -webkit-focus-ring-color auto 0px;
	}

.footer-frame-frame-up-right-frame-description{
	align-self: stretch;
	color: var(--Dark);
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 20.4px; /* 170% */
	opacity: 0.6;
}

.footer-frame-frame-down{
	display: flex;
	height: 43px;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}

.footer-frame-frame-down-social{
	display: flex;
	gap: 15px;	
}

.footer-frame-frame-down-center{
	display: flex;
	align-items: center;
	gap: 0px;
}

.footer-frame-frame-down-center-text{
	color: var(--Dark);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.footer-frame-frame-down-center-img-div{
	display: flex;
	align-items: center;
	gap: 12px;
}

.footer-frame-frame-down-right{
	color: var(--Dark);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.shop-group-filter {
	display: flex;
	width: 1440px;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
}

.shop-group-filter-filter{
	display: flex;
	width: 351px;
	padding: 10px;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	align-self: stretch;
}

.filter{
	display: flex;
	padding: 0px 20px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 8px;
	background: #FFF;
}

.filter-frame{
	display: flex;
	padding: 40px 0px;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	flex: 1 0 0;
}

.filter-frame-header{
	align-self: stretch;
	
	color: #000;

	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.search-window{
	display: flex;
	height: 32px;
	padding: 3px 8px;
	align-items: center;
	gap: 6px;
	align-self: stretch;
	border-radius: 32px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
}

.search-window-input{
	width: 100%;
	height: 100%;
	
	border: 0;
	color: var(--plava-hover);

	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.search-window-input:focus-visible{
	outline: 0;
}

.search-window-input::placeholder{
	color: var(--plava-hover);
}

.filter-frame-frame{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	align-self: stretch;
}

.divider{
	display: flex;
	height: 1px;
	justify-content: center;
	align-items: center;
	align-self: stretch;	
	background: var(--osnovna-boja);
}

.filter-frame-frame-sale {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
	padding: 0 30px;
}

.checkbox{
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
}

	.checkbox input, .checkbox .checkbox-text {
		cursor: pointer;
	}

.checkbox-text {
	color: #717071;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	user-select: none;
	text-transform: uppercase;
}

.shop-product{
	display: flex;
	flex-wrap: wrap;
	width: 1002px;
	flex-direction: row;
	align-items: flex-start;
	gap: 16px;
	flex-shrink: 0;
}

.shop-product-button-more{
	display: flex;
	justify-content: center;
	margin: 32px;
}

.dropdown-div{
	display: flex;
	flex-direction: column;
	align-self: stretch;
	padding: 0px 14px;
	gap: 24px;
}

.dropdown{
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	cursor: pointer;

}

.dropdown-text{
	flex: 1 0 0;
	color: #000;

	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.dropdown-arrow{
	display: flex;
	align-items: center;
	gap: 10px;
	
	transition: transform 0.5s ease;
}

.dropdown-content{
	display: flex;
	width: 253px;
	padding: 0px 16px;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
}

.dropdown-arrow-open{
	transform: rotate(90deg);
}

.proizvod{
	display: flex;
	width: 1440px;
	padding: 12px 0px;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}

.proizvod-up{
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
}

.proizvod-up-left{
	display: flex;
	height: 499px;
	justify-content: flex-end;
	align-items: flex-start;
	gap: 20px;
}

.proizvod-up-left-frame{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 71px;
}

.proizvod-up-left-frame-frame{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	max-width: 500px;
}

.proizvod-up-left-frame-frame-img {
	width: 498px;
	height: 273px;
	border-radius: 7px;
	object-fit: contain;
}

.proizvod-up-left-frame-frame-imgs-frame {
	height: 194px;
}

.proizvod-up-left-frame-frame-imgs-frame-img {
	height: 182px;
	object-fit: contain;
	cursor: pointer;
}



.proizvod-up-right {
	display: flex;
	padding: 32px 0px;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}

.proizvod-up-right-frame1{
	display: flex;
	width: 494px;
	justify-content: space-between;
	align-items: center;
}

.proizvod-up-right-frame1-frame{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 8px;
}

.proizvod-up-right-frame1-frame-text{
	color: #2D2D2D;

	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.proizvod-up-right-frame2{
	display: flex;
	align-items: center;
	gap: 10px;
}

.proizvod-up-right-frame2-text {
	color: #414141;
	display: flex;
	flex-direction: column;
	gap: 6px;

	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.proizvod-up-right-frame3{
	display: flex;
	padding: 16px;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	border-radius: 16px;
}

.proizvod-up-right-frame3-success{
	background: linear-gradient(0deg, var(--Color-System-success-green-light) 0%, var(--Color-System-success-green-light) 100%), #FFF;
	color: var(--Color-System-success-green);
}

.proizvod-up-right-frame3-success-svg svg g path {
	fill: var(--Color-System-success-green);
}

.proizvod-up-right-frame3-warning {
	background: rgba(255, 232, 168, 0.21);
	color: var(--Yellow-light, #F7B500);
}

.proizvod-up-right-frame3-warning-svg svg g path {
	fill: var(--Yellow-light, #F7B500);
}

.proizvod-up-right-frame3-error {
	background: var(--Color-System-error-red-light);
	color: var(--Color-System-error-red);
}

.proizvod-up-right-frame3-error-svg svg g path {
	fill: var(--Color-System-error-red);
}

.proizvod-up-right-frame3-div-text{
	display: flex;
	/*width: 320px;*/
	padding: 8px 8px 8px 0px;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
}

.proizvod-up-right-frame3-div-text-header{
	align-self: stretch;
	
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.proizvod-up-right-frame3-div-text-description{
	display: flex;
	align-self: stretch;

	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;

	gap: 4px;
}

	.proizvod-up-right-frame3-div-text-description a {
		color: var(--Color-System-error-red);
		font-weight: 600;
	}

.proizvod-up-right-frame4 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
}

.proizvod-up-right-frame4-row1{
	display: flex;
	height: 49px;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
}

.kolicina{
	display: flex;
	height: 49px;
	justify-content: center;
	align-items: center;
	border-radius: 104px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
}

.kolicina-btn{
	display: flex;
	flex-shrink: 0;
	margin: 0 10px;
	background: transparent;
	border: 0;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}

.kolicina-input {
	width: 50px;
	height: 100%;
	border: 0;
	background: transparent;
	text-align: center;
	color: #414141;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.kolicina-input:focus-visible{
	outline: -webkit-focus-ring-color auto 0px;
}

.kolicina-input::-webkit-outer-spin-button,
.kolicina-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.kolicina-input[type=number] {
  -moz-appearance: textfield;
}

.button-plavi{
	display: flex;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
	
	border-radius: 26px;
	background: var(--osnovna-boja);
	border: 1px solid var(--osnovna-boja);
	color: #FFF;
	cursor: pointer;

	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.button-bijeli{
	display: flex;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 26px;
	border: 1px solid var(--osnovna-boja, #006EB7);
	background: #FFF;
	color: #006EB7;
	cursor: pointer;

	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;	
}

.proizvod-up-right-frame4-row4{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
}

.proizvod-up-right-frame4-row4-frame{
	display: flex;
	align-items: center;
	gap: 20px;
}

.proizvod-up-right-frame4-row4-frame-text{
	color: #424242;
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.opis-proizvoda{
	display: flex;
	width: 1400px;
	padding: 30px 68px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.opis-proizvoda-frame{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 30px;
	align-self: stretch;
}

.opis-proizvoda-frame-header{
	display: flex;
	width: 693px;
	align-items: center;
	gap: 40px;
}
.opis-proizvoda-frame-header-text{
	color: #000;
	cursor: pointer;

	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.opis-proizvoda-frame-header-text-active{
	color: var(--osnovna-boja);
}

.opis-proizvoda-frame-sadrzaj {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	flex: 1 0 0;
	color: #414141;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.slicni-proizvodi{
	display: flex;
	padding-bottom: 20px;
	flex-direction: column;
	align-items: center;
	gap: 170px;
}

.slicni-proizvodi-frame{
	display: flex;
	width: 1440px;
	padding: 10px;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 40px;
}

.slicni-proizvodi-frame-header{
	color: #000;
	
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.slicni-proizvodi-frame-container{
	display: flex;
	width: 1400px;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.slider-strelice-centar .owl-nav{
	position: absolute;
	top: 35%;
	width: 100%;
	font-size: 50px;
}

	.slider-strelice-centar .owl-nav .owl-prev {
		position: absolute;
		left: -35px;
	}

	.slider-strelice-centar .owl-nav .owl-next {
		position: absolute;
		right: -35px;
	}


.slider-strelice-centar-pocetna .owl-nav .owl-prev {
	left: 12px;
}

.slider-strelice-centar-pocetna .owl-nav .owl-next {
	right: 12px;
}

.nema-slidera {
	display: flex;
	flex: 1;
	align-items: center;
	justify-content: center;
}

.owl-carousel {
	z-index: 0;
	opacity: 0;
	/* animation: fadeIn 2s forwards; */
}

.slider-pocetna-glavni-slika {
	/*max-height: 400px;*/
}

.slider-pocetna-sporedni-slika {
	height: 400px;
}

.cart {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 46px;
}

.cart-up {
	display: flex;
	flex: 1;
	flex-direction: row;
	gap: 32px;
	max-width: 1240px;
	width: 100%;
}

.cart-up-left-parent {
	display: flex;
	flex: 1;
	flex-direction: column;
	gap: 24px;
}

.cart-up-left {
	display: flex;
	/*flex: 1;*/
	flex-direction: column;
}

.cart-up-right {
	display: flex;
	flex: 1;
	min-width: 400px;
	max-width: 500px;
	flex-direction: column;
}

.cart-up-right-content {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	padding: 32px;
	background: white;
	border-left: 1px solid #DEDFE1;
	border-bottom: 1px solid #DEDFE1;
	border-right: 1px solid #DEDFE1;
}

	.cart-up-right-content:last-child {
		border-end-start-radius: 10px;
		border-end-end-radius: 10px;
	}

.cart-up-right-content-left {
	color: #3D3D3D;
	font-family: Oxygen;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	text-transform: uppercase;
}

.cart-up-right-content-right {
	color: #949494;
	font-family: Oxygen;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.cart-up-right-content-bold {
	font-weight: 600;
}

.cart-up-no-items {
	display: flex;
	flex: 1;
	justify-content: center;
	padding: 128px 0;
	font-size: 24px;
}

.cart-up-header {
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
	padding: 25px;
	border-start-start-radius: 10px;
	border-start-end-radius: 10px;
	background: var(--osnovna-boja);
	color: #FFF;
	font-family: Oxygen;
	font-size: 22px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	max-height: 25px;
}

.cart-up-header-left {
	display: flex;
	flex-direction: row;
	gap: 20px;
	width: 100%;
}

.cart-up-header-right {
	display: flex;
	flex-direction: row;
	gap: 30px;
}

.cart-up-header-right-content {
	display: flex;
	flex: 1;
	min-width: 70px;
}

.cart-up-header-right-content-quantity {
	min-width: 122px;
}

.cart-up-content-nema-dovoljno {
	background: #ffd2d2;
}

.cart-up-content-nova-cijena {
	background: #ffffd0;
}

.cart-up-content {
	background: white;
	display: flex;
	flex: 1;
	justify-content: space-between;
	align-items: center;
	padding: 25px;
	border-left: 1px solid #DEDFE1;
	border-bottom: 1px solid #DEDFE1;
	border-right: 1px solid #DEDFE1;
}

	.cart-up-content:last-child {
		border-end-start-radius: 10px;
		border-end-end-radius: 10px;
	}

.cart-up-content-delete-product {
	display: flex;
	align-items: center;
	cursor: pointer;
}

.cart-up-content-product{
	display: flex;
	align-items: center;
}

.cart-up-content-product-image {
	width: 50px;
	height: 50px;
	object-fit: fill;
	aspect-ratio: 1 / 1;
}

.cart-up-content-other{
	display: flex;
	flex: 1;
	min-width: 90px;
	justify-content: flex-end;
	align-items: center;
}

.cart-up-content-product-name {
	padding: 0 8px;
	color: #2D2D2D;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */

	display: -webkit-box; /* Potrebno za višelinijsko ograničenje */
	-webkit-line-clamp: 2; /* Maksimalan broj redova (u ovom slučaju 3) */
	-webkit-box-orient: vertical; /* Orijentacija kutije (vertikalna) */
	overflow: hidden; /* Sakriva višak teksta */
	text-overflow: ellipsis; /* Dodaje tri tačke (...) na kraju */
	height: calc(1.1em * 2); /* Osigurava visinu za 3 reda */
}

.cart-up-content-other-price {
	flex-direction: column;
	justify-content: center;
	color: #949494;
	font-family: Oxygen;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	white-space: nowrap;
}

.div-stepper {
	display: flex;
	width: 130px;
	height: 49px;
	justify-content: center;
	align-items: center;
	gap: 2px;
	flex-shrink: 0;
	border-radius: 100px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
}

.stepper-button{
	display: flex;
	width: 35px;
	height: 40px;
	justify-content: center;
	align-items: center;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.stepper-input {
	width: 50px;
	height: 40px;
	border: 0;
	padding: 0;
	margin: 0;

	text-align: center;
	color: #414141;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

	.stepper-input:focus-visible {
		outline: -webkit-focus-ring-color auto 0px;
	}

.cart-info-parent{
	position: relative;
}

.cart-info {
	display: flex;
	position: absolute;
	right: 2px;
	bottom: 2px;
	background: var(--osnovna-boja);
	border-radius: 999px;
	padding: 3px;
	min-width: 15px;
	text-align: center;
	justify-content: center;
	color: #FFF;
	/* paraf card text */
	font-family: Inter;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.cart-dugme {
	display: flex;
	width: 100%;
	margin-top: 44px;
	padding: 16px 0px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	max-width: 500px;
	border-radius: 26px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
	align-self: center;
	color: var(--osnovna-boja);
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	cursor: pointer;
}

.dugme-azuriraj {
	display: flex;
	background: var(--osnovna-boja);
	color: white;
	padding: 8px 11px;
	justify-content: center;
	cursor: pointer;
	border-radius: 8px;
}

.kosarica-input-dugme-div {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.login-page {
	display: flex;
	align-items: flex-start;
	gap: 35px;
	margin: 104px 0 128px 0;
}

.login-page-container {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 26px;
	border-radius: 20px;
	border: 0.25px solid var(--siva-boja);
	background: #FFF;
	box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
	padding: 30px 128px;
	min-height: 325px;
}

.login-page-container-title {
	color: #000;
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.login-page-container-input-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	max-width: 350px;
}

.login-page-container-input-div-description {
	align-self: stretch;

	color: #000;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.login-page-container-input-div-input {
	display: flex;
	padding: 0px 15px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 26px;
	border: 1px solid var(--siva-boja);
	background: #FFF;
}

.login-page-container-input-div-input-input {
	width: 100%;
	height: 32px;
	color: var(--siva-boja, #717071);
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	border: 0;
}

.lost-password-text {
	align-self: stretch;
	color: #000;
	text-align: right;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.button-puni-login {
	display: flex;
	padding: 12px 0px;
	min-width: 350px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 26px;
	background: var(--osnovna-boja);
	color: #FFF;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	cursor: pointer;
	border: 0;
}

.oko-za-password-input{
	cursor: pointer;
}

.registration-page {
	display: flex;
	width: 710px;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
}

.registration-page-header {
	flex-shrink: 0;
	align-self: stretch;
	background: var(--osnovna-boja);
	border-start-start-radius: 10px;
	border-start-end-radius: 10px;
	padding: 25px 0 25px 50px;
	color: #FFF;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.registration-page-content {
	flex: 1 0 0;
	align-self: stretch;

	border-radius: 0px 0px 10px 10px;
	border: 1px solid #DEDFE1;
	background: #FFF;
	padding: 16px 16px 32px 16px;
	margin-bottom: 32px;
}

.registration-page-content-disabled {
	padding: 16px;
}

.registration-page-content-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 25px;
}

.registration-page-content-content-input-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	align-self: stretch;
	flex: 1;
}

.registration-page-content-content-input-div-desc {
	color: #3D3D3D;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.registration-page-content-content-input-div-desc-disabled {
	color: black;
	font-weight: 600;
}

.registration-page-content-content-input-div-input {
	border-radius: 10px;
	border: 1px solid #DEDFE1;
	background: #FFF;
	align-self: stretch;
	padding: 5px;
	display: flex;
	align-items: center;
}

.registration-page-content-content-input-div-input-disabled{
	border: 0;
	padding-left: 0;
}

.registration-page-content-content-input-div-input-input {
	height: 20px;
	width: 100%;
	border: 0;
}

.registration-page-content-content-input-div-textarea {
	width: 100%;
	border: 0;
}

.registration-page-content-content-column {
	display: flex;
	gap: 46px;
	width: 100%;
}

.registration-page-content-content-text {
	color: #000;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.registration-page-content-content-checkbox {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #3D3D3D;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

	.registration-page-content-content-checkbox input{
		width: 20px;
		height: 20px;
	}

.registration-page-content-content-fill-button {
	display: flex;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 26px;
	background: var(--osnovna-boja);
	color: #FFF;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	border: 0;
	cursor: pointer;
}

.registration-page-content-content-outline-button {
	display: flex;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	border-radius: 26px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
	color: var(--osnovna-boja);
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.registration-page-content-content-imate-racun-parent {
	display: flex;
	flex: 1;
	width: 100%;
	justify-content: center;
}

.registration-page-content-content-imate-racun {
	color: #000;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.registracija-uspjesna {
	display: flex;
	flex-direction: column;
	min-height: 400px;
	justify-content: center;
	align-content: center;
	flex-wrap: wrap;
	font-size: 20px;
	
}

.error-text {
	color: red;
	font-size: 10px;
}

.greska-backend-div {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
	background: #ffeded;
	border: 1px solid red;
	padding: 24px;
	border-radius: 10px;
}

.greska-backend-div-naslov{
	font-size: 20px;
	font-weight: 600;
}

.greska-backend-div-opis{
	color: #2D2D2D;
}

.greska-backend-login-div {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
	background: #ffeded;
	border: 1px solid red;
	padding: 24px;
	border-radius: 10px;
	max-width: 300px;
}

.greska-backend-login-div-naslov {
	font-size: 16px;
	font-weight: 600;
}

.greska-backend-login-div-opis {
	font-size: 13px;
	color: #2D2D2D;
}

.info-backend-login-div {
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin-bottom: 24px;
	background: #edffef;
	border: 1px solid #028700;
	padding: 24px;
	border-radius: 10px;
	max-width: 300px;
}

.info-backend-login-div-no-width {
	max-width: none;
}

.contact {
	display: flex;
	flex-direction: column;
	gap: 50px;
}

.contact-title {
	display: flex;
	justify-content:center;

	color: #000;
	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.contact-down {
	display: flex;
	gap: 48px;
}

.contact-page {
	display: flex;
	width: 560px;
	flex-direction: column;
	align-items: flex-start;
	flex-shrink: 0;
}

.contact-page2 {
	display: flex;
	justify-content: center;
}

.contact-left-content {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	flex-shrink: 0;
}

.contact-left-content-row1 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	align-self: stretch;
}

.contact-left-content-row1-header {
	color: #000;
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.contact-left-content-row1-content {
	color: #000;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.contact-left-content-row2 {
	display: flex;
	align-items: center;
	gap: 28px;
	align-self: stretch;
}

.contact-left-content-row2-left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 28px;
	flex: 1 0 0;
}

.contact-left-content-row2-left-div {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 13px;
	align-self: stretch;
}

.contact-left-content-row2-left-div-subtitle {
	display: flex;
	flex: 1;
	width: 100%;

	color: #000;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.contact-left-content-row2-left-div-content {
	display: flex;
	flex: 1;
	width: 100%;

	color: #000;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.contact-left-content-row2-right {
	display: flex;
	width: 293px;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
	gap: 28px;
	text-align: right;
}

.contact-left-content-row2-right-div-content {
	justify-content: flex-end;
}

.contact-left-content-row3 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 13px;
	align-self: stretch;
}

.contact-left-content-row3-subtitle {
	justify-content: center;
}

.contact-left-content-row3-bottom {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.divider-korpa {
	color: var(--osnovna-boja);
	font-size: 20px;
}

.info-backend-login-div2 {
	max-width: fit-content;
}

.page-favorites {
	color: #000;
	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.page-favorites-button-buy-all-div{
	display: flex;
	justify-content: center;
	margin: 48px 0;
}

.page-favorites-button-buy-all {
	display: flex;
	min-width: 160px;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 26px;
	background: var(--osnovna-boja);
	color: #FFF;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	cursor: pointer;
}

.div-search-parent{
	display: flex;
	flex-direction: column;
	flex: 1;
	gap: 24px;
}

.div-search {
	display: none;
	position: absolute;
	left: 0px;
	top: 45px;
	width: calc(100% - 24px);
	background: white;
	color: black;
	padding: 16px;
	border-radius: 10px;
	box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);
	z-index: 10;
	gap: 24px;
}

.div-search-glavni {
	display: none;
}

.div-search-show {
	display: flex;
	flex-direction: column;
}

.div-search-products {
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 12px
}

.div-search-products-row {
	display: flex;
	gap: 16px;
	border: 1px solid #d7d7d7;
	border-radius: 10px;
	padding: 0 12px;
	background: white;
}

.div-search-products-row-image {
	width: 60px;
	height: 60px;
	object-fit: contain;
}

.div-search-products-row-title {
	display: flex;
	align-items: center;
	flex: 1;
	color: black;
	font-size: 12px;
	font-weight: 600;
}

.div-search-products-row-title2 {
	display: -webkit-box; /* Potrebno za višelinijsko ograničenje */
	-webkit-line-clamp: 1; /* Maksimalan broj redova (u ovom slučaju 3) */
	-webkit-box-orient: vertical; /* Orijentacija kutije (vertikalna) */
	overflow: hidden; /* Sakriva višak teksta */
	text-overflow: ellipsis; /* Dodaje tri tačke (...) na kraju */
	height: calc(1.3em * 1); /* Osigurava visinu za 3 reda */
}

.div-search-products-row-price {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	min-width: 100px;
	color: black;
}

.div-pogledaj-sve {
	display: flex;
	justify-content: space-around; /*search*/
}

.div-pogledaj-sve-dugme {
	display: flex;
	border: 1px solid var(--osnovna-boja);
	padding: 8px 32px;
	border-radius: 10px;
	color: var(--osnovna-boja);
}

.prekrivac {
	display: none;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vH;
	background: rgb(255, 255, 255, 0.6);
	backdrop-filter: blur(3px);
	z-index: 2;
}

.prekrivac-show{
	display: flex;
}

.textPodvuciSearch {
	background-color: #ffb8bb;
	display: inline;
}

.profile-page {
	display: flex;
	flex-direction: column;
	max-width: 800px;
	flex: 1;
	width: 100%;
	gap: 24px;
}

.profile-page-row {
	display: flex;
	justify-content: space-between;
	flex: 1;
	width: 100%;
	gap: 64px;}

.profile-page-row-first{
	margin-bottom: 40px;
}

.profile-page-title {
	display: flex;
	align-items: center;
	font-size: 26px;
	font-weight: 600;
}

.profile-page-right {
	display: flex;
	gap: 24px;
}

.profile-page-change-password {
	display: flex;
	justify-content: center;
	padding: 10px 20px;
	background: white;
	color: var(--osnovna-boja);
	border: 1px solid var(--osnovna-boja);
	border-radius: 10px;
}

.profile-page-logout {
	display: flex;
	justify-content: center;
	padding: 10px 20px;
	background: var(--osnovna-boja);
	color: white;
	border-radius: 10px;
}

.profile-page-row-column {
	display: flex;
	flex-direction: column;
	flex: 0.5;
	gap: 10px;
}

.profile-page-row-column-row {
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--siva-boja);
	padding-bottom: 10px;
}

.profile-page-row-column-row-subtitle{
	font-weight: 600;
}

.profile-page-header {
	display: flex;
	justify-content: space-between;
	padding: 20px 50px;
}

.profile-page-header-text {
	display: flex;
	align-content: center;
	flex-wrap: wrap;
}

.profile-page-header-buttom {
	display: flex;
	background: white;
	color: var(--osnovna-boja);
	padding: 4px 16px;
	border-radius: 10px;
	font-size: 14px;
	cursor: pointer;
}

.profil-page2{
	width: auto;
}

.seacrh-not-found {
	display: flex;
	flex-direction: column;
	min-height: 200px;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.seacrh-not-found-header{
	font-size: 16px;
	color: black;
}

.seacrh-not-found-content {
	font-size: 12px;
	color: dimgray;
}

.search-loading {
	display: flex;
	flex-direction: column;
	min-height: 200px;
	justify-content: center;
	align-items: center;
	gap: 8px;
}

.search-close {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	cursor: pointer;
}

.rezultati-div {
	display: flex;
	justify-content: space-between;
}

.button-without-border{
	border: 0;
	cursor: pointer;
}

.div-za-edit-profile-button {
	display: flex;
	flex: 1;
	width: 100%;
	justify-content: flex-end;
	margin-bottom: 48px;
}

.menu-glavni {
	position: absolute;
	left: -1000px;
	top: -18px;
	padding: 30px 16px 40px 16px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	flex: 1 0 0;
	border-radius: 0;
	background: white;
	min-width: 350px;
	box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.25);
	transition: left 0.4s ease-in-out;
	min-height: 93vH;
	max-height: 93vH;
	overflow-y: scroll;
	z-index: 20;
}

.menu-glavni-show{
	left: -20px;
}

.menu-glavni-up {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 100%;
	/*flex: 1;*/
	/*padding: 0 20px;*/
}

.menu-glavni-close-div {
	display: flex;
}

.menu-logo-div {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	width: 100%;
}

.menu-side2{
	display: flex;
	flex-direction: column;
	gap:4px;
	align-self: stretch;
}

.menu-side {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
	align-self: stretch;
}

.menu-glavni-item {
	display: flex;
	padding: 8px 20px;
	align-items: center;
	gap: 10px;
	align-self: stretch;
	cursor: pointer;
	border-radius: 8px;
	border: 1px solid var(--osnovna-boja);
	max-width: 280px;
}

	.menu-glavni-item:hover{
		background: var(--osnova-hover);
	}

	.menu-glavni-item:hover .menu-glavni-item-text {
		color: #eee;
		transform: scale(1.1);
	}

	.menu-glavni-item:hover .ikonice-grupe {
		transform: scale(1.1);
	}

.menu-glavni-item-text {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: 28px; /* 155.556% */
	transition: transform 1s ease;
	transform-origin: left center;
}

.menu-glavni-item svg {
	width: 25px;
	height: 25px;
	padding: 0 2px;
}

.menu-glavni-item-druga {
	border: 0;
}

.x-on-glavni-menu{
	cursor: pointer;
}

.error-page {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 96px;
	gap: 64px;
}

.error-page-message {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}

.error-page-message-title{
	color: darkred;
	font-weight: 600;
	font-size: 24px;
}

.error-page-message-message{
	color: var(--siva-boja)
}

.error-page-back-button {
	display: flex;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 26px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
	color: var(--osnovna-boja);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.42px;
}

.button-with-border {
	display: flex;
	padding: 12px 0px;
	min-width: 350px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 26px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
	color: var(--osnovna-boja);
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.checkout-page-container {
	min-height: 400px;
}

.checkout-right-items-title-row {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	padding: 32px;
	background: white;
	border-left: 1px solid #DEDFE1;
	border-bottom: 1px dashed #DEDFE1;
	border-right: 1px solid #DEDFE1;
	color: #3D3D3D;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.new-bottom-border {
	border-bottom: 1px dashed #DEDFE1;
}

.checkout-right-items-rows {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	border-left: 1px solid #DEDFE1;
	border-bottom: 1px dashed #DEDFE1;
	border-right: 1px solid #DEDFE1;
	background: white;
	padding: 32px;
	color: #000;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.42px;
	gap: 24px;
}

.checkout-right-items-row-single {
	display: flex;
	justify-content: space-between;
	color: #000;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.checkout-right-items-row-single-itemname {
	padding: 0 4px;
	flex: 0.6;
	display: -webkit-box; /* Potrebno za višelinijsko ograničenje */
	-webkit-line-clamp: 2; /* Maksimalan broj redova (u ovom slučaju 3) */
	-webkit-box-orient: vertical; /* Orijentacija kutije (vertikalna) */
	overflow: hidden; /* Sakriva višak teksta */
	text-overflow: ellipsis; /* Dodaje tri tačke (...) na kraju */
	height: 28px; /* Osigurava visinu za 3 reda */
}

.checkout-right-items-row-single-quantity-price {
	padding: 0 4px;
	flex: 0.2;
	text-align: end;
}

.podaci-odostavi-prozor {
	display: flex;
	flex-direction: column;
	min-width: 710px;
	padding: 25px;
	gap: 25px;
	border-left: 1px solid #DEDFE1;
	border-bottom: 1px solid #DEDFE1;
	border-right: 1px solid #DEDFE1;
	border-end-start-radius: 10px;
	border-end-end-radius: 10px;
	background: white;
}

.div-frame-payment {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.my-iframe-payment {
	width: 100%;
	height: 540px;
	border: 0;
}

.ucitavanje-placanje {
	display: flex;
	flex: 1;
	width: 100%;
	justify-content: center;
	align-items: center;
	min-height: 50vH;
	font-size: 24px;
}

.podaci-o-placanju-prozor {
	display: flex;
	flex-direction: column;
	min-width: 710px;
	min-height: 400px;
	padding: 25px;
	gap: 25px;
	background: white;
	border-left: 1px solid #DEDFE1;
	border-bottom: 1px solid #DEDFE1;
	border-right: 1px solid #DEDFE1;
	border-end-start-radius: 10px;
	border-end-end-radius: 10px;
	position: relative;
	justify-content: center;
}

.podaci-o-placanju-prozor-zamagljen {
	position: absolute;
	left: 0;
	top: 0;
	width: calc(100% - 24px);
	height: 100%;
	background: rgb(255, 255, 255, 0.8);
	backdrop-filter: blur(3px);
	display: flex;
	justify-content:center;
	align-items: center;
	padding: 12px;
	text-align: center;
}

.div-za-slike-u-galeriji {
	padding: 1px;
}

.div-za-slike-u-galeriji2 {
	padding: 4px;
	border-radius: 2px;
	border: 1px solid transparent;
}

.div-za-slike-u-galeriji2-active {
	border: 1px solid #000;
}

.text-nema-na-stanju {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 64px;
	text-align: right;
	font-size: 12px;
	max-width: 55px;
	color: var(--Color-System-error-red);
}

.product-specifikacije {
	display: flex;
	gap: 48px;
}

.product-specifikacije-left {
	display: flex;
	min-width: 200px;
	font-weight: 600;
}

.product-docs {
	display: flex;
	gap: 16px;
}

.product-docs-dokument {
	display: flex;
	padding: 2px 16px;
	background: #e30000;
	border: 0;
	color: white;
	border-radius: 4px;
}

.opis-proizvoda-frame-sadrzaj-div{
	display: flex;
	flex-direction: column;
	gap: 48px;
}

.profil-naziv {
	display: -webkit-box; /* Potrebno za višelinijsko ograničenje */
	-webkit-line-clamp: 1; /* Maksimalan broj redova (u ovom slučaju 3) */
	-webkit-box-orient: vertical; /* Orijentacija kutije (vertikalna) */
	overflow: hidden; /* Sakriva višak teksta */
	text-overflow: ellipsis; /* Dodaje tri tačke (...) na kraju */
	height: calc(1.3em * 1); /* Osigurava visinu za 3 reda */
	text-align: center;
}

.loading-json{
	height: 75px;
}

.success-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.success-page-first {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	width: 1440px;
}

.success-post {
	display: flex;
	gap: 4px;
	width: 1200px;

	color: #000;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.success-post-underline {
	color: #000;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
.success-delivery-container {
	display: flex;
	width: 1200px;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
}

.success-delivery-container-header {
	color: #000;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.success-delivery-container-content {
	display: flex;
	padding: 13px 29px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	border-radius: 10px;
	background: rgba(241, 223, 61, 0.31);
}

.success-delivery-time {
	display: flex;
	width: 1200px;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.success-delivery-time-content {
	display: flex;
	padding: 13px 29px;
	flex-direction: column;
	align-items: flex-start;
	gap: 3px;
	align-self: stretch;
	border-radius: 10px;
	background: rgba(188, 188, 188, 0.31);
}

.success-delivery-time-content2 {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 15px;
	align-self: stretch;
}

.success-delivery-time-content2-text {
	color: #000;
	text-align: center;
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.success-order {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	flex: 1;
	width: 100%;
}

.success-order-header {
	flex: 1 0 0;

	color: #000;
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.success-order-items {
	display: flex;
	justify-content: center;
	flex: 1;
	width: 100%;
	max-width: 1000px;
	flex-wrap: wrap;
	gap: 12px;
}

.success-order-details {
	display: flex;
	width: 1220px;
	padding: 10px;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
}

.success-order-details-header {
	color: #000;
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.success-order-details-content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	align-self: stretch;
}

.success-order-details-content-content {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	align-self: stretch;
	color: #000;
	/* paragraf (body) text */
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: 120%; /* 24px */
}

.success-order-details-content-content-total {
	color: #000;
	/* H3 */
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.success-order-details-content-content-hr {
	width: 100%;
	display: flex;
	height: 1px;
	justify-content: center;
	align-items: center;
	align-self: stretch;
	background: #4389B8;
	margin: 16px 0;
}

.success-order-button-div{
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.success-order-button-div-nazad {
	display: flex;
	padding: 16px 80px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 26px;
	background: var(--osnovna-boja);
	color: #FFF;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	min-width: 300px;
}

.success-order-button-div-narudzbe {
	display: flex;
	padding: 16px 80px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 26px;
	background: #FFF;
	color: var(--osnovna-boja);
	border: 1px solid var(--osnovna-boja);
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
	min-width: 300px;
}

.product-content-info-other-order{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.product-content-info-other-order-text {
	display: flex;
	flex-direction: column;
	gap: 4px;

	color: #000;
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.order-prazan-line{
	height: 14px;
}

.profile-menu {
	display: flex;
	gap: 12px;
}

.order-page {
	display: flex;
	flex-direction: column;
	max-width: 800px;
	flex: 1;
	width: 100%;
	gap: 24px;
}

.registration-page-content-order{
	padding: 0;
}

.order-page-header-table {
	display: flex;
	width: 100%;
	flex: 1;
	justify-content: space-between;
	font-weight: 800;
	border-bottom: 2px solid #DEDFE1;
}

.order-page-header-table-cell {
	padding: 12px 24px;
	flex: 1;
	text-align: center;
}

.order-page-row-table {
	display: flex;
	width: 100%;
	flex: 1;
	justify-content: space-between;
	padding: 12px 0;
	border-bottom: 1px solid #DEDFE1;
}

.order-page-row-table:last-child {
	border-bottom: 0px solid #DEDFE1;
}

.order-page-row-table-cell {
	padding: 12px 24px;
	flex: 1;
	color: black;
}

.order-page-row-table-cell-link {
	border: 1px solid var(--osnovna-boja);
	background: white;
	margin: 6px 12px;
	border-radius: 10px;
	padding: 6px 12px;
	color: var(--osnovna-boja);
}

.order-page-row-table-cell-center {
	text-align: center;
}

.order-page-row-table-cell-right {
	text-align: right;
}

.order-page-content-content {
	gap:0;
}

.cart-greske {
	display: flex;
	flex-direction: column;
	margin: 12px 0;
	gap: 12px;
	border-radius: 10px;
	border: 1px solid #ffafaf;
	font-size: 12px
}

.cart-greske-opis {
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 8px;
}

.cart-greske-header {
	background: #ffafaf;
	padding: 8px;
	border-start-start-radius: 10px;
	border-start-end-radius: 10px;
}

.cart-greske-footer {
	background: #ffafaf;
	padding: 8px;
	border-end-start-radius: 10px;
	border-end-end-radius: 10px;
}

.cijena-prije-popusta {
	font-size: 12px;
	text-decoration: line-through;
	text-decoration-color: #0000004d;
}

.aboutus-page {
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.aboutus-page-title {
	color: #0A142F;
	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.aboutus-page-mission-vision {
	display: flex;
	align-items: center;
	gap: 30px;
	align-self: stretch;
	background: rgba(67, 137, 184, 0.14);
}

.aboutus-page-mission-vision-div {
	display: flex;
	padding: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
}

.aboutus-page-mission-vision-div-div {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	flex: 1 0 0;
}

.aboutus-page-mission-vision-div-div-header {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.aboutus-page-mission-vision-div-div-content {
	text-align: center;
	color: #000;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.aboutus-page-content {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.aboutus-page-slogan {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.privacypolicy-page {
	display: flex;
	width: 1440px;
	flex-direction: column;
	align-items: center;
	gap: 50px;
}

.privacypolicy-page-header {
	color: #0A142F;
	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.privacypolicy-page-content {
	flex: 1 0 0;
	color: #000;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.payment-cancel-page{
	display: flex;
	flex-direction: column;
	gap: 48px;
	padding: 64px
}

.payment-cancel-page-header {
	color: #0A142F;
	text-align: center;

	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.payment-cancel-page-content {
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.order-page-no-order {
	display: flex;
	justify-content: center;
	margin: 64px 0 128px 0;
}

.dugme-obavijesti-me {
	display: flex;
	border-radius: 26px;
	border: 1px solid var(--osnovna-boja);
	background: #FFF;
	padding: 16px 20px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	color: var(--osnovna-boja);
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: -0.42px;
	cursor: pointer;
}

	.dugme-obavijesti-me .dugme-obavijesti-me-1 {
		display: flex;
	}

	.dugme-obavijesti-me .dugme-obavijesti-me-2 {
		display: none;
	}

.dugme-obavijesti-me-fill {
	background: var(--osnovna-boja);
	color: white;
}

	.dugme-obavijesti-me-fill svg path{
		fill: white;
	}

	.dugme-obavijesti-me-fill .dugme-obavijesti-me-1 {
		display: none;
	}

	.dugme-obavijesti-me-fill .dugme-obavijesti-me-2 {
		display: flex;
	}

.dugme-obavijesti-me-1, .dugme-obavijesti-me-2{
	text-align: center;
}

.div-dugme-obavijesti-me {
	margin-bottom: 24px;
}

.dugme-obavijesti-me-za-tabelu {
	max-width: 98px;
	min-width: 98px;
	padding: 12px 16px;
}

.product-list-loading {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	flex: 1;
	color: gray;
	width: 1002px;
	margin-top: 40px;
	gap: 16px;
}

.product-list-loading-no-product {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 1;
	color: gray;
	width: 1002px;
	margin-top: 40px;
}

#lista-proizvoda-glavna2,
#lista-proizvoda-glavna {
	transition: opacity 0.5s ease, visibility 0.5s ease;
	opacity: 1;
	visibility: visible;
}

	#lista-proizvoda-glavna.hidden2, #lista-proizvoda-glavna2.hidden2 {
		opacity: 0;
		visibility: hidden;
		position: absolute;
		left: -5000px;
	}

.pagination-block {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	gap: 12px;
	margin: 24px 0;
}

.pagination-block-number {
	display: flex;
	width: 32px;
	height: 32px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	background-color: transparent;
	border: 1px solid dimgray;
	color: dimgray;
	cursor: pointer;
}

	.pagination-block-number:hover {
		background-color: #f1f1f1;
	}

.pagination-block-number-active {
	background-color: var(--osnovna-boja);
	border: 1px solid var(--osnovna-boja);
	color: white;
}

	.pagination-block-number-active:hover {
		background-color: #005289;
		border: 1px solid #005289;
		color: white;
	}

.icon-buttons {
	display: flex;
	width: 32px;
	height: 32px;
	padding: 8px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
	background-color: #EDEDF0;
}

	.icon-buttons:hover {
		background: #DCDCDC;
	}

.glavna-logo-slika{
	display: flex;

}

.glavna-logo-slika svg {
	width: 150px;
}

.glavna-logo-slika-img{
	width: 200px;
}

.pretraga-mobile-icon {
	display: none;
}

.div-zatvori-search {
	display: none;
}

.ikonice-grupe {
	width: 30px;
	height: 30px;
	object-fit: contain;
	transition: transform 1s ease;
}

.placanje {
	display: flex;
	flex-direction: column;
	gap: 8px;
	justify-content: center;
	width: 100%;
	/*padding: 15px 28px;*/
}

.placanje-naslov {
	display: flex;
	text-align: center;
	justify-content: center;
	color: #000;
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	margin-bottom: 24px;
}

.placanje-red {
	display: flex;
	gap: 12px;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 36px;
	padding-top: 36px;
	border-top: 1px solid #ebebeb;
	align-items: center;
}

	.placanje-red img {
		mix-blend-mode: multiply;
	}

.newslater-button {
	display: flex;
	padding: 13px 11px;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 6px;
	background: #6c6e6f;
	color: white;
	border: 0;
	cursor: pointer;
}

.newsletter-message {
	margin: 120px 0;
	font-size: 20px;
}

.others-page {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 16px;
	align-self: stretch;
}

.others-page-header {
	color: #000;
	/* H2 */
	font-family: Inter;
	font-size: 34px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

	.others-page img {
		max-width: 100%;
	}

.izdavanje-kopije-message {
	display: flex;
	width: 100%;
	padding: 16px;
	align-items: center;
	gap: 12px;
	border-radius: 16px;
	background: rgba(255, 232, 168, 0.21);
}

.izdavanje-kopije-message-text {
	color: #F7B500;
	font-family: Oxygen;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.certifikati-slike-div {
	display: flex;
	align-items: center;
	gap: 27px;
}

	.certifikati-slike-div img {
		width: 400px;
		height: 400px;
	}

.certifikati-slike-div2 {
	display: flex;
	justify-content: center;
	align-items: center;
}

.certifikati-slike-div2-slika1 {
	width: 150px;
	height: 200px;
}

.certifikati-slike-div2-slika2 {
	width: 150px;
	height: 150px;
}

.certifikati-div3 {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	align-self: stretch;
}

.certifikati-div3-row {
	display: flex;
	gap: 24px;
	justify-content: space-between;
	align-items: center;
}

.certifikati-div3-row-cell {
	display: flex;
	width: 300px;
	height: 120px;
	padding: 80px 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 16px;
	background: #EEE;
	color: #000;
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
}

.prihvatanje-uvjeta {
	display: flex;
	gap: 10px;
	cursor: pointer;
	padding: 12px;
	background: white;
	border-left: 1px solid #DEDFE1;
	border-right: 1px solid #DEDFE1;
}

	.prihvatanje-uvjeta a {
		text-decoration: underline;
		color: var(--osnovna-boja);
	}

.footer-frame-frame-up-right-frame-form{
	display: flex;
	gap: 16px;
	flex-direction: column;
	width: 100%;
}

.footer-frame-frame-up-right-frame-form a{
	color: var(--osnovna-boja);
}

.prihvatanje-div-hr {
	height: 1px;
	width: 100%;
	background: #DEDFE1;
	margin: 20px 0;
}



.registration-page-content-content-input-div-input-disabled-form {
	background-color: #DEDFE1;
}

	.registration-page-content-content-input-div-input-disabled-form input {
		background-color: #DEDFE1;
	}

.cart-up-right-content-delivery-parent {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.cart-up-right-content-delivery {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}

.cart-up-right-content-delivery-text{
	color: var(--osnovna-boja);
	font-size: 12px;
}

.cart-up-right-content-delivery-text a{
	text-decoration: underline;
}

.x-on-glavni-menu svg path{
	fill: #000;
}

.text-ukloni-filtere {
	color: var(--siva-boja);
	/* paraf card text */
	font-family: Inter;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 14px */
	letter-spacing: -0.42px;
}

.checkbox input[type="checkbox"] {
	width: 18px;
	height: 18px;
}

.dugme-filteri {
	display: none;
	max-width: 220px;
	padding: 15px 85px;
	justify-content: center;
	align-items: center;
	gap: 6px;
	border-radius: 25px;
	background: var(--osnovna-boja);
	box-shadow: 4px 4px 6px 0px rgba(0, 0, 0, 0.25);
	color: #FFF;
	align-self: center;
	cursor: pointer;
}

.dugme-filteri-text {
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%; /* 16px */
	letter-spacing: -0.48px;
}

.filter-frame-header-parent{
	display: flex;
	flex: 1;
	align-self: stretch;
	width: 100%;
	justify-content:space-between;
	align-content: center;
}

.filter-close-button{
	cursor: pointer;
	display: none;
	min-width: 40px;
	justify-content: center;
}

.cart-dugme3 {
	background: var(--osnovna-boja);
	padding: 12px 8px;
	color: white;
	border-radius: 100px;
	margin-top: 24px;
	text-align: center;
	text-transform: uppercase;
}

.page-favorites-button-buy-all3 {
	padding: 12px 8px;
	color: var(--osnovna-boja);
	border-radius: 100px;
	margin-top: 24px;
	text-align: center;
	text-transform: uppercase;
	border: 1px solid var(--osnovna-boja);
}

.menu-glavni-item-action:hover {
	background: #840000;
}

.placanje-div-parent{
	width: 100%;
}

.ikonica-pdf {
	width: 60px;
	height: 60px;
}

.product-docs-dokument-parent {
	display: flex;
	flex-direction: column;
	gap: 6px;
	justify-content: center;
	align-items: center;
}

.header-iznos-korpe{
	color: black;
	font-weight: 600;
}

.proizvod-up-right-frame4-row4-frame svg path{
	stroke: var(--osnovna-boja);
}

.dugme-obavijesti-me svg path {
	fill: var(--osnovna-boja);
}


.kolicina-btn svg path{
	stroke: var(--osnovna-boja);
}

.stepper-button svg path {
	stroke: var(--osnovna-boja);
}

.shimmer-bg {
	display: flex;
	border-radius: 6px;
	width: 220px;
	padding: 8px;
	height: 100%;
	min-height: 378px;
	background: linear-gradient( 110deg, #e0e0e0 8%, #f0f0f0 18%, #e0e0e0 33% );
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite linear;
	border-radius: 10px;
	border: 1px solid #ebebeb;
}

.shimmer-search-bg {
	display: flex;
	border-radius: 6px;
	padding: 8px;
	min-height: 30px;
	background: linear-gradient( 110deg, #e0e0e0 8%, #f0f0f0 18%, #e0e0e0 33% );
	background-size: 200% 100%;
	animation: shimmer 1.5s infinite linear;
	border-radius: 10px;
}

.shimmer-search-text{
	min-width: 80px;
	min-height: 15px;
}


@keyframes shimmer {
	0% {
		background-position: -100% 0;
	}

	100% {
		background-position: 100% 0;
	}
}

.div-loading-serach-top-div {
	display: flex;
	flex: 1;
	justify-content: space-between;
}

.about-page-2 {
	max-width: 720px;
}

.about-page-2-width{
	width: 100%;
	margin: 24px 0;
}

.others-page-elem{
	width: 100%;
}

.dugme-placanje {
	background: var(--osnovna-boja);
	color: white;
	padding: 16px 0px;
	border-radius: 4px;
	cursor: pointer;
	border: 0;
	font-size: 14px;
	margin: 0;
	font-family: Inter;
	text-align: center;
	display: flex;
	justify-content: center;
	flex: 1;
	width: 100%;
	text-transform: uppercase;
	font-weight: 800;
}

	.dugme-placanje:hover{
		background: var(--osnova-hover);
	}

.naslov-nacin-placanje{
	text-align: center;
	font-size: 24px;
	font-weight: 800;
}

.orderby{
	width: 100%;
	padding: 8px;
	margin-bottom: 12px;
}

.header-bottom {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	align-self: stretch;
	justify-content: center;
	color: white;
	background: var(--osnovna-boja);
}

.header-bottom-item {
	display: flex;
	padding: 16px;
	border-right: 1px solid #da141e;
	border-bottom: 1px solid #da141e;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	color: white;
	transition: 1s background;
}

	.header-bottom-item:hover {
		background: var(--osnova-hover);
	}

	.header-bottom-item:last-child {
		border: 0;
	}

/*MENU*/


.contianer-kategorije {
	display: flex;
	flex-wrap: wrap;
	flex: 1;
	align-self: stretch;
	justify-content: center;
	color: white;
	background: var(--osnovna-boja);
}

	.contianer-kategorije::-webkit-scrollbar {
		display: none;
	}

.contianer-kategorije-dropdown {
	display: flex;
	/*max-width: 1320px;*/
	flex-direction: column;
	align-items: flex-start;
	flex: 1 0 0;
}

.contianer-kategorije-dropdown-parent {
	display: flex;
	padding: 16px;
	border-right: 1px solid #da141e;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 600;
	color: white;
	transition: 1s background;
	white-space: nowrap;
	cursor: pointer;
}

	.contianer-kategorije-dropdown-parent:hover {
		background: var(--osnova-hover);
	}

.contianer-kategorije-dropdown-parent-last-child {
	border: 0;
}

.contianer-kategorije-dropdown-wrapper {
	display: flex;
	position: relative;
	/*padding: 32px 0px 12px 0px;*/
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
}

.contianer-kategorije-dropdown-wrapper2 {
	justify-content: center;
}

.contianer-kategorije-dropdown-wrapper-list {
	display: flex;
	justify-content: center;
	align-items: center;
	/*gap: 32px;*/
	color: black;
	/*flex-wrap: wrap;*/
	flex: 1;
}

.contianer-kategorije-dropdown-content {
	position: absolute;
	top: calc(100% + 20px);
	left: 20px;
	display: flex;
	/*max-width: 1320px;*/
	max-width: calc(100% - 150px);
	padding: 24px 48px;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
	align-self: stretch;
	border-radius: 16px;
	border-top: 1px solid #DCDCDC;
	background: white;
	/* Shadows/Light/Elevation 3 */
	box-shadow: 0px 6px 10px 2px rgba(0, 0, 0, 0.10);
	z-index: 3;
}

.contianer-kategorije-dropdown-content-up {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-self: stretch;
	padding-bottom: 24px;
	border-bottom: 1px solid #DCDCDC;
}

.contianer-kategorije-dropdown-content-down {
	column-count: 4; /* Podesite broj kolona prema potrebi */
	column-gap: 24px; /* Podesite razmak između kolona prema potrebi */
	width: 100%;
	/*
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-content: flex-start;
	max-height: 600px;
	gap: 24px 24px;
	flex-wrap: wrap;
	*/
}

.contianer-kategorije-dropdown-content-down-category {
	margin-bottom: 24px;
	padding: 8px;
	break-inside: avoid;
	width: 100%;
	box-sizing: border-box;
	/*
	display: flex;
	min-width: 290px;
	max-width: 300px;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	*/
}

.contianer-kategorije-dropdown-content-down-category-title {
	display: flex;
	padding: 8px;
	align-items: center;
	gap: 12px;
	align-self: stretch;
	color: black;
}

.contianer-kategorije-dropdown-content-down-category-items {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
}

.contianer-kategorije-dropdown-content-down-category-items-item {
	display: flex;
	padding: 6px 8px;
	align-items: flex-start;
	font-size: 14px;
	gap: 10px;
	align-self: stretch;
	color: #6D6D75;
}

.category-container-left-category-title {
	display: flex;
	align-items: center;
	gap: 8px;
}

.prazna-prostor-izmedju-menija {
	position: absolute;
	left: 0px;
	top: 100%;
	background: transparent;
	width: 100%;
	height: 25px;
}

.contianer-kategorije-dropdown-content {
	width: 100%;
}

	.contianer-kategorije-dropdown-content:hover {
		display: flex;
	}

.contianer-kategorije-dropdown-content, .contianer-kategorije-dropdown-parent .prazna-prostor-izmedju-menija {
	display: none;
}

.contianer-kategorije-dropdown-parent:hover + .contianer-kategorije-dropdown-content, .contianer-kategorije-dropdown-parent:hover .prazna-prostor-izmedju-menija {
	display: flex;
}

.category-container-left-category-title-broj {
	display: flex;
	padding: 4px 8px;
	align-items: flex-start;
	gap: 10px;
	border-radius: 4px;
	background: #EDEDF0;
	color: #6D6D75;
}

.typography-label-large {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0px;
}

.typography-headling-small {
	font-weight: 600;
	font-size: 20px;
	line-height: 32px;
	letter-spacing: -0.6px;
}

.typography-title-small {
	font-weight: 600;
	font-size: 14px;
	line-height: 20px;
	letter-spacing: 0px;
}

.typography-label-small {
	font-family: var(--fontOsnovni);
	font-weight: 600;
	font-size: 11px;
	line-height: 16px;
	letter-spacing: 0.25px;
}

.button-outlined {
	display: inline-flex;
	padding: 12px 24px;
	gap: 8px;
	border: 1px solid #2A2A33;
	border-radius: 8px;
	background-color: transparent;
	color: #2A2A33;
}

.bosch-distributer-text {
	color: #333e48;
	text-decoration: none;
	font-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 48px 0;
	width: 100%;
}

	.bosch-distributer-text img{
		height: 24px;
		margin: 0 8px;
	}

.pocetna-brendovi {
	display: flex;
	gap: 16px;
	background: white;
	border-radius: 12px;
	padding: 24px;
	width: calc(100% - 48px) !important;
}

.pocetna-brendovi-slika {
	width: 100%;
	min-height: 150px;
	max-height: 150px;
	object-fit: contain;
}

.pocetna-brendovi-parent{
	display: flex;
	flex-direction: column;
	width: 100%;
}

.pocetna-kategorije-slide {
	display: flex;
	gap: 16px;
	background: #ebebeb;
	border-radius: 12px;
	padding: 48px 24px;
	width: calc(100% - 48px) !important;
}

.home-slider-margin-top{
	margin-top: 48px;
}

.filteri-grupe {
	display: flex;
	gap: 8px;
	align-items: center;
	font-size: 14px;
	font-weight: 600;
	margin-top: 10px;
	margin-bottom: 16px;
}

.filteri-grupe-divider{
	color: black;
}

.filteri-frupe-naziv {
	color: gray;
	text-decoration: none;
	background: white;
	color: black;
	padding: 8px;
	border-radius: 8px;
	border: 1px solid #d1d1d1;

}

	.filteri-frupe-naziv:hover {
        background: #e0e0e0;
    }

.filteri-search {
	display: flex;
	align-content: center;
	align-items: center;
	margin-bottom: 16px;
	gap: 8px;
	font-size: 14px;
	padding: 16px;
	border-radius: 8px;
}

.icon-buttons-filter-x {
	display: flex;
	width: 16px;
	height: 16px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
	border-radius: 4px;
	border: 0;
	cursor: pointer;
	background-color: #EDEDF0;
}

	.icon-buttons-filter-x:hover {
		background: #DCDCDC;
	}

.filteri-ostalo-naslov {
	font-weight: 500;
	font-size: 16px;
	background: #f5f5f5;
	display: flex;
	flex: 0;
	padding: 8px;
	border-radius: 8px;
}

.filteri-ostalo {
	background: white;
	padding: 16px;
	border-radius: 8px;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 16px;
}

.filteri-ostalo-item {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}

.filter-oznaka {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid #d1d1d1;
	border-radius: 8px;
	padding: 4px;
}


.filter-oznaka-naziv {
	font-weight: 600;
}

.placanje-logo-glavni {
	width: 300px;
}

.placanje-logo{
	width: 70px;
}

.placanje-logo2 {
	width: 200px;
}

.popup-windows {
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vH;
	background: rgba(0, 0, 0, 0.8);
	z-index: 5;
	backdrop-filter: blur(3px);

}

.popup-windows-content{
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.popup-windows-content-slika {
	width: 500px;
	height: 500px;
	object-fit: contain;
}

.close-btn{
	display: flex;
	cursor: pointer;
	background: white;
	width: 40px;
	height: 40px;
	justify-content: center;
	align-items: center;
	font-weight: 800;
	align-self: flex-end;
}

.proizvod-grupe {
	display: flex;
	width: 100%;
	margin-bottom: 24px;
}

.filteri-frupe-naziv-proizvoda{
	color: black;
}

.filteri-ostalo-glavni-naslov{
	display: flex;
	justify-content: center;
}

.filteri-ostalo-glavni-naslov2 {
	text-transform: uppercase;
	font-weight: 900;
	background: #f5f5f5;
	padding: 8px;
	border-radius: 8px;
}

.text-prvo-veliko{
	text-transform: capitalize;
}

.order-status{
	display: flex;
	flex-direction: column;
	gap: 8px;
	text-align: center;
}

.order-status-title{
	font-weight: 600;
}

.promo-prostor {
	display: flex;
	flex-direction: column;
	background: #ebebeb;
	flex: 1;
	width: 100%;
	padding: 24px 12px;
	border-radius: 12px;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.promo-prostor-text{
	text-align: center;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
}

.podaci-odostavi-prozor-check-prostor{
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.podaci-odostavi-prozor-check-prostor-input-i-label{
	display: flex;
	gap: 12px;
	align-items: center;
}

.prazan-prostor-vertikalno{
	height: 24px;
}

.podaci-odostavi-prozor-podaci-za-dostavu {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.pib-napomena{
	font-size: 12px;
}

.licno-preuzimanje-prouka{
	display: none;
	flex-direction: column;
	gap: 24px;
	margin-bottom: 24px;
}

.licno-preuzimanje-prouka-naziv-firme{
	font-weight: 600;
}

.container-kategorije-mobile {
	display: none;
	width: 100%;
	justify-content: flex-start;
	max-width: none;
	gap: 16px;
	flex-wrap: nowrap;
	overflow-x: auto;
	-ms-overflow-style: none;
	scrollbar-width: none;
	align-items: center;
	padding: 0 12px;
	box-sizing: border-box;
	margin: 24px 0;
}

.container-kategorije-mobile-item {
	display: flex;
	padding: 8px 12px;
	justify-content: center;
	align-items: center;
	gap: 10px;
	border-radius: 4px;
	border: 1px solid #ccc;
	text-align: center;
	white-space: nowrap;
	cursor: pointer;
}

.container-kategorije-mobile-item-text{
	color: #111;
	font-size: 12px;
	font-weight: 600;
}