/* Štefan Jančár – E‑shop / Inzeráty */

/* ----- Mriežka kariet ----- */
.sj-eshop-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 24px;
	margin: 26px 0;
}

.sj-eshop-card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #E4EAF1;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 26px -16px rgba(15, 42, 67, .35);
	transition: transform .22s ease, box-shadow .22s ease;
}
.sj-eshop-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 26px 50px -22px rgba(15, 42, 67, .42);
}

.sj-eshop-thumb {
	position: relative;
	display: block;
	line-height: 0;
}
.sj-eshop-thumb img {
	width: 100%;
	height: 210px;
	object-fit: cover;
	display: block;
}
.sj-eshop-badge {
	position: absolute;
	top: 12px; left: 12px;
	background: #0F2A43;
	color: #fff;
	font-size: .8rem;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 999px;
	letter-spacing: .02em;
}

.sj-eshop-body {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 16px 18px 20px;
	flex: 1;
}
.sj-eshop-title {
	margin: 0;
	font-size: 1.12rem;
	line-height: 1.25;
}
.sj-eshop-title a { color: #0F2A43; text-decoration: none; }
.sj-eshop-title a:hover { color: #FF6B2C; }

.sj-eshop-price {
	font-weight: 800;
	font-size: 1.3rem;
	color: #0F2A43;
}
.sj-eshop-ship {
	margin-top: -4px;
	color: #5B6B7B;
	font-size: .9rem;
}
.sj-eshop-excerpt {
	color: #42505E;
	font-size: .92rem;
	flex: 1;
	margin: 4px 0 0;
}

/* ----- Tlačidlá ----- */
.sj-eshop-btn {
	align-self: flex-start;
	display: inline-block;
	margin-top: 8px;
	background: linear-gradient(135deg, #FF6B2C 0%, #FF8A4C 100%);
	color: #fff !important;
	font-weight: 700;
	text-decoration: none;
	border: none;
	cursor: pointer;
	padding: 11px 24px;
	border-radius: 999px;
	box-shadow: 0 10px 22px -10px rgba(255, 107, 44, .6);
	transition: transform .18s ease, box-shadow .18s ease;
}
.sj-eshop-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 16px 30px -10px rgba(255, 107, 44, .75);
	color: #fff !important;
}

/* ----- Detail položky ----- */
.sj-eshop-single-info {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 20px;
	background: #F4F7FB;
	border: 1px solid #E4EAF1;
	border-radius: 14px;
	padding: 16px 20px;
	margin-bottom: 22px;
}
.sj-eshop-single-info .price {
	font-size: 1.6rem;
	font-weight: 800;
	color: #0F2A43;
}
.sj-eshop-single-info .meta { color: #5B6B7B; }
.sj-eshop-single-info .avail {
	margin-left: auto;
	font-weight: 700;
	color: #15703F;
	background: #E7F7EE;
	padding: 5px 12px;
	border-radius: 999px;
}
.sj-eshop-single-info .avail.sold {
	color: #fff;
	background: #0F2A43;
}

/* ----- Objednávkový formulár ----- */
.sj-eshop-form {
	background: #fff;
	border: 2px solid #E4EAF1;
	border-radius: 18px;
	padding: 24px clamp(18px, 3vw, 28px);
	margin-top: 30px;
	box-shadow: 0 10px 26px -16px rgba(15, 42, 67, .35);
}
.sj-eshop-form h3 { margin: 0 0 14px; color: #0F2A43; }
.sj-eshop-form label {
	display: block;
	font-weight: 600;
	color: #1F2A37;
	margin-bottom: 14px;
}
.sj-eshop-form input,
.sj-eshop-form textarea {
	width: 100%;
	margin-top: 6px;
	padding: 11px 14px;
	border: 1px solid #E4EAF1;
	border-radius: 12px;
	font: inherit;
	background: #fff;
	transition: border-color .2s ease, box-shadow .2s ease;
}
.sj-eshop-form input:focus,
.sj-eshop-form textarea:focus {
	outline: none;
	border-color: #1D7FB8;
	box-shadow: 0 0 0 4px rgba(29, 127, 184, .15);
}
.sj-eshop-form .sj-hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.sj-eshop-ok {
	background: #E7F7EE;
	border: 1px solid #8FD9AE;
	color: #15703F;
	padding: 14px 18px;
	border-radius: 12px;
	margin-bottom: 18px;
	font-weight: 600;
}

@media (max-width: 600px) {
	.sj-eshop-thumb img { height: 190px; }
}
