﻿/* =========================================
   1. DEFINICIJA BARV IN SPREMENLJIVK
   ========================================= */
:root {
	--vintage-bg: #e8dab2;
	--filter-bg: #f5eedc;
	--depo-olive: #8b8e52;
	--vintage-brown: #5d4d37;
	--vintage-border: #c5b68d;
	--white-paper: rgba(255, 255, 255, 0.7);
	--radius: 18px;
	--beige-hover: #dccda1;
	--fb-blue: #0084FF;
}
/* =========================================
   2. OSNOVE IN TIPIOGRAFIJA
   ========================================= */
html {
	scroll-behavior: smooth;
}
body {
	font-family: 'Courier New', Courier, monospace;
	margin: 0;
	background-color: var(--vintage-bg);
	color: var(--vintage-brown);
	line-height: 1.4;
}
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 20px;
}
.main-title {
	text-align: center;
	padding: 30px 0 10px 0;
	position: relative;
}
.main-title h1 {
	font-family: 'Courier New', Courier, monospace;
	font-weight: bold;
	font-size: clamp(1.5rem, 5vw, 2.5rem);
	color: var(--vintage-brown);
	text-transform: uppercase;
	letter-spacing: 2px;
	margin: 0;
}
.top-banner {
	width: 100%;
	padding-top: 20px;
}
.top-banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
.banner-wrapper {
    position: relative; 
    width: 100%;
}

.depo-link {
    position: absolute;
    top: 0%;      
    right: 13%;      
    width: 87%;    
    height: 100%;   
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 0, 0, 0);
}

.kpv-link {
    position: absolute;
    top: 0%;      
    right: 0%;      
    width: 12%;    
    height: 100%;   
    z-index: 10;
    cursor: pointer;
    background: rgba(255, 0, 0, 0); 
}

.top-banner img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 4px;
}
/* ČRTE IN DIVIDERJI */
.green-divider {
	height: 4px;
	background-color: var(--depo-olive);
	width: 100%;
	margin: 10px 0;
}
.filter-divider {
	height: 4px;
	background-color: var(--depo-olive);
	width: 100%;
	margin: 0 0 20px 0;
}
.thick-divider {
	height: 10px;
	background-color: var(--depo-olive);
	width: 100%;
	margin: 40px 0 0 0;
}

/* =========================================
   3. FILTRI IN ISKANJE
   ========================================= */
.filter-section {
	margin: 20px 0 10px 0;
	padding: 25px;
	background: var(--filter-bg);
	border: 1px solid var(--vintage-border);
	border-radius: 12px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	align-items: center;
	position: sticky;
	top: 10px;
	z-index: 500;
	box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.search-input {
	padding: 10px;
	border: 1px solid var(--vintage-border);
	border-radius: 20px;
	width: 220px;
	font-family: inherit;
	outline: none;
}
select {
    padding: 10px 35px 10px 15px !important;
    font-family: inherit;
    border: 1px solid var(--vintage-border);
    border-radius: 6px;
    background-color: white;
    cursor: pointer;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235d4d37' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important; 
    background-size: 14px !important;
}
#galleryStatus {
	margin: 15px 0;
	font-weight: bold;
	color: var(--depo-olive);
	text-align: center;
}
.btn-reset {
	background-color: transparent;
	color: var(--vintage-brown);
	border: 1px solid var(--vintage-brown);
	padding: 8px 15px;
	border-radius: 20px;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.8rem;
	transition: 0.3s;
}
.btn-reset:hover {
	background-color: var(--depo-olive);
	color: white;
}
/* GUMBI KI SO NA PC SKRITI */
.mobile-filter-btn {
	display: none;
}
.close-filter-btn {
	display: none;
}
.btn-show-results {
	display: none;
}
/* =========================================
   4. KARTICA IZDELKA (GALLERY)
   ========================================= */
