/* FDC product taxonomy style */
.fdc-product-page {
	width: min(100% - 14px, 1180px);
	margin: 8px auto;
	background: #fff;
	border: 1px solid #d4d4d4;
	border-radius: 7px;
	overflow: hidden;
	box-shadow: 0 2px 7px rgba(0, 0, 0, .2);
	font-family: Arial, Helvetica, sans-serif;
	color: #555;
}

.fdc-term-slider {
	position: relative;
	height: 205px;
	overflow: hidden;
	background: #eee;
}

.fdc-term-slides,
.fdc-term-slide {
	position: absolute;
	inset: 0;
}

.fdc-term-slide {
	opacity: 0;
	visibility: hidden;
	transition: opacity .7s ease;
}

.fdc-term-slide.is-active {
	opacity: 1;
	visibility: visible;
}

.fdc-term-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.fdc-slide-prev,
.fdc-slide-next {
	position: absolute;
	top: 50%;
	z-index: 5;
	width: 35px;
	height: 48px;
	border: 0;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, .28);
	color: #fff;
	font-size: 30px;
	cursor: pointer;
	opacity: 0;
	transition: opacity .2s;
}

.fdc-term-slider:hover .fdc-slide-prev,
.fdc-term-slider:hover .fdc-slide-next {
	opacity: 1;
}

.fdc-slide-prev { left: 8px; }
.fdc-slide-next { right: 8px; }

.fdc-category-strip {
	display: grid;
	grid-template-columns: minmax(300px, 48%) 1fr;
	min-height: 25px;
	background: #e9e9e9;
	align-items: center;
}

.fdc-category-strip-title {
	position: relative;
	padding: 6px 18px;
	background: #8d1015;
	color: #fff;
	font: 700 13px/1.1 "Times New Roman", serif;
	text-transform: uppercase;
}

.fdc-category-strip-title::after {
	content: "";
	position: absolute;
	top: 0;
	right: -28px;
	border-top: 25px solid #8d1015;
	border-right: 28px solid transparent;
}

.fdc-category-welcome {
	padding: 5px 12px 5px 40px;
	text-align: right;
	font-size: 11px;
	color: #555;
}

.fdc-category-welcome span {
	margin: 0 8px;
}

.fdc-category-welcome a {
	color: red;
	font-weight: 700;
	text-decoration: none;
}

.fdc-product-layout {
	display: grid;
	grid-template-columns: 220px minmax(0, 1fr);
	gap: 15px;
	padding: 16px 15px 36px;
}

.fdc-product-sidebar {
	align-self: start;
	overflow: hidden;
	background: #870f13;
	color: #fff;
	border-radius: 4px;
}

.fdc-product-sidebar h3 {
	margin: 0;
	padding: 12px 10px 9px;
	color: #fff;
	font: 700 13px/1.2 "Times New Roman", serif;
	border-bottom: 1px solid rgba(255, 255, 255, .25);
}

.fdc-product-sidebar h3 span {
	margin-right: 6px;
	color: #f4a000;
}

.fdc-category-tree,
.fdc-category-tree ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fdc-category-tree > li > a {
	display: block;
	padding: 8px 10px;
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.fdc-category-tree .fdc-dot {
	margin-right: 5px;
	color: #ffa500;
	font-size: 10px;
}

.fdc-category-tree ul a {
	display: block;
	padding: 6px 12px 6px 22px;
	color: #fff;
	font-size: 11px;
	font-style: italic;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.fdc-category-tree a:hover,
.fdc-category-tree .is-current > a {
	color: #ffca4b;
}

.fdc-product-content h1 {
	margin: 1px 0 13px;
	color: #f06c3a;
	font: 400 14px/1.2 "Times New Roman", serif;
	text-transform: uppercase;
}

.fdc-term-description {
	margin-bottom: 15px;
}

.fdc-child-category-grid,
.fdc-product-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px 25px;
}

.fdc-child-category-card,
.fdc-product-card {
	min-width: 0;
	color: #555;
	text-decoration: none;
}

.fdc-card-image,
.fdc-product-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	aspect-ratio: 1.36 / 1;
	overflow: hidden;
	background: #fff;
	border: 1px solid #d8d8d8;
	box-shadow: 3px 4px 6px rgba(0, 0, 0, .12);
}

