:root {
	--primary: #ab0f10;
	--primary-hover: #8a0c0e;
	--white: #ffffff;
	--dark: #333333;
	--gray: #f5f5f5;
	--border: #eeeeee;
	--footer: #1a1a1a;
	--shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
	--shadow-md: 0 12px 30px rgba(0, 0, 0, 0.10);
	--radius-sm: 10px;
	--radius-md: 12px;
	--radius-lg: 16px;
	--container-pad: 15px;
}

html, body {
	height: 100%;
}

body {
	background: var(--gray);
	color: var(--dark);
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

a {
	color: inherit;
	transition: color .2s ease;
}

a:hover, a:focus {
	color: var(--primary);
	text-decoration: none;
}

.container {
	padding-left: var(--container-pad);
	padding-right: var(--container-pad);
}

.btn {
	border-radius: 8px;
	min-height: 44px;
}

.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	padding: 10px 25px;
	border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-primary:focus {
	background-color: var(--primary-hover);
	border-color: var(--primary-hover);
	transform: translateY(-2px);
}

.form-control:focus {
	border-color: var(--primary);
	box-shadow: 0 0 0 3px rgba(171, 15, 16, 0.12);
}

.mido-card {
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-sm);
}

.mido-section {
	margin: 24px 0;
}

.mido-section__title {
	font-size: 20px;
	font-weight: 800;
	margin: 0 0 14px 0;
	position: relative;
	padding-bottom: 12px;
}

.mido-section__title:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 52px;
	background: var(--primary);
	border-radius: 99px;
}

.mido-section__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.mido-carousel__controls {
	display: flex;
	gap: 8px;
}

.mido-carousel__btn {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: #fff;
	box-shadow: var(--shadow-sm);
	color: var(--dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mido-carousel__btn:hover,
.mido-carousel__btn:focus {
	border-color: rgba(171, 15, 16, 0.35);
	background: rgba(171, 15, 16, 0.06);
	color: var(--primary);
}

.mido-carousel {
	position: relative;
}

.mido-carousel__track {
	overflow: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	scroll-snap-type: x mandatory;
	padding-bottom: 8px;
}

.mido-carousel__track::-webkit-scrollbar {
	height: 8px;
}

.mido-carousel__track::-webkit-scrollbar-thumb {
	background: rgba(0, 0, 0, 0.12);
	border-radius: 999px;
}

.mido-carousel .products-grid {
	flex-wrap: nowrap;
	gap: 12px;
}

.mido-carousel .product-item {
	flex: 0 0 260px;
	max-width: 260px;
	scroll-snap-align: start;
}

.mido-topbar {
	background: #f7f7f7;
	border-bottom: 1px solid rgba(0,0,0,0.06);
	font-size: 13px;
}

.mido-mobile-header,
.mido-mobile-search,
.mido-mobile-overlay,
.mido-side-menu {
	display: none;
}

.mido-topbar__row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 8px 0;
}

.mido-topbar__left {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: wrap;
	gap: 10px;
}

.mido-topbar__left #top-links .list-inline {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.mido-topbar__left #top-links .list-inline > li {
	float: none;
}

.mido-topbar__left,
.mido-topbar__right {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-wrap: wrap;
}

.mido-whatsapp {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--dark);
}

.mido-whatsapp i {
	color: var(--primary);
	font-size: 16px;
}

.mido-lang {
	margin-right: 10px;
}

.mido-lang__btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 6px 10px;
	border-radius: 999px;
	border: 1px solid rgba(0,0,0,0.10);
	background: #ffffff;
	color: #333333;
	text-decoration: none;
	box-shadow: 0 6px 14px rgba(0,0,0,0.06);
}

.mido-lang__btn:hover,
.mido-lang__btn:focus {
	background: rgba(171, 15, 16, 0.06);
	border-color: rgba(171, 15, 16, 0.25);
	color: #ab0f10;
}

.mido-lang__flag {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 1px solid rgba(0,0,0,0.10);
	object-fit: cover;
	background: #fff;
}

.mido-lang__name {
	font-weight: 800;
	font-size: 12px;
}