.gallery {
	padding: 20px 0;
	min-height: 400px;
}
.gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 30px;
	align-items: stretch;
}
.gallery-item {
	position: relative;
	background: var(--white-paper);
	border: 1px solid var(--vintage-border);
	padding: 15px;
	border-radius: var(--radius);
	box-shadow: 4px 4px 0px var(--vintage-border);
	display: flex;
	flex-direction: column;
	height: 100%;
	transition: 0.3s;
	overflow: hidden;
	cursor: pointer;
}
.gallery-item:hover {
	transform: translateY(-5px);
	box-shadow: 6px 6px 0px var(--depo-olive);
}
.gallery-item::before {
	content: "";
	position: absolute;
	top: 12px;
	left: 12px;
	right: 12px;
	bottom: 12px;
	border: 1px solid var(--vintage-border);
	border-radius: calc(var(--radius) - 6px);
	pointer-events: none;
	z-index: 10;
}
.main-image {
	width: 100%;
	height: 220px;
	object-fit: cover;
	border-radius: 8px;
	cursor: pointer;
	border: 1px solid var(--vintage-border);
	position: relative;
	z-index: 5;
	transition: 0.3s;
}
.thumbs-row {
	display: flex;
	gap: 8px;
	margin: 12px 0;
	overflow-x: auto;
	padding-bottom: 5px;
	position: relative;
	z-index: 40;
	min-height: 50px;
}
.thumb {
	width: 55px;
	height: 45px;
	flex-shrink: 0;
	object-fit: cover;
	cursor: pointer;
	border-radius: 4px;
	border: 1px solid var(--vintage-border);
	opacity: 0.6;
}
.thumb.active {
	opacity: 1;
	border-color: var(--depo-olive);
	border-width: 2px;
}
/* VSEBINA KARTICE */
.product-info {
	position: relative;
	z-index: 40;
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	padding: 0 5px;
	box-sizing: border-box;
	justify-content: space-between;
}
.product-info h3 {
	color: var(--depo-olive);
	margin: 5px 0;
	font-size: 1.2rem;
}
.price {
	font-size: 1.6rem;
	font-weight: 900;
	margin: 5px 0;
	color: var(--vintage-brown);
	border-bottom: 1px dashed var(--vintage-border);
	padding-bottom: 3px;
	width: fit-content;
}
.product-code-row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 5px;
	font-size: 0.85rem;
	width: 100%;
}
.product-desc {
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	margin-bottom: 2px;
	font-size: 0.95rem;
	line-height: 1.4;
	min-height: 4.2em;
	max-height: 4.2em;
}
/* KONTAKTNI GUMBI NA KARTICAH */
.contact-buttons-row {
	display: flex;
	gap: 8px;
	margin-top: 0px;
	position: relative;
	z-index: 50;
	margin-bottom: 0px;
	margin-left: -5px;
	margin-right: -5px;
}
.btn-contact-main {
	flex-grow: 1;
	background-color: var(--depo-olive);
	color: white;
	border: none;
	padding: 12px;
	cursor: pointer;
	font-weight: bold;
	border-radius: 8px;
	transition: 0.3s;
	font-family: inherit;
	font-size: 0.9rem;
}
.btn-contact-main:hover {
	background-color: var(--fb-blue);
}
.btn-contact-small {
	background-color: white;
	color: var(--depo-olive);
	border: 2px solid var(--depo-olive);
	padding: 10px;
	width: 45px;
	cursor: pointer;
	border-radius: 8px;
	transition: 0.3s;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.2rem;
}
.btn-contact-small:hover {
	background-color: #f0f0f0;
	border-color: var(--vintage-brown);
	color: var(--vintage-brown);
}
.reserved-style {
	background-color: var(--vintage-border) !important;
	color: var(--vintage-brown) !important;
	border-color: var(--vintage-brown) !important;
	cursor: pointer;
}
/* =========================================
   5. ZNAČKE (NOVO, REZERVIRANO, PRODANO)
   ========================================= */