.fdc-card-image img,
.fdc-product-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8px;
	transition: transform .25s ease;
}

.fdc-child-category-card:hover img,
.fdc-product-card:hover img {
	transform: scale(1.05);
}

.fdc-card-name {
	margin-top: 12px;
	color: #555;
	font-size: 11px;
}

.fdc-product-meta {
	margin-top: 12px;
	font-size: 11px;
	color: #666;
}

.fdc-product-meta a {
	color: #8c0000;
	font-weight: 700;
	text-decoration: none;
}

.fdc-image-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	color: #999;
	background: #f5f5f5;
}

.fdc-pagination {
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}

.fdc-pagination ul {
	display: flex;
	gap: 8px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fdc-pagination a,
.fdc-pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 20px;
	height: 20px;
	padding: 0 5px;
	border: 1px solid #d2d2d2;
	background: #f4f4f4;
	color: #555;
	font-size: 11px;
	text-decoration: none;
	border-radius: 2px;
}

.fdc-pagination .current {
	background: #8d1015;
	border-color: #8d1015;
	color: #fff;
}

.fdc-single-product-grid {
	display: grid;
	grid-template-columns: minmax(280px, 44%) 1fr;
	gap: 28px;
}

.fdc-single-image img {
	width: 100%;
	height: auto;
	border: 1px solid #ddd;
}

@media (max-width: 820px) {
	.fdc-product-layout {
		grid-template-columns: 1fr;
	}

	.fdc-product-sidebar {
		width: 100%;
	}

	.fdc-child-category-grid,
	.fdc-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.fdc-category-strip {
		grid-template-columns: 1fr;
	}

	.fdc-category-strip-title::after {
		display: none;
	}

	.fdc-category-welcome {
		padding: 6px 12px;
		text-align: left;
	}
}

@media (max-width: 520px) {
	.fdc-term-slider {
		height: 150px;
	}

	.fdc-child-category-grid,
	.fdc-product-grid {
		grid-template-columns: 1fr;
	}

	.fdc-single-product-grid {
		grid-template-columns: 1fr;
	}
}

.fdc-category-tree .fdc-parent-cat {
	margin: 0;
	padding: 0;
}

.fdc-parent-row {
	display: flex;
	align-items: stretch;
	border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.fdc-parent-link {
	display: flex !important;
	align-items: center;
	flex: 1;
	min-width: 0;
	padding: 8px 6px 8px 10px !important;
	border-bottom: 0 !important;
    color: white;
    font-size: 12px;
    text-decoration: unset;
font-weight: 700;
}

.fdc-parent-name {
	flex: 1;
	min-width: 0;
	line-height: 1.4;
}

.fdc-category-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 30px;
	width: 30px;
	min-width: 30px;
	margin: 0;
	padding: 0;
	border: 0;
	border-left: 1px solid rgba(255, 255, 255, 0.14);
	background: transparent;
	color: #ffca4b;
	font-size: 10px;
	cursor: pointer;
	transition:
		background-color 0.2s ease,
		color 0.2s ease;
}

.fdc-category-toggle:hover,
.fdc-category-toggle:focus {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	outline: 0;
}

.fdc-toggle-icon {
	display: block;
	line-height: 1;
}

.fdc-child-list {
	display: block;
	overflow: hidden;
	margin: 0 !important;
	padding: 0 !important;
	background: rgba(75, 0, 4, 0.18);
}

.fdc-child-list[hidden] {
	display: none !important;
}

.fdc-child-list li {
	margin: 0;
	padding: 0;
}

.fdc-child-list a {
	display: block;
	padding: 6px 10px 6px 22px !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 11px;
	font-style: italic;
	line-height: 1.35;
	text-decoration: none;
}

.fdc-child-list li:last-child a {
	border-bottom: 0;
}

.fdc-child-list a:hover,
.fdc-child-list .is-current > a {
	background: rgba(255, 255, 255, 0.08);
	color: #ffca4b;
}

.fdc-parent-cat.is-open > .fdc-parent-row,
.fdc-parent-cat.is-current-parent > .fdc-parent-row {
	background: rgba(255, 255, 255, 0.06);
}

.fdc-parent-cat.is-open .fdc-parent-link,
.fdc-parent-cat.is-current-parent .fdc-parent-link {
	color: #ffca4b;
}