/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Plus+Jakarta+Sans:wght@400;600&display=swap');

/* EED Sync — Front-end stilovi za [eed-search-cat] i [eed-cat-restrict] shortcode */

.eed-sync-cat-restrict {
	margin: 0 0 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.eed-sync-cr-label {
	font-weight: 600;
	white-space: nowrap;
}

.eed-sync-cr-select {
	flex: 1 1 200px;
	min-width: 180px;
}

.eed-sync-search-cat-wrap {
	margin: 1em 0 1.5em;
}

.eed-sync-search-cat-form .input-website {
	display: none !important;
}

.eed-sync-sc-row {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: stretch;
}

.eed-sync-sc-cat-select {
	flex: 0 0 auto;
	min-width: 200px;
	max-width: 280px;
	padding: 10px 12px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	background: #fff;
	cursor: pointer;
	height: 46px;
}

.eed-sync-sc-input {
	flex: 1 1 200px;
	padding: 10px 14px;
	font-size: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 46px;
	box-sizing: border-box;
}

.eed-sync-sc-input:focus,
.eed-sync-sc-cat-select:focus {
	outline: none;
	border-color: #2271b1;
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.2);
}

.eed-sync-sc-btn {
	flex: 0 0 auto;
	padding: 10px 22px;
	font-size: 15px;
	font-weight: 600;
	background: #c8102e;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	height: 46px;
	transition: background 0.15s;
}

.eed-sync-sc-btn:hover {
	background: #a00d24;
}

@media (max-width: 600px) {
	.eed-sync-sc-row {
		flex-direction: column;
	}
	.eed-sync-sc-cat-select,
	.eed-sync-sc-input,
	.eed-sync-sc-btn {
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}
}

/* ==============================
   [eed-multi-search] grid
============================== */

.eed-ms-status {
	margin: 10px 0;
	color: #666;
	font-style: italic;
}

.eed-ms-empty {
	margin: 16px 0;
	color: #555;
}

.eed-ms-more {
	display: block;
	margin: 24px auto 8px;
	padding: 12px 32px;
}

.eed-ms-grid {
	display: grid !important;
	grid-template-columns: repeat(3, 1fr) !important;
	gap: 16px !important;
	margin: 20px auto !important;
	max-width: 1200px;
	padding: 0 20px;
}

@media (max-width: 900px) {
	.eed-ms-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
	.eed-ms-grid { grid-template-columns: repeat(1, 1fr) !important; }
}

.eed-ms-card {
	border: 1px solid #F4645B7A;
	border-radius: 6px;
	overflow: hidden;
	background: #fff;
	transition: box-shadow 0.15s;
	position: relative;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.eed-ms-card:hover {
	box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}

.eed-ms-card-overlay {
	display: none;
	position: absolute;
	inset: 0;
	background: rgba(255,255,255,0.85);
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	color: #555;
	z-index: 2;
}

.eed-ms-card.eed-ms-loading .eed-ms-card-overlay {
	display: flex;
}

.eed-ms-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.eed-ms-img-wrap {
	background: #f9f9f9;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 200px;
	overflow: hidden;
}

.eed-ms-img-wrap img {
	max-height: 130px;
	max-width: 100%;
	object-fit: contain;
}

.eed-ms-info {
	padding: 12px 14px;
	flex: 1;
	display: flex;
	flex-direction: column;
	text-align: center;
}

.eed-ms-naziv {
	font-family: 'Playfair Display', serif;
	font-size: 24px;
	font-weight: 600;
	line-height: 28px;
	letter-spacing: -0.02em;
	margin-bottom: 4px;
	color: #000;
	padding-top: 20px;
}

.eed-ms-meta {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	line-height: 22px;
	color: #666;
	text-align: center;
	margin-bottom: 6px;
}

.eed-ms-preis {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 155%;
	text-align: center;
	color: #000;
	margin-bottom: 4px;
}

.eed-ms-dostupan {
	font-size: 11px;
	color: #2e7d32;
}

.eed-ms-nedostupan {
	font-size: 11px;
	color: #999;
}

/* Specifikacija */
.eed-ms-spec {
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #666;
	text-align: center;
	margin-bottom: 6px;
	line-height: 1.4;
}

/* Dugmići */
.eed-ms-btns {
	display: flex;
	gap: 8px;
	margin-top: auto;
	padding-top: 20px;
	padding-bottom: 30px;
}

.eed-ms-btn-dodaj,
.eed-ms-btn-saznaj {
	flex: 1;
	font-family: 'Plus Jakarta Sans', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 155%;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: 0.15s;
	display: block;
	padding: 10px;
	border-radius: 4px;
}

.eed-ms-btn-dodaj {
	border: 2px solid #4D100E;
	background: transparent;
	color: #4D100E;
}

.eed-ms-btn-dodaj:hover {
	background: #4D100E;
	color: #fff;
}

.eed-ms-btn-saznaj {
	background: transparent;
	border: none;
	color: #000;
	padding: 10px 8px;
}

.eed-ms-btn-saznaj:hover {
	text-decoration: underline;
}