.badge-new {
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 80px;
	overflow: hidden;
	z-index: 100;
	pointer-events: none;
}
.badge-new::after {
	content: "Novo";
	position: absolute;
	top: 15px;
	left: -25px;
	background: var(--depo-olive);
	color: white;
	width: 120px;
	text-align: center;
	transform: rotate(-45deg);
	font-size: 0.85rem;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 2px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.2);
	line-height: 24px;
}
.badge-reserved {
	position: absolute;
	top: 110px;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-10deg);
	background: #C5B68D;
	color: #5D4D37;
	padding: 10px 25px;
	font-weight: bold;
	z-index: 60;
	border: 2px solid white;
	pointer-events: auto;
	text-transform: uppercase;
	box-shadow: 0 4px 12px rgba(0,0,0,0.4);
	font-size: 1rem;
	border-radius: 12px;
	letter-spacing: 1px;
	transition: all 0.3s ease;
}
.badge-reserved:hover {
	background: var(--depo-olive);
	transform: translate(-50%, -50%) rotate(0deg) scale(1.1);
	cursor: help;
}
.badge-sold {
	cursor: default;
	pointer-events: none;
	color: white !important;
}
.badge-sold:hover {
	background: #a83232;
	transform: translate(-50%, -50%) rotate(-10deg);
	animation: none;
	cursor: default;
}
.img-reserved {
	filter: grayscale(0.8) brightness(0.8);
	opacity: 0.9;
}
/* TOOLTIP REZERVIRANO */
.badge-reserved[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	top: 125%;
	left: 50%;
	transform: translateX(-50%) scale(0);
	background: #333;
	color: #fff;
	border: 2px solid var(--depo-olive);
	padding: 10px 15px;
	border-radius: 10px;
	font-size: 0.8rem;
	width: 180px;
	white-space: normal;
	text-align: center;
	line-height: 1.4;
	z-index: 200;
	opacity: 0;
	transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	pointer-events: none;
	box-shadow: 0 4px 15px rgba(0,0,0,0.4);
	text-transform: none;
	letter-spacing: 0.5px;
}
.badge-reserved[data-tooltip]::before {
	content: "";
	position: absolute;
	top: 110%;
	left: 50%;
	transform: translateX(-50%) scale(0);
	border-width: 8px;
	border-style: solid;
	border-color: transparent transparent var(--depo-olive) transparent;
	z-index: 200;
	opacity: 0;
	transition: all 0.2s ease;
}
.badge-reserved:hover::after, .badge-reserved:hover::before {
	opacity: 1;
	transform: translateX(-50%) scale(1);
}
/* =========================================
   6. FOOTER IN KONTAKTNI PODATKI
   ========================================= */
