/**
 * Breadcrumbs - Shared Styles
 *
 * Used for: Pf Door Frames, Glass Families, Door Styles, and other single pages
 *
 * @package Plastpro
 * @since 1.0.0
 */

.product-breadcrumbs {
	padding: 1rem 0;
	background: #fff;
}

.product-breadcrumbs .site-container {
	max-width: 1440px;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.breadcrumb-nav {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-family: var(--plastpro-font-family, 'Montserrat', sans-serif);
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	color: #1D252D;
}

.breadcrumb-nav a {
	color: #1D252D;
	text-decoration: none;
	transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
	color: var(--plastpro-orange, #E87722);
}

.breadcrumb-separator {
	color: #1D252D;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}

.breadcrumb-separator svg {
	width: 100%;
	height: 100%;
}

.breadcrumb-current {
	font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
	.product-breadcrumbs .site-container {
		padding: 0 1rem;
	}
	
	.breadcrumb-nav {
		font-size: 12px;
		gap: 0.25rem;
	}
	
	.breadcrumb-separator {
		width: 12px;
		height: 12px;
	}
}