.mido-lang .dropdown-menu {
	margin-top: 10px;
	padding: 8px;
	border-radius: 14px;
	border: 1px solid rgba(0,0,0,0.10);
	box-shadow: 0 18px 40px rgba(0,0,0,0.12);
	min-width: 200px;
}

.mido-lang .dropdown-menu > li > button {
	padding: 10px 12px;
	border-radius: 12px;
	text-align: left;
	color: #333;
}

.mido-lang .dropdown-menu > li > button:hover,
.mido-lang .dropdown-menu > li > button:focus {
	background: rgba(171, 15, 16, 0.06);
	color: #ab0f10;
}

.mido-lang__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.mido-lang__label {
	font-weight: 800;
}

.mido-header {
	background: var(--mido-header-bg, var(--white));
	border-bottom: 1px solid var(--border);
}

.mido-header__main {
	display: grid;
	grid-template-columns: 1fr minmax(280px, 2fr) 1fr;
	align-items: center;
	gap: 16px;
	padding: 16px 0;
}

.mido-logo {
	font-weight: 900;
	font-size: 32px;
	letter-spacing: 0.2px;
}

.mido-logo img {
	display: block;
	max-height: 46px;
	width: auto;
	max-width: 220px;
	object-fit: contain;
}

.mido-logo a {
	color: var(--primary);
}

.mido-search {
	position: relative;
}

.mido-search #search.input-group {
	width: 100%;
}

.mido-search #search.input-group .form-control,
.mido-search #search.input-group input.form-control {
	height: 46px;
	border-radius: 12px;
	border: 1px solid var(--primary);
	box-shadow: var(--shadow-sm);
}

.mido-search #search.input-group .input-group-btn > .btn,
.mido-search #search.input-group button.btn {
	height: 46px;
	border-radius: 12px;
	margin-left: 10px;
	border: 1px solid var(--primary);
	background: var(--primary);
}

.mido-search #search.input-group .input-group-btn {
	width: 52px;
}

.mido-search #search.input-group .input-group-btn > .btn i {
	color: #fff;
}

.mido-search #search.input-group .input-group-btn > .btn:hover {
	border-color: var(--primary-hover);
	background: var(--primary-hover);
}

.mido-cart #cart .dropdown-menu {
	background: var(--primary);
	border: 1px solid rgba(255, 255, 255, 0.18);
	color: #fff;
}

.mido-cart #cart .dropdown-menu,
.mido-cart #cart .dropdown-menu * {
	color: #fff;
}

.mido-cart #cart .dropdown-menu a:hover,
.mido-cart #cart .dropdown-menu a:focus {
	color: #fff;
	background: rgba(255, 255, 255, 0.12);
}

.mido-search,
.mido-search * {
	box-sizing: border-box;
}

.mido-search .dropdown-menu,
.mido-search .list-group,
#search .dropdown-menu,
#search .list-group {
	z-index: 11050;
	border-radius: 12px;
	box-shadow: var(--shadow-md);
	border: 1px solid var(--border);
	overflow: hidden;
}

.mido-search .dropdown-menu {
	min-width: 420px;
	max-width: min(720px, 92vw);
}

.mido-search .form-control {
	height: 46px;
	border-radius: 12px;
	padding-right: 52px;
}

.mido-search__btn {
	position: absolute;
	right: 6px;
	top: 6px;
	width: 42px;
	height: 34px;
	border-radius: 10px;
	border: none;
	background: var(--primary);
	color: #fff;
}

.mido-cart {
	display: flex;
	justify-content: flex-end;
}

.mido-cart #cart > button {
	min-height: 46px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: rgba(0,0,0,0.03);
	padding: 10px 14px;
	font-weight: 800;
	box-shadow: var(--shadow-sm);
}

.mido-cart #cart > button:hover,
.mido-cart #cart > button:focus {
	border-color: rgba(171, 15, 16, 0.25);
	background: rgba(171, 15, 16, 0.06);
}

.mido-cart #cart > button #cart-total {
	font-weight: 900;
}

.mido-header__sticky {
	position: sticky;
	top: 0;
	z-index: 3000;
}

body.mido-has-sticky .mido-header__sticky {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
}