.depo-footer {
	padding: 50px 0;
	text-align: center;
}
.footer-flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-bottom: 30px;
	gap: 30px;
	text-align: left;
}
.footer-box h4 {
	margin-top: 0;
	border-bottom: 1px solid var(--depo-olive);
	padding-bottom: 5px;
	text-transform: uppercase;
	font-size: 0.9rem;
	color: var(--depo-olive);
	margin-bottom: 15px;
}
.footer-box .icon-green {
	color: #8b8e52 !important;
	display: inline-block !important;
	width: 30px;
	text-align: center;
	margin-right: 10px;
	font-size: 1.1rem;
	vertical-align: middle;
}
.contact-link {
	display: block !important;
	margin: 10px 0 !important;
	color: inherit;
	text-decoration: none;
}
.footer-box a[href="posiljanje.html"] {
	display: inline-block !important;
	margin-left: -7px !important;
	padding: 0 !important;
	text-decoration: none;
	color: inherit;
	vertical-align: middle;
}
.footer-box {
	line-height: 1.9;
}
.btn-nav {
	display: inline-block;
	background: white;
	color: var(--depo-olive);
	padding: 10px 25px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: bold;
	margin-bottom: 15px;
	border: 2px solid var(--depo-olive);
	transition: 0.3s;
}
.map-container {
	width: 100%;
	height: 350px;
	border-radius: 12px;
	overflow: hidden;
	border: 3px solid white;
	margin-bottom: 30px;
}
/* SEKCIJA OBIŠČITE NAS */
.visit-us-section {
	text-align: center;
	padding: 60px 20px;
	background: #F8F4E8;
	margin-top: 40px;
	border-radius: 15px;
}
.visit-us-section h2 {
	color: var(--depo-olive);
	margin-bottom: 15px;
}
.visit-text {
	max-width: 600px;
	margin: 0 auto 25px auto;
	font-size: 1.1rem;
	line-height: 1.6;
	color: #555;
}
.info-badges-row {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-wrap: wrap;
	margin-bottom: 30px;
	margin-top: 25px;
}
.info-badge {
	background: white;
	padding: 10px 20px;
	border-radius: 30px;
	border: 1px solid var(--depo-olive);
	color: var(--depo-olive);
	font-weight: bold;
}
.visit-divider {
	border: 0;
	border-top: 1px solid #ddd;
	max-width: 200px;
	margin: 30px auto;
}
/* DELJENJE */
.share-title {
	font-weight: bold;
	color: var(--depo-olive);
	margin-bottom: 15px;
	text-transform: uppercase;
	font-size: 0.85rem;
	letter-spacing: 1px;
}
.share-buttons-row {
	display: flex;
	justify-content: center;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 15px;
}
.share-btn {
	color: white;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	font-size: 1.1rem;
	transition: transform 0.2s;
}
.share-btn:hover {
	transform: scale(1.1);
}
.share-btn.fb {
	background: #1877F2;
}
.share-btn.msg {
	background: #0084FF;
}
.share-btn.viber {
	background: #7360f2;
}
.share-btn.wa {
	background: #25D366;
}
/* FOOTER DODATKI */
.zw-logo-footer {
	max-width: 130px;
	height: auto;
	mix-blend-mode: multiply;
	opacity: 0.8;
}
.footer-bottom {
	text-align: center;
	margin-top: 20px;
}
.footer-credits {
	text-align: center;
	opacity: 0.7;
	margin-top: 20px;
}
.footer-credits a {
	color: inherit;
	text-decoration: none;
}
.footer-credits a:hover {
	text-decoration: underline;
}
/* =========================================
   7. SOCIALNE IKONE V GLAVI
   ========================================= */
