@charset "utf-8";
/* CSS Document */
*, ::after, ::before {
	box-sizing: border-box;
}

:root {
	--kartica_tekst: #5c4a52;
	--baby-blush: #f7e8e8;
	--baby-cream: #fffaf6;
	--baby-rose: #d4a5a5;
	--baby-mauve: #8b6f7d;
	--baby-sage: #b8c9b8;
	--baby-shadow: 0 0.5rem 1.25rem rgba(139, 111, 125, 0.12);
}

@font-face {
	font-family: 'Alegreya';
	font-display: swap;
  	src: url('../webfonts/AlegreyaSans-Regular.ttf')  format('truetype'); /* Safari, Android, iOS */
}

body {
	margin: 0;
	padding: 0;
	min-height: 100vh;
	overflow-x: hidden;
	font-family: alegreya, sans-serif;
	font-size: clamp(1rem, 2.5vw, 1.2rem);
}

.wrapper {
	max-width: 1280px;
	display: block;
	margin: 0 auto;
	padding: 0 1rem;
}

.nav_bg_color{
	background-color: hsla(200,58%,90%,1.00);
	margin: 0;
}

header {
	display: block;
	position: relative;
	margin: 0;
	border-bottom: solid medium darkblue;
	z-index: 200;
	box-shadow: 0px 4px 8px 0px rgba(0,0,0,0.7);
}


.header_bottom_size {
	height: 64px;
}

.brzi_linkovi {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	overflow: hidden;
}

.mreze > a > img {
	padding: 0 1rem;
	transition: 1000ms;
}

.mreze > a:hover > img {
	transform: rotate(360deg);
}

.tel {
	align-content: center;
	padding-right: 2rem;
}

.korpa {
	margin-left: auto;
	display: flex;
	flex-direction: row;
	align-items: center;
	padding: 0 1rem;
}
/*
.korpa img {
	transition: 1000ms;
}
.korpa img:hover {
	transform: rotateY(360deg);
}
*/

.logo_img {
	max-width: 200px;
	max-height: 60px;
	transform: rotate(360);
	transition-duration: 800ms repeat;
	padding: 0;
	margin: auto 0;
	animation: logorot 4500ms infinite;
}

@keyframes logorot {
	0% {
		transform: rotateY(0deg);
	}
	100% {
		transform: rotateY(360deg);
	}
}
.nav_bar {
	display: flex;
	flex-direction: row;
	height: 100%;
	
	position: relative;
	text-transform: uppercase;
	/* height: 100%; */
}

.nav_bar a {
	display: flex;
	text-decoration: none;
	color: inherit;
	margin: 0;
	height: 100%;
	display: flex;
	align-items: center;
}

.nav_bar ul {
	display: flex;
	flex-direction: row;
	/*align-items: center;
	justify-content: flex-start; */
	height: 100%;

	list-style: none;
	margin: 0;
}


.nav_item {
	display: flex;
	align-items: center;
	margin-left: 0px;
	padding: 0 1em;
	color: darkblue;
	background-color: transparent;
	transition: 200ms;

}

.nav_item.aktiv {
	background-color: rgba(255, 255, 255, 0.55);
	border-radius: 0.65rem;
	font-weight: 600;
}