.mido-header__sticky.is-stuck {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 9999;
}

.mido-menubar {
	background: var(--white);
	border-bottom: 1px solid var(--border);
}

.mido-menubar #menu {
	background: transparent;
	border: 0;
	min-height: 0;
	margin: 0;
}

.mido-menubar #menu .nav > li > a {
	color: var(--dark);
	font-weight: 700;
	padding: 14px 14px;
}

.mido-menubar #menu .nav > li > a:hover,
.mido-menubar #menu .nav > li.open > a {
	background: rgba(171, 15, 16, 0.06);
	color: var(--primary);
}

.mido-menubar #menu .dropdown-menu {
	border-radius: 12px;
	border: 1px solid var(--border);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	margin-top: 10px;
}

.mido-menubar #menu .dropdown-inner a:hover {
	background: rgba(171, 15, 16, 0.08);
	color: var(--primary);
}

html[dir="rtl"] .mido-menubar #menu .nav {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	direction: rtl;
}

html[dir="rtl"] .mido-menubar #menu .nav > li {
	float: none;
}

html[dir="rtl"] .mido-menubar #menu .dropdown-menu {
	left: auto;
	right: 0;
	text-align: right;
}

html[dir="rtl"] .mido-menubar #menu .dropdown-inner {
	text-align: right;
}

.mido-bottombar {
	background: #fff;
	border-bottom: 1px solid var(--border);
}

.mido-ticker {
	padding: 10px 0;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	color: #555;
}

.mido-ticker__track {
	display: inline-block;
	padding-left: 100%;
	animation: midoTicker 18s linear infinite;
}

.mido-product-gallery {
	display: grid;
	grid-template-columns: var(--mido-gallery-rail, 112px) 1fr;
	gap: 14px;
	align-items: start;
}

.mido-product-gallery__aside {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.mido-product-gallery__thumbs {
	display: flex;
	flex-direction: column;
	gap: 10px;
	max-height: 520px;
	overflow-y: auto;
	overflow-x: hidden;
	padding: 4px;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.mido-product-gallery__thumbs::-webkit-scrollbar { width: 0; height: 0; }

.mido-product-gallery__thumb {
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	padding: 6px;
	box-shadow: var(--shadow-sm);
	transition: all .2s ease;
	width: var(--mido-gallery-thumb, 96px);
	height: var(--mido-gallery-thumb, 96px);
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
}

.mido-product-gallery__thumb img {
	max-width: 100%;
	max-height: 100%;
	display: block;
	object-fit: contain;
}

.mido-product-gallery__thumb {
	position: relative;
}

.mido-product-gallery__thumb.is-more img {
	filter: grayscale(10%) brightness(0.78);
}

.mido-product-gallery__thumb.is-more .mido-product-gallery__more {
	display: flex;
	position: absolute;
	inset: 0;
	align-items: center;
	justify-content: center;
	font-weight: 900;
	font-size: 16px;
	color: #fff;
	background: rgba(0, 0, 0, 0.42);
	border-radius: 12px;
	letter-spacing: 0.2px;
}

.mido-product-gallery__thumb:hover,
.mido-product-gallery__thumb:focus {
	border-color: rgba(171, 15, 16, 0.35);
	transform: translateY(-1px);
}

.mido-product-gallery__thumb.is-active {
	border-color: var(--primary);
	box-shadow: 0 10px 22px rgba(171, 15, 16, 0.14);
}

.mido-product-gallery__main {
	position: relative;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: #fff;
	overflow: hidden;
	aspect-ratio: var(--mido-gallery-aspect, 1 / 1);
	display: flex;
	align-items: center;
	justify-content: center;
}

.mido-product-gallery__mainbtn {
	appearance: none;
	border: none;
	background: transparent;
	padding: 0;
	width: 100%;
	height: 100%;
	cursor: zoom-in;
	display: block;
}

.mido-product-gallery__nav {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: #fff;
	box-shadow: var(--shadow-sm);
	color: var(--dark);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mido-product-gallery__nav:hover,
.mido-product-gallery__nav:focus {
	border-color: rgba(171, 15, 16, 0.35);
	background: rgba(171, 15, 16, 0.06);
	color: var(--primary);
}

.mido-product-gallery__link {
	display: block;
	width: 100%;
	height: 100%;
}

.mido-product-gallery__img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
	background: #fff;
	transition: opacity .18s ease;
	will-change: opacity;
}

.mido-product-gallery__img.is-switching {
	opacity: .35;
}

.mido-product-gallery__more {
	display: none;
}

.mido-product-gallery__zoom {
	position: absolute;
	inset: 0;
	opacity: 0;
	pointer-events: none;
	transition: opacity .15s ease;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 220% 220%;
}

.mido-product-gallery__zoom.is-visible {
	opacity: 1;
}

.mido-gallery-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: none;
}

.mido-gallery-modal.is-open {
	display: block;
}

.mido-gallery-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.62);
	backdrop-filter: blur(2px);
}