.main-title .social-icons {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	gap: 14px;
}
.social-icons a {
	color: #666;
	font-size: 1.2rem;
	text-decoration: none;
	transition: color 0.2s ease, transform 0.2s ease;
}
.social-icons a:hover {
	transform: translateY(-1px);
}
.social-icons a:hover .fa-facebook-f {
	color: #1877f2;
}
.social-icons a:hover .fa-instagram {
	background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.contact-shortcut {
	color: var(--depo-olive) !important;
	font-size: 1.2rem;
	margin-right: 5px;
}
.contact-shortcut:hover {
	color: var(--vintage-brown) !important;
}
/* =========================================
    8. DOSTOPNOST (ACCESSIBILITY)
   ========================================= */
.acc-panel {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    background: white;
    border: 2px solid var(--depo-olive);
    border-radius: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    width: 50px;
    height: 50px;
    overflow: hidden;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.acc-panel:hover, 
.acc-panel.active, 
.acc-panel.acc-open-mobile {
    width: max-content !important;
    padding-right: 8px !important;
}

@media (max-width: 400px) {
    .acc-panel:hover, 
    .acc-panel.active, 
    .acc-panel.acc-open-mobile {
        max-width: calc(100% - 40px) !important;
    }
}

.acc-trigger {
    width: 50px;
    height: 50px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.3rem;
    flex-shrink: 0;
    line-height: 1 !important;
    padding: 0 !important;
    color: var(--depo-olive);
}

.acc-trigger i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    pointer-events: none;
}

.acc-trigger * {
    pointer-events: none;
}

.acc-options {
    display: flex;
    gap: 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-left: 8px;
    pointer-events: none;
}

.acc-panel:hover .acc-options, 
.acc-panel.active .acc-options, 
.acc-panel.acc-open-mobile .acc-options {
    opacity: 1;
    pointer-events: auto;
}

.acc-panel button {
    border-radius: 50%;
    width: 38px;
    height: 38px;
    border: 1px solid #ddd;
    cursor: pointer;
    background: #fff;
    font-weight: bold;
    font-family: sans-serif;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
    flex-shrink: 0;
    opacity: 90%;
}

.acc-panel button:hover {
    background: var(--depo-olive);
    color: white;
    transform: scale(1.1);
}

/* KONTRASTNI NAČINI */
body.high-contrast {
    background-color: #000 !important;
    color: #ffff00 !important;
}

body.high-contrast .container, 
body.high-contrast .gallery-item, 
body.high-contrast .filter-section, 
body.high-contrast footer {
    background-color: #000 !important;
    border: 2px solid #ffff00 !important;
    color: #ffff00 !important;
}

body.high-contrast h1, 
body.high-contrast h3, 
body.high-contrast p, 
body.high-contrast .price, 
body.high-contrast .product-desc {
    color: #ffff00 !important;
}

body.high-contrast button, 
body.high-contrast .btn-contact-main, 
body.high-contrast .btn-contact-small {
    background-color: #ffff00 !important;
    color: #000 !important;
    border: 2px solid #fff !important;
}

body.high-contrast .acc-panel {
    background: #000 !important;
    border-color: #ffff00 !important;
}

body.high-contrast .acc-panel button {
    background: #000 !important;
    color: #ffff00 !important;
    border: 1px solid #ffff00 !important;
}

body.high-contrast .acc-trigger {
    color: #ffff00 !important;
}

/* Črno-beli način */
body.black-white {
    background-color: #ffffff !important;
    color: #000000 !important;
}

body.black-white .container, 
body.black-white .gallery-item, 
body.black-white .filter-section, 
body.black-white footer {
    background-color: #ffffff !important;
    border: 2px solid #000000 !important;
    color: #000000 !important;
    box-shadow: none !important;
}

body.black-white h1, 
body.black-white h3, 
body.black-white p, 
body.black-white .price, 
body.black-white .product-desc,
body.black-white .product-info span {
    color: #000000 !important;
}

body.black-white button, 
body.black-white .btn-contact-main, 
body.black-white .btn-contact-small {
    background-color: #000000 !important;
    color: #ffffff !important;
    border: 2px solid #000000 !important;
}

body.black-white .acc-panel {
    background: #ffffff !important;
    border-color: #000000 !important;
}

body.black-white .acc-panel button {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #000000 !important;
}

body.black-white .acc-trigger {
    color: #000000 !important;
}

body.black-white img {
    filter: grayscale(100%) !important;
}

/* =========================================
   9. LIGHTBOX, MODALI IN OSTALO
   ========================================= */
#lightbox {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.95);
	z-index: 10000;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
#lightbox-img {
	max-width: 85%;
	max-height: 75vh;
	border: 4px solid white;
	border-radius: 8px;
	box-shadow: 0 0 20px rgba(0,0,0,0.5);
}
#lightbox-caption {
	color: white !important;
	margin-top: 20px;
	text-align: center;
	font-family: inherit;
}
.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255,255,255,0.1);
	color: white;
	border: none;
	font-size: 2rem;   
	padding: 10px 18px;
	cursor: pointer;
	border-radius: 8px;
	transition: 0.3s;
	z-index: 10001;
}
.nav-btn-left {
	left: 20px;
}
.nav-btn-right {
	right: 20px;
}
.close-lb {
	position: absolute;
	top: 20px;
	right: 30px;
	color: white;
	font-size: 3.5rem;
	cursor: pointer;
	z-index: 10002;
}
.top-btn {
	position: fixed;
	bottom: 20px;
	right: 20px;
	background: var(--depo-olive);
	color: white;
	border: none;
	border-radius: 50%;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 1000;
	box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: none; 
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 0;
    opacity: 90%;
}

