:root {
	--of-red: #c0392b;
	--of-red-hover: #a5301f;
	--of-dark: #1a1a1a;
	--of-bg: #f5f5f0;
	--of-card-bg: #ffffff;
	--of-border: #e2e8f0;
	--of-text-main: #1f2937;
	--of-text-muted: #6b7280;
	--of-green: #10b981;
}

/* BREADCRUMB */
.subnav {
	background-color: var(--of-card-bg);
	border-bottom: 1px solid var(--of-border);
	padding: 12px 20px;
}

.breadcrumb-container {
	max-width: 1320px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 13px;
	color: var(--of-text-muted);
	flex-wrap: wrap;
}

.breadcrumb-container a {
	color: var(--of-text-muted);
	text-decoration: none;
	transition: color 0.2s;
}

.breadcrumb-container a:hover {
	color: var(--of-red);
}

.breadcrumb-container i {
	font-size: 10px;
}

/* CONTENEDOR PRINCIPAL */
.taller-detail-wrapper {
	max-width: 1320px;
	margin: 24px auto;
	padding: 0 20px 3rem;
}

.taller-detail-main-card {
	background-color: var(--of-card-bg);
	border-radius: 12px;
	border: 1px solid var(--of-border);
	overflow: hidden;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	margin-bottom: 32px;
}

.taller-detail-header-block {
	padding: 28px;
	display: flex;
	gap: 28px;
}

.taller-detail-image {
	width: 320px;
	min-width: 320px;
	height: 280px;
	background-color: #f8fafc;
	border-radius: 10px;
	border: 1px solid var(--of-border);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.taller-detail-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.main-image-placeholder {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #eee, #f7f7f7);
}

.taller-detail-info {
	flex: 1;
	min-width: 0;
}

.detail-title {
	font-size: 26px;
	font-weight: 800;
	color: var(--of-text-main);
	margin-bottom: 16px;
	line-height: 1.35;
}

.description-content {
	font-size: 15px;
	color: #374151;
	line-height: 1.7;
}

.description-content p {
	margin-bottom: 12px;
}

/* SECCION DE OFERTAS DEL TALLER (reutiliza .offers-feed / .offer-card de ofertas-grid.css) */
.taller-ofertas-section {
	max-width: 100%;
}

.section-heading {
	font-size: 18px;
	font-weight: 700;
	color: var(--of-text-main);
	margin-bottom: 16px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.section-heading i {
	color: var(--of-red);
}

.taller-ofertas-empty {
	background-color: var(--of-card-bg);
	border: 1px solid var(--of-border);
	border-radius: 12px;
	padding: 24px;
	color: var(--of-text-muted);
	font-size: 15px;
}

/* RESPONSIVO */
@media (max-width: 992px) {
	.taller-detail-header-block {
		flex-direction: column;
	}
	.taller-detail-image {
		width: 100%;
		min-width: 100%;
	}
}

@media (max-width: 640px) {
	.taller-detail-header-block {
		padding: 18px;
	}
	.detail-title {
		font-size: 21px;
	}
}