.mido-gallery-modal__panel {
	position: relative;
	width: min(1024px, calc(100% - 48px));
	height: min(86vh, 760px);
	margin: 7vh auto 0;
	background: #fff;
	border-radius: 18px;
	border: 1px solid rgba(255, 255, 255, 0.12);
	box-shadow: var(--shadow-md);
	overflow: hidden;
	display: grid;
	place-items: center;
}

.mido-gallery-modal__img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
	user-select: none;
	-webkit-user-drag: none;
}

.mido-gallery-modal__img.is-loading {
	opacity: .35;
}

.mido-gallery-modal__close {
	position: absolute;
	top: 12px;
	right: 12px;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-sm);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mido-gallery-modal__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 46px;
	height: 46px;
	border-radius: 14px;
	border: 1px solid rgba(0, 0, 0, 0.10);
	background: rgba(255, 255, 255, 0.92);
	box-shadow: var(--shadow-sm);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.mido-gallery-modal__nav.is-prev { left: 12px; }
.mido-gallery-modal__nav.is-next { right: 12px; }

html.mido-modal-open,
body.mido-modal-open {
	overflow: hidden;
}

@keyframes midoTicker {
	0% { transform: translateX(0); }
	100% { transform: translateX(-100%); }
}

.products-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.product-item {
	flex: 0 0 calc(25% - 9px);
	max-width: calc(25% - 9px);
}