/* LOKACIJSKI MODAL */
.modal-overlay {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.7);
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(3px);
}
.modal-content {
	background: white;
	padding: 30px;
	border-radius: 15px;
	max-width: 400px;
	width: 90%;
	position: relative;
	box-shadow: 0 20px 40px rgba(0,0,0,0.3);
	text-align: center;
}
.modal-close {
	position: absolute;
	right: 20px;
	top: 10px;
	cursor: pointer;
	font-size: 28px;
	color: #999;
}
.modal-icon {
	font-size: 3rem;
	color: var(--depo-olive);
	margin-bottom: 15px;
}
.modal-title {
	margin-top: 0;
	color: #333;
	font-size: 1.8rem;
}
.modal-text {
	white-space: pre-line;
	line-height: 1.6;
	color: #555;
	font-size: 1.1rem;
	margin-bottom: 25px;
}
.modal-btn {
	display: inline-block;
	background: var(--depo-olive);
	color: white;
	padding: 12px 25px;
	border-radius: 30px;
	text-decoration: none;
	font-weight: bold;
	transition: transform 0.2s;
}
.modal-btn:hover {
	transform: scale(1.05);
}
/* PIŠKOTKI */
.cookie-banner {
	position: fixed;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--filter-bg);
	border: 1px solid var(--vintage-border);
	padding: 15px 25px;
	border-radius: 50px;
	display: none;
	align-items: center;
	gap: 20px;
	z-index: 11000;
	box-shadow: 0 4px 15px rgba(0,0,0,0.2);
	width: max-content;
	max-width: 90%;
}
.cookie-banner p {
	margin: 0;
	font-size: 0.8rem;
	color: var(--vintage-brown);
}
.cookie-banner a {
	color: var(--depo-olive);
	text-decoration: underline;
}
.cookie-btns {
	display: flex;
	gap: 10px;
}
.btn-cookie-accept, .btn-cookie-reject {
	padding: 6px 15px;
	border-radius: 20px;
	cursor: pointer;
	font-family: inherit;
	font-size: 0.75rem;
	font-weight: bold;
	transition: 0.3s;
}
.btn-cookie-accept {
	background: var(--depo-olive);
	color: white;
	border: none;
}
.btn-cookie-reject {
	background: transparent;
	color: var(--vintage-brown);
	border: 1px solid var(--vintage-brown);
}
.btn-cookie-accept:hover {
	opacity: 0.8;
}
.btn-cookie-reject:hover {
	background: #eee;
}
/* LOADING SPINNER */
.spinner-container {
	grid-column: 1 / -1;
	text-align: center;
	padding: 50px;
}
.spinner-container p {
	font-size: 1.2rem;
	color: var(--depo-olive);
}

/* =========================================
   POPRAVEK ZA RAZMIK IKON
   ========================================= */
.footer-box i, 
.info-badge i, 
.btn-nav i, 
.modal-btn i,
.info-step h4 i {
    margin-right: 10px !important;
}

/* =========================================
   TOAST OBVESTILO (nadomestilo za alert)
   ========================================= */
#depo-toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: var(--vintage-brown);
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.9rem;
    z-index: 99999;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    max-width: 90%;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
#depo-toast.toast-pokazi {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
#depo-toast.toast-skrij {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

/* =========================================
   10. MOBILNE PRILAGODITVE (MEDIA QUERIES)
   ========================================= */