body.grupa-page-1 .nav_item.aktiv { color: #5a7f96; }
body.grupa-page-2 .nav_item.aktiv { color: #9a6b73; }
body.grupa-page-3 .nav_item.aktiv { color: #7a6b96; }
body.grupa-page-4 .nav_item.aktiv { color: #5f7d6a; }
body.grupa-page-5 .nav_item.aktiv { color: #9a7a5f; }

.nav_item:hover {
	background-color: rgba(255, 255, 255, 0.4);
	border-radius: 0.65rem;
	transition: 400ms;
}

/* 
	.nav_item::before {
	content: '';
	position: absolute;
	inset: 0;
	width: 100%;
	height: 0.2em;
	background-color: red;
	transform: scale(0,1);
	transition: 400ms;
}
*/
/*
.nav_kat {
	position: relative;
}
*/

/*
.nav_list {
	position: absolute;
	top: 100%;
	left: 1rem;
	overflow: hidden;
	background-color: hsla(220,50%,50%,0.2);
}
*/

/*
.nav_sub {
	display: block;
	margin-left: 1em;
}
*/




/*
.nav_kat:hover > .nav_list {
	transform: scale(1,1);
}
*/

/*
.nav_kat:hover .nav_item {
	opacity: 1;
	transition: opacity 200ms 200ms;
}
*/

main {
	margin: 0;
	display: block;
	min-height: 100vh;
	transition: background-color 400ms ease;
}

body.grupa-page-1 main {
	background: linear-gradient(180deg, #eef6fc 0%, #f8fbfe 45%, #fffaf8 100%);
}

body.grupa-page-2 main {
	background: linear-gradient(180deg, #fdf0f2 0%, #fef7f8 45%, #fffaf8 100%);
}

body.grupa-page-3 main {
	background: linear-gradient(180deg, #f1eef9 0%, #f8f6fd 45%, #fffaf8 100%);
}

body.grupa-page-4 main {
	background: linear-gradient(180deg, #edf6f0 0%, #f4faf6 45%, #fffaf8 100%);
}

body.grupa-page-5 main {
	background: linear-gradient(180deg, #fdf4ea 0%, #fef9f3 45%, #fffaf8 100%);
}

.hero-slider {
	display: block;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: clamp(10rem, 32vw, 25rem);
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: hsla(200, 58%, 95%, 1);
	isolation: isolate;
}

.hero-slide {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	opacity: 0;
	transition: opacity 1s ease-in-out;
	will-change: opacity;
}

.hero-slide-active {
	opacity: 1;
	z-index: 1;
}

.slider {
	display: block;
	position: relative;
	width: 100%;
	max-width: 100%;
	height: clamp(10rem, 32vw, 25rem);
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: hsla(200, 58%, 95%, 1);
	isolation: isolate;
}

.slider-track {
	display: flex;
	height: 100%;
	width: 100%;
	transition: transform 0.55s ease-in-out;
	will-change: transform;
}

.slide {
	flex: 0 0 100%;
	width: 100%;
	min-width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	padding: 0;
}

.slide > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.slider-empty {
	margin: 0;
	padding: 1rem;
	text-align: center;
}

.s1 {
	background-image: url("../images/banner_01.jpg");
	z-index: 5;
	height: 400px;
	object-fit: cover;
	background-repeat: no-repeat;
}

.s2 {
	background-image: url("../images/banner_02.jpg");
	z-index: 6;
}


.katalog {
	width: 100%;
	max-width: 1280px;
	overflow: hidden;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 2rem;
	height: auto;
	padding: 1.5rem 0 2.5rem;
	margin: 0 auto;
}

.catalog-sort {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.55rem;
	margin: 0;
	padding: 0;
	position: relative;
	z-index: 1;
}

.catalog-sort label {
	color: var(--baby-mauve);
	font-weight: 600;
	font-size: 0.92rem;
	white-space: nowrap;
}

.catalog-sort select {
	min-width: 10rem;
	padding: 0.38rem 0.65rem;
	border: 1px solid rgba(212, 165, 165, 0.55);
	border-radius: 0.7rem;
	background-color: #fffaf8;
	color: var(--kartica_tekst);
	font: inherit;
	cursor: pointer;
}

.back-to-top {
	position: fixed;
	right: 1.15rem;
	bottom: 1.15rem;
	z-index: 1100;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.2rem;
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(90, 111, 90, 0.32);
	border-radius: 999px;
	background: linear-gradient(135deg, #f4f8f4, #dcefdc);
	color: #4f684f;
	font-size: 0.86rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 0.45rem 1.15rem rgba(92, 74, 82, 0.22);
	transition: transform 180ms ease, box-shadow 180ms ease;
}

.back-to-top:hover {
	transform: translateY(-0.12rem);
	box-shadow: 0 0.6rem 1.4rem rgba(92, 74, 82, 0.26);
}

.katalog-header--with-sort {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 1rem;
}

.katalog-header--with-sort .kat_ime {
	grid-column: 2;
}

.katalog-header--with-sort .catalog-sort {
	grid-column: 3;
	justify-self: end;
}

.katalog-header {
	grid-column: 1 / -1;
	margin: 0.3rem 0 0.9rem;
	padding: 0.81rem 2rem;
	text-align: center;
	background: linear-gradient(135deg, var(--baby-blush) 0%, var(--baby-cream) 55%, #f3efe8 100%);
	border-radius: 2rem;
	border: 1px solid rgba(212, 165, 165, 0.35);
	box-shadow: var(--baby-shadow);
	position: relative;
	overflow: hidden;
}

.katalog-header::before,
.katalog-header::after {
	content: "";
	position: absolute;
	width: 5.5rem;
	height: 5.5rem;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 165, 165, 0.18) 0%, transparent 70%);
	pointer-events: none;
}

.katalog-header::before {
	top: -2rem;
	left: -1rem;
}

.katalog-header::after {
	bottom: -2.5rem;
	right: -0.5rem;
}

.kat_ime {
	margin: 0;
	padding: 0;
	border: none;
	background: none;
	font-size: clamp(1.5rem, 2.8vw, 2rem);
	font-weight: 700;
	letter-spacing: 0.06em;
	color: var(--baby-mauve);
	text-transform: none;
	position: relative;
	z-index: 1;
}

.kat_ime::after {
	content: "";
	display: block;
	width: 4.5rem;
	height: 2px;
	margin: 0.39rem auto 0;
	border-radius: 999px;
	background: linear-gradient(90deg, transparent, var(--baby-rose), transparent);
}

.katalog-grid {
	display: contents;
}

.katalog-akcija {
	margin-top: 0;
}

.kat_ime--akcija {
	color: #2f7a45;
}

.kat_ime--akcija::after {
	background: linear-gradient(90deg, transparent, #5cb86a, transparent);
}

.kartica {
	width: 100%;
	max-width: 280px;
	background-color: var(--baby-cream);
	color: var(--kartica_tekst);
	margin: 0 auto;
	height: auto;
	min-height: 320px;
	border: 1px solid rgba(212, 165, 165, 0.25);
	border-radius: 1.35rem;
	padding: 0.65rem;
	position: relative;
	overflow: hidden;
	display: block;
	box-shadow: var(--baby-shadow);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

.kartica:hover {
	transform: translateY(-0.2rem);
	box-shadow: 0 0.75rem 1.75rem rgba(139, 111, 125, 0.16);
}

.pr_slika {
	position: relative;
	width: 100%;
	aspect-ratio: 1;
	margin: 0 auto;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 1rem;
	opacity: 1;
	transition: opacity 100ms;
	background-color: #fff;
}

.na-upit-sticker {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	z-index: 2;
	padding: 0.28rem 0.55rem;
	font-size: 0.76rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	color: #fff;
	background: linear-gradient(135deg, #ff4b4b, #e82d2d);
	border-radius: 0.45rem;
	box-shadow: 0 0.2rem 0.45rem rgba(92, 74, 82, 0.25);
	transform: rotate(4deg);
	pointer-events: none;
}

.pr_discount_badge {
	position: absolute;
	top: 0.65rem;
	left: 0.65rem;
	z-index: 2;
	padding: 0.54rem 1.08rem;
	font-size: 1.404rem;
	font-weight: 700;
	letter-spacing: 0.03em;
	color: #fff;
	background: linear-gradient(135deg, #6fd47f 0%, #3cb85a 45%, #2a9d4a 100%);
	border: 1px solid rgba(255, 255, 255, 0.55);
	border-radius: 999px;
	box-shadow:
		0 0.27rem 0.81rem rgba(34, 120, 58, 0.35),
		inset 0 1px 0 rgba(255, 255, 255, 0.45);
	transform: rotate(-4deg);
	pointer-events: none;
}

.kartica--na-upit .pr_slika > img {
	opacity: 0.82;
	filter: saturate(0.88);
}

.pr_slika > img {
	width: 100%;
}

.pr_ime {
	margin: 0.55rem 0 0.35rem;
	word-wrap: normal;
	color: var(--baby-mauve);
	padding: 0 0.15rem;
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.3;
}

.pr_btmRow {
	display: flex;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 0.45rem;
	padding: 0 0.15rem 0.2rem;
}

.pr_cena {
	flex: 1 1 55%;
	min-width: 0;
	background: linear-gradient(135deg, #d9a8a8, #c48989);
	color: #fffaf8;
	border: none;
	border-radius: 0.65rem;
	padding: 0.35rem 0.5rem;
	box-shadow: 0 0.2rem 0.45rem rgba(139, 111, 125, 0.2);
	font-size: 0.95rem;
}

.pr_cena--popust {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 0.1rem;
	background: linear-gradient(135deg, #6fd47f, #3cb85a);
}

.pr_cena-stara {
	font-size: 0.72rem;
	font-weight: 400;
	opacity: 0.85;
	text-decoration: line-through;
	line-height: 1.1;
}

.pr_cena-aktivna {
	font-size: 0.95rem;
	font-weight: 600;
	line-height: 1.15;
}

.uKorpu {
	flex: 1 1 35%;
	min-width: 5.5rem;
	margin: 0;
	padding: 0.45rem 0.35rem;
	border: 1px solid var(--baby-sage);
	border-radius: 0.65rem;
	background: #f4f8f4;
	color: #5a6f5a;
	font: inherit;
	font-size: 0.82rem;
	cursor: pointer;
	transition: background 180ms ease, color 180ms ease;
}

.uKorpu:hover {
	background: var(--baby-sage);
	color: #fff;
}

.pr_slika:hover {
	cursor: pointer;
}

.myAlert {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	position: fixed;
	inset: 0;
	background-attachment: fixed;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0,0,0,0.8);
	color: white;
	margin: 0;
	padding: 4em;
	z-index: 10000;	
}

.pr_opis {
	max-width: min(960px, 100%);
	width: 100%;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	overflow: hidden;
	height: auto;
	justify-content: center;
	align-items: flex-start;
}

.pr_opis input[type="radio"] {
    display: none;
}


.large-image {
	width: min(100%, 420px);
	flex: 1 1 280px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.large-image > img {
	border-radius: 1.5em;
	border: solid medium white;
	max-height: 100%;
	max-width: 100%;
	min-width: 200px;
}

.thumbs {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	width: auto;
	flex: 0 0 auto;
	overflow: hidden;
}


.opis {
	flex: 1 1 260px;
	min-width: 0;
	max-width: 100%;
}


.izlaz > h1 {
	margin: 0px;
	padding: 0px;	
	text-align: center;
	aspect-ratio: 1;
}

.izlaz {
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
	padding: 0.25rem;
	width: 2.5rem;
	height: 2.5rem;
	cursor: pointer;
	z-index: 2;
}

.pr_thumb {
	aspect-ratio: 1;
	width: 60px;
	cursor: pointer;
}


.dummy {
	visibility: hidden;
	height: 0px;
}

footer {
	background-color: grey;
	color: beige;
	display: block;
	padding: 1rem 2rem;
	text-align: center;
}

.foo_tekst {
	max-width: 40rem;
	width: 100%;
	margin: 0 auto;
}

.cart-page {
	padding: 1rem 0 2rem;
}

.cart-page h1,
.cart-page h2 {
	font-size: clamp(1.35rem, 4vw, 1.75rem);
}

.cart-line {
	display: grid;
	grid-template-columns: 1fr 8rem 5rem 8rem auto;
	gap: .75rem;
	align-items: center;
	padding: .75rem 0;
	border-bottom: 1px solid #ddd;
}

.cart-line input {
	width: 100%;
	padding: .25rem;
}

.checkout-summary {
	margin: 1.25rem 0 1rem;
	padding: 1rem 1.1rem;
	background: linear-gradient(135deg, #fffaf6 0%, #f7ecec 100%);
	border: 1px solid rgba(212, 165, 165, 0.35);
	border-radius: 1rem;
}

.cart-total {
	font-size: 1.3rem;
	text-align: right;
}

.checkout-summary .cart-total {
	text-align: left;
}

.delivery-method-fieldset {
	margin: 0 0 1.25rem;
	padding: 1rem 1.1rem;
	border: 1px solid rgba(212, 165, 165, 0.35);
	border-radius: 1rem;
	background: #fffaf6;
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
}

.delivery-method-fieldset legend {
	padding: 0 0.35rem;
	font-weight: 600;
	color: var(--baby-mauve);
}

.delivery-method-option {
	display: grid;
	grid-template-columns: 0.625rem 1fr;
	align-items: center;
	column-gap: 0.45rem;
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
	cursor: pointer;
}

.delivery-method-option input[type="radio"] {
	width: 0.625rem;
	height: 0.625rem;
	min-width: 0.625rem;
	min-height: 0.625rem;
	margin: 0;
	padding: 0;
	flex-shrink: 0;
	align-self: center;
	justify-self: center;
	accent-color: var(--baby-mauve);
	-webkit-appearance: radio;
	appearance: auto;
}

.admin-form .delivery-method-option input[type="radio"] {
	min-height: 0;
	padding: 0;
}

.delivery-method-text {
	display: block;
	align-self: center;
}

.checkout-field--optional::after {
	content: " (opciono za lično preuzimanje)";
	font-size: 0.85rem;
	color: #777;
	font-weight: 400;
}

.pickup-notice-overlay {
	position: fixed;
	inset: 0;
	z-index: 1200;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	background: rgba(92, 74, 82, 0.45);
}

.pickup-notice-overlay[hidden] {
	display: none;
}

.pickup-notice-overlay--visible {
	display: flex;
}

.pickup-notice-dialog {
	width: min(100%, 26rem);
	padding: 1.25rem 1.35rem;
	border-radius: 1rem;
	background: #fffaf6;
	border: 1px solid rgba(212, 165, 165, 0.45);
	box-shadow: 0 1rem 2rem rgba(92, 74, 82, 0.22);
	color: var(--kartica_tekst);
}

.pickup-notice-dialog h3 {
	margin: 0 0 0.65rem;
	color: var(--baby-mauve);
	font-size: 1.15rem;
}

.pickup-notice-dialog p {
	margin: 0 0 0.65rem;
	line-height: 1.45;
}

.pickup-notice-phone {
	font-weight: 600;
}

.pickup-notice-phone a {
	color: var(--baby-mauve);
	text-decoration: none;
}

.pickup-notice-phone a:hover {
	text-decoration: underline;
}

.pickup-notice-btn {
	margin-top: 0.35rem;
	padding: 0.55rem 1rem;
	border: 1px solid var(--baby-sage);
	border-radius: 0.65rem;
	background: #f4f8f4;
	color: #5a6f5a;
	font: inherit;
	cursor: pointer;
}

.cart-total--grand {
	font-size: 1.45rem;
	font-weight: 700;
	margin-top: 0.35rem;
	padding-top: 0.5rem;
	border-top: 1px solid rgba(139, 111, 125, 0.2);
}

.cart-notice {
	position: fixed;
	right: 1.5rem;
	bottom: 1.5rem;
	max-width: min(360px, calc(100vw - 3rem));
	padding: .9rem 1.1rem;
	background: darkblue;
	color: white;
	border-radius: .5rem;
	box-shadow: 0 .4rem 1rem rgba(0,0,0,.35);
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 180ms ease, transform 180ms ease;
	z-index: 12000;
	pointer-events: none;
}

.cart-notice-visible {
	opacity: 1;
	transform: translateY(0);
}

.order-resolve-page {
	max-width: 760px;
}

.order-resolve-notice {
	padding: 1rem 1.25rem;
	margin: 0 0 1.5rem;
	border-radius: 1rem;
	background: linear-gradient(135deg, #fdf0f2, #fffaf8);
	border: 1px solid rgba(212, 165, 165, 0.35);
	color: var(--baby-mauve);
	font-size: 1.1rem;
}

.order-resolve-block {
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	border-radius: 1rem;
	background: #fff;
	border: 1px solid rgba(212, 165, 165, 0.2);
	box-shadow: var(--baby-shadow);
}

.order-resolve-block--unavailable {
	background: #fff9f9;
}

.order-resolve-block h2 {
	margin: 0 0 0.75rem;
	font-size: 1.15rem;
	color: var(--baby-mauve);
}

.order-resolve-list {
	margin: 0;
	padding-left: 1.25rem;
}

.order-resolve-list li {
	margin-bottom: 0.45rem;
}

.order-resolve-tag {
	display: inline-block;
	margin-left: 0.35rem;
	padding: 0.1rem 0.45rem;
	font-size: 0.72rem;
	font-weight: 600;
	border-radius: 0.35rem;
	background: #d9a8a8;
	color: #fff;
}

.order-resolve-actions {
	margin-top: 1rem;
}

.order-resolve-btn {
	display: inline-block;
	margin-right: 0.75rem;
	margin-bottom: 0.5rem;
	padding: 0.55rem 1rem;
	border-radius: 0.65rem;
	font: inherit;
	cursor: pointer;
	border: 1px solid transparent;
}

.order-resolve-btn--primary {
	background: linear-gradient(135deg, #d9a8a8, #c48989);
	color: #fff;
}

.order-resolve-btn--secondary {
	background: #f4f4f4;
	border-color: #ccc;
	color: #444;
}

.page-top-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 0;
}

.page-nav-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	align-items: center;
	margin-top: 1.75rem;
}

.btn-home {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.5rem;
	border-radius: 999px;
	background: linear-gradient(135deg, #9a7a8d, #7d6272);
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.02em;
	border: none;
	box-shadow: 0 0.35rem 1rem rgba(125, 98, 114, 0.28);
	transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-home:hover {
	transform: translateY(-0.12rem);
	box-shadow: 0 0.5rem 1.2rem rgba(125, 98, 114, 0.34);
	background: linear-gradient(135deg, #a88697, #8a6d7d);
}

.btn-home--soft {
	background: linear-gradient(135deg, #f7e8e8, #efe2dc);
	color: var(--baby-mauve) !important;
	box-shadow: 0 0.25rem 0.75rem rgba(139, 111, 125, 0.15);
	border: 1px solid rgba(212, 165, 165, 0.45);
}

.btn-home--soft:hover {
	background: linear-gradient(135deg, #fdf0f2, #f5e8e2);
	color: #6f5560 !important;
}

.btn-home--outline {
	background: #fff;
	color: var(--baby-mauve) !important;
	border: 2px solid var(--baby-rose);
	box-shadow: none;
}

.btn-home--outline:hover {
	background: var(--baby-blush);
}

.admin-form {
	display: grid;
	gap: .8rem;
	max-width: 760px;
	margin: 1rem 0;
}

.admin-form label {
	display: grid;
	gap: .25rem;
}

.admin-form input,
.admin-form textarea,
.admin-form select,
.admin-form button {
	padding: 0.55rem;
	font: inherit;
	min-height: 2.75rem;
}

.admin-form button,
.order-resolve-btn,
#clear_cart {
	cursor: pointer;
}

.row {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	flex-basis: 0;
}

.logo {
	flex-shrink: 0;
}

.logo_img img {
	display: block;
	max-width: 100%;
	height: auto;
}

@media (max-width: 1100px) {
	.katalog {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.5rem;
	}

	.nav_item {
		padding: 0.5rem 0.75rem;
	}
}

@media (max-width: 900px) {
	.header_bottom_size {
		height: auto;
		min-height: auto;
		padding: 0.75rem 0 1rem;
	}

	.row.wrapper.header_bottom_size {
		justify-content: center;
		gap: 0.75rem;
	}

	.nav_bar {
		width: 100%;
		height: auto;
	}

	.nav_bar ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.35rem;
		height: auto;
		padding: 0;
	}

	.nav_item {
		min-height: 2.75rem;
		border-radius: 0.65rem;
	}

	.brzi_linkovi {
		flex-wrap: wrap;
		justify-content: center;
		gap: 0.5rem 1.25rem;
		padding: 0.65rem 0;
	}

	.tel {
		padding-right: 0;
		text-align: center;
		width: 100%;
	}

	.korpa {
		margin-left: 0;
	}

	.myAlert {
		padding: 1rem;
		align-items: flex-start;
		overflow-y: auto;
	}

	.pr_opis {
		padding-top: 2.5rem;
	}

	.thumbs {
		flex-direction: row;
		flex-wrap: wrap;
		width: 100%;
		justify-content: center;
	}
}

@media (max-width: 720px) {
	.wrapper {
		padding: 0 0.85rem;
	}

	.logo_img {
		max-width: 160px;
		max-height: 52px;
	}

	.hero-slider,
	.slider {
		height: clamp(9rem, 42vw, 14rem);
	}

	.katalog {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
		padding: 1rem 0 2rem;
	}

	.catalog-sort {
		align-items: stretch;
		justify-content: stretch;
		flex-direction: column;
		gap: 0.35rem;
	}

	.catalog-sort select {
		width: 100%;
		min-width: 0;
	}

	.katalog-header--with-sort {
		grid-template-columns: 1fr;
		gap: 0.65rem;
	}

	.katalog-header--with-sort .kat_ime,
	.katalog-header--with-sort .catalog-sort {
		grid-column: 1;
		justify-self: stretch;
	}

	.katalog-header {
		padding: 0.6rem 1rem;
		border-radius: 1.35rem;
		margin-bottom: 0.6rem;
	}

	.kat_ime {
		font-size: clamp(1.25rem, 5vw, 1.6rem);
		letter-spacing: 0.03em;
	}

	.kartica {
		min-height: auto;
		max-width: none;
		margin: 0;
	}

	.pr_ime {
		font-size: 0.98rem;
	}

	.uKorpu {
		font-size: 0.78rem;
	}

	.cart-line {
		grid-template-columns: 1fr;
		gap: 0.5rem;
		padding: 1rem 0;
	}

	.cart-line input {
		max-width: 8rem;
	}

	.cart-total {
		text-align: left;
	}

	.cart-notice {
		left: 0.85rem;
		right: 0.85rem;
		bottom: 0.85rem;
		max-width: none;
	}

	.back-to-top {
		right: 0.85rem;
		bottom: 0.85rem;
		min-width: 3.8rem;
		padding: 0.55rem 0.75rem;
		font-size: 0.8rem;
	}

	.page-top-bar {
		flex-wrap: wrap;
		padding: 0.65rem 0;
	}

	.page-nav-actions {
		flex-direction: column;
		align-items: stretch;
	}

	.btn-home,
	.btn-home--soft,
	.btn-home--outline,
	.order-resolve-btn {
		width: 100%;
		text-align: center;
		margin-right: 0;
	}

	.order-resolve-actions form {
		width: 100%;
	}

	.admin-form {
		max-width: none;
	}

	#clear_cart,
	.admin-form button[type="submit"] {
		width: 100%;
	}

	input,
	select,
	textarea,
	button {
		font-size: 16px;
	}
}

@media (max-width: 480px) {
	.katalog {
		grid-template-columns: 1fr;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
	}

	.nav_bar ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		width: 100%;
	}

	.nav_item {
		justify-content: center;
		text-align: center;
		font-size: 0.9rem;
		padding: 0.55rem 0.35rem;
	}

	.mreze > a > img {
		padding: 0 0.5rem;
	}

	.large-image > img {
		min-width: 0;
	}

	.pr_thumb {
		width: 52px;
	}

	.na-upit-sticker {
		font-size: 0.62rem;
		top: 0.45rem;
		right: 0.45rem;
	}

	.pr_discount_badge {
		font-size: 1.116rem;
		top: 0.45rem;
		left: 0.45rem;
		padding: 0.396rem 0.81rem;
	}
}