.product-card {
	position: relative;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: #fff;
	padding: 15px;
	transition: all 0.3s ease;
	height: 100%;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.product-card:hover {
	box-shadow: 0 5px 20px rgba(0,0,0,0.1);
	transform: translateY(-5px);
}

.product-card__image {
	border-radius: 10px;
	overflow: hidden;
	background: #fff;
	border: 1px solid var(--border);
}

.product-card__image img {
	width: 100%;
	height: auto;
	display: block;
}

.product-card__name {
	font-size: 15px;
	font-weight: 800;
	margin: 12px 0 10px;
	color: var(--dark);
	background: linear-gradient(180deg, rgba(171, 15, 16, 0.06), rgba(0, 0, 0, 0.00));
	border: 1px solid rgba(171, 15, 16, 0.10);
	border-radius: 12px;
	padding: 10px 12px;
	line-height: 1.35;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__desc {
	color: #666;
	font-size: 12.5px;
	line-height: 1.35;
	margin: -6px 0 10px;
	min-height: 34px;
	display: -webkit-box;
	line-clamp: 2;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.product-card__name a:hover {
	color: var(--primary);
}

.price,
.price-new {
	color: var(--primary);
	font-weight: 700;
	font-size: 18px;
}

.price-old {
	text-decoration: line-through;
	color: #999;
	margin-left: 10px;
}

.product-card__actions {
	margin-top: auto;
	display: grid;
	grid-template-columns: 1fr 44px 44px;
	gap: 8px;
	align-items: center;
}

.product-card__actions .btn-default {
	min-height: 44px;
	width: 44px;
	padding: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
	border: 1px solid var(--border);
	background: #fff;
	flex: 0 0 44px;
}

.product-card__actions .btn-default i {
	font-size: 16px;
	line-height: 1;
}

.product-card__actions .btn-default:hover,
.product-card__actions .btn-default:focus {
	border-color: rgba(171, 15, 16, 0.35);
	background: rgba(171, 15, 16, 0.06);
}

.product-card__actions .btn-default i {
	color: var(--dark);
}

.product-card__actions .btn-default:hover i,
.product-card__actions .btn-default:focus i {
	color: var(--primary);
}

.product-card__add {
	opacity: 1;
	pointer-events: auto;
	transform: none;
	width: 100%;
	transition: all .2s ease;
	flex: 1;
	min-height: 44px;
	border-radius: 12px;
	font-weight: 800;
	box-shadow: 0 10px 18px rgba(171, 15, 16, 0.18);
}

.product-card:hover .product-card__add {
	box-shadow: 0 12px 26px rgba(171, 15, 16, 0.22);
	transform: translateY(-1px);
}

.product-badge {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--primary);
	color: #fff;
	font-weight: 800;
	font-size: 12px;
	padding: 6px 10px;
	border-radius: 999px;
}

.mido-pagination .pagination {
	margin: 0;
}

.mido-pagination .pagination > li > a,
.mido-pagination .pagination > li > span {
	border-radius: 10px;
	border: 1px solid var(--border);
	margin: 0 4px;
	color: var(--dark);
}

.mido-pagination .pagination > li.active > span {
	background: var(--primary);
	border-color: var(--primary);
}

.mido-footer {
	background: var(--footer);
	color: #cfcfcf;
	margin-top: 30px;
}

.mido-footer a {
	color: #cfcfcf;
}

.mido-footer a:hover {
	color: #ffffff;
}

.mido-footer__top {
	padding: 34px 0;
	border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mido-footer__bottom {
	padding: 14px 0;
	color: rgba(255,255,255,0.7);
}

.mido-footer__title {
	color: #fff;
	font-weight: 800;
	margin: 0 0 12px;
	font-size: 14px;
}

.mido-social {
	display: flex;
	gap: 10px;
	margin-top: 12px;
}

.mido-social a {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: rgba(255,255,255,0.08);
	transition: background .2s ease;
}

.mido-social a:hover {
	background: rgba(255,255,255,0.16);
}

/* ============================================
   Product Tabs
   ============================================ */

.product-tabs {
	margin-top: 16px;
}

.product-tabs__nav {
	display: flex;
	gap: 6px;
	border-bottom: 1px solid #eeeeee;
	padding: 0 8px;
}

.product-tabs__nav > li {
	float: none;
	margin-bottom: 0;
}

.product-tabs__nav > li > a {
	border: none !important;
	padding: 12px 22px;
	font-size: 16px;
	font-weight: 800;
	color: #666666;
	background: transparent;
	border-radius: 10px 10px 0 0;
	transition: all 0.2s ease;
}

.product-tabs__nav > li > a:hover,
.product-tabs__nav > li > a:focus {
	color: #ab0f10;
	background: rgba(171, 15, 16, 0.06);
}

.product-tabs__nav > li.active > a,
.product-tabs__nav > li.active > a:hover,
.product-tabs__nav > li.active > a:focus {
	color: #ab0f10;
	background: transparent;
	border: none;
	box-shadow: none;
	position: relative;
}

.product-tabs__nav > li.active > a:after {
	content: '';
	position: absolute;
	left: 16px;
	right: 16px;
	bottom: -1px;
	height: 2px;
	background: #ab0f10;
	border-radius: 999px;
}

.product-tabs__content {
	border: 1px solid #eeeeee;
	border-top: none;
	padding: 20px;
	border-radius: 0 0 12px 12px;
	background: #ffffff;
}

/* ============================================
   Specification
   ============================================ */

.specification-group {
	margin-bottom: 30px;
}

.specification-group h3 {
	color: #ffffff;
	font-size: 16px;
	font-weight: 900;
	background: #ab0f10;
	padding: 12px 14px;
	margin: 18px 0 12px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 10px;
	box-shadow: 0 10px 18px rgba(171, 15, 16, 0.18);
}

.specification-table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	border: 1px solid #eeeeee;
	border-radius: 12px;
	overflow: hidden;
	background: #ffffff;
}

.specification-table-wrap {
	border-radius: 12px;
	overflow: hidden;
}

.specification-table tr {
	border-bottom: 1px solid #eeeeee;
}

.specification-table tr:last-child {
	border-bottom: none;
}

.specification-table th {
	background: #f8f8f8;
	width: 30%;
	padding: 12px 15px;
	font-weight: 800;
	color: #333333;
	text-align: left;
	vertical-align: top;
	border-right: 1px solid #eeeeee;
	line-height: 1.6;
	word-break: break-word;
}

.specification-table td {
	padding: 12px 15px;
	color: #555555;
	text-align: left;
	vertical-align: top;
	line-height: 1.7;
	word-break: break-word;
}

.specification-table tbody tr:nth-child(even) th,
.specification-table tbody tr:nth-child(even) td {
	background: #fcfcfc;
}

.specification-table tbody tr:hover th,
.specification-table tbody tr:hover td {
	background: rgba(171, 15, 16, 0.04);
}

.specification-table th i {
	color: #ab0f10;
	width: 22px;
	margin-right: 8px;
}

.specification-table td a {
	color: #ab0f10;
}

.specification-table td a:hover {
	color: #8a0c0e;
}

.color-swatch {
	display: inline-block;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	margin-right: 8px;
	vertical-align: middle;
	border: 1px solid #ddd;
	box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.specification-empty {
	display: grid;
	place-items: center;
	text-align: center;
	color: #777;
	padding: 30px 0;
}

.specification-empty i {
	font-size: 22px;
	color: rgba(0,0,0,0.35);
	margin-bottom: 10px;
}

/* ============================================
   Description
   ============================================ */

.product-description {
	line-height: 1.8;
	color: #444444;
}

.product-description h1,
.product-description h2,
.product-description h3,
.product-description h4 {
	color: #ab0f10;
	margin-top: 18px;
	margin-bottom: 12px;
	font-weight: 800;
}

.product-description ul,
.product-description ol {
	padding-left: 20px;
	margin: 14px 0;
}

.product-description ul {
	list-style: none;
}

.product-description ul > li {
	position: relative;
	padding-left: 22px;
	margin-bottom: 8px;
}

.product-description ul > li:before {
	content: '\f00c';
	font-family: FontAwesome;
	position: absolute;
	left: 0;
	top: 2px;
	color: #ab0f10;
}

.product-description img {
	max-width: 100%;
	height: auto;
	border-radius: 10px;
}

.product-description iframe,
.product-description video {
	max-width: 100%;
}

/* ============================================
   Reviews
   ============================================ */

.write-review-form {
	margin-top: 26px;
	padding-top: 20px;
	border-top: 1px solid #eeeeee;
}

.write-review-form h3 {
	font-size: 18px;
	font-weight: 800;
	color: #333333;
	margin: 0 0 16px;
}

.rating-input {
	display: flex;
	gap: 10px;
	align-items: center;
	flex-wrap: wrap;
}

.rating-input input {
	display: none;
}

.rating-input .star-label {
	font-size: 22px;
	color: #dddddd;
	cursor: pointer;
	transition: color 0.15s ease;
}

.rating-input label:hover .star-label,
.rating-input label:focus .star-label {
	color: #ffc107;
}

.write-review-form .btn-primary {
	background: #ab0f10;
	border-color: #ab0f10;
	border-radius: 12px;
	font-weight: 800;
	min-height: 44px;
	padding: 10px 18px;
}

.write-review-form .btn-primary:hover,
.write-review-form .btn-primary:focus {
	background: #8a0c0e;
	border-color: #8a0c0e;
}

@media (max-width: 768px) {
	.product-tabs__nav {
		flex-wrap: nowrap;
		overflow-x: auto;
		white-space: nowrap;
		-webkit-overflow-scrolling: touch;
		padding: 0 6px;
	}
	.product-tabs__nav > li > a {
		padding: 10px 14px;
		font-size: 14px;
	}
	.product-tabs__content {
		padding: 15px;
	}
	.specification-table th,
	.specification-table td {
		padding: 10px 12px;
		font-size: 13px;
	}
	.specification-table th {
		width: 40%;
	}
	.specification-table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}
	.specification-table {
		min-width: 520px;
	}
}