@media (max-width: 600px) {
    /* GLAVA IN SOCIALNE IKONE */
    .social-icons {
        gap: 10px;
    }
    .social-icons a {
        font-size: 1.1rem;
    }
    .main-title .social-icons {
        position: static;
        justify-content: center;
        margin-top: 15px;
    }

    /* GUMBI V LIGHTBOXU (Puščice in X) */
    .nav-btn {
        font-size: 1.8rem !important; 
        padding: 8px 12px !important;  
        left: 5px !important;          
    }
    .nav-btn-right {
        left: auto !important;
        right: 5px !important;        
    }
    .close-lb {
        top: 15px !important;
        right: 15px !important;
        font-size: 2.5rem !important; 
    }

    /* GUMB FILTRI NA MOBILNIKU */
    .mobile-filter-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: sticky;
        top: 10px;
        margin: 15px auto 25px auto;
        padding: 12px 25px;
        width: fit-content;
        min-width: 200px;
        background: rgba(245, 238, 220, 0.9);
        backdrop-filter: blur(5px);
        border: 1px solid var(--vintage-border);
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        color: var(--depo-olive);
        font-family: inherit;
        font-weight: bold;
        text-transform: uppercase;
        cursor: pointer;
        z-index: 2001;
        transition: 0.3s ease;
    }
    .mobile-filter-btn:hover, .mobile-filter-btn:active {
        background: var(--filter-bg);
        transform: scale(1.02);
    }

    /* OKNO S FILTRI */
    #filterPanel {
        position: fixed !important;
        top: 10px !important;
        left: 5% !important;
        width: 90% !important;
        max-width: 400px !important;
        transform: translateY(-120%) !important;
        height: auto;
        max-height: 85vh;
        background: #f8f5e6;
        z-index: 3000;
        flex-direction: column;
        padding: 35px 15px 15px 15px;
        border-radius: 15px;
        border: 2px solid var(--depo-olive);
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        display: flex !important;
        overflow-y: auto;
        box-sizing: border-box;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) !important;
    }

    #filterPanel.active {
        transform: translateY(0) !important;
    }

    .close-filter-btn {
        display: block !important;
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: var(--depo-olive);
        cursor: pointer;
        line-height: 1;
    }

    /* ELEMENTI ZNOTRAJ FILTROV */
    .filter-section .search-input, 
    .filter-section select {
        width: 100% !important;
        box-sizing: border-box !important;
        margin: 0 0 6px 0 !important;
        height: 40px !important;
        font-size: 0.95rem !important;
        padding: 8px 35px 8px 12px !important;
        background-color: white;
    }
    
    .filter-section .btn-reset {
        width: auto !important;
        font-size: 0.8rem !important;
        padding: 6px 12px !important;
        margin: 8px auto 0 auto !important;
    }

    /* GUMB ZA PRIKAZ REZULTATOV */
    .btn-show-results {
        display: block !important;
        width: 100%;
        padding: 10px !important;
        background-color: var(--depo-olive);
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: bold;
        font-size: 0.95rem !important;
        margin-top: 5px;
        text-transform: uppercase;
        cursor: pointer;
    }

    /* DOSTOPNOST NA MOBILNIKU */
    .acc-panel {
        width: 50px !important;
        height: 50px !important;
    }
    .acc-trigger {
        width: 50px !important;
        height: 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.3rem !important;
        padding: 0 !important;
        line-height: 1 !important;
        color: var(--depo-olive) !important;
    }

    /* KARTICE IN KONTAKTI */
    .contact-buttons-row {
        gap: 10px;
        margin-bottom: 5px;
    }
    .btn-contact-main {
        padding: 15px 10px;
        font-size: 1rem;
    }
    .btn-contact-small {
        width: 55px;
        height: 50px;
    }

    /* PIŠKOTKI */
    .cookie-banner {
        flex-direction: column;
        border-radius: 15px;
        bottom: 10px;
        text-align: center;
    }

    /* DELJENJE */
    .share-buttons-row {
        gap: 18px;
        margin-top: 20px;
    }
    .share-btn {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem;
        box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    }

    /* MOBILNA KONTAKTNA VRSTICA */
    .mobile-contact-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: var(--depo-olive);
        display: flex;
        justify-content: space-around;
        padding: 10px 0;
        z-index: 2000;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    }
    .mobile-contact-bar a {
        color: white;
        text-decoration: none;
        font-size: 1.2rem;
        text-align: center;
        flex: 1;
    }
    .mobile-contact-bar span {
        display: block;
        font-size: 0.7rem;
        margin-top: 3px;
        font-family: sans-serif;
    }
    body {
        padding-bottom: 80px !important;
    }

    /* TOAST NA MOBILNIKU — višje, da ne prekriva gumbov */
    #depo-toast {
        bottom: 100px;
        font-size: 0.85rem;
        padding: 12px 18px;
    }
}