/* Brand landing pages */

.brand-landing {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	width: 100vw;
	max-width: 100vw;
	overflow-x: hidden;
}

.bl-section-title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	text-align: center;
	margin: 0 0 12px;
}

.bl-section-title--light {
	color: #fff;
}

.bl-section-subtitle {
	text-align: center;
	color: #666;
	font-size: 16px;
	margin: 0 0 40px;
	max-width: 640px;
	margin-left: auto;
	margin-right: auto;
}

/* Hero */
.bl-hero {
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
	color: #fff;
	padding: 40px 0 60px;
}

.bl-breadcrumb {
	font-size: 13px;
	margin-bottom: 24px;
	opacity: 0.85;
}

.bl-breadcrumb a {
	color: #fff;
	text-decoration: underline;
}

.bl-breadcrumb span {
	margin: 0 8px;
	opacity: 0.6;
}

.bl-hero__title {
	font-size: 34px;
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 16px;
	color: #fff;
}

.bl-hero__subtitle {
	font-size: 17px;
	line-height: 1.6;
	opacity: 0.9;
	margin-bottom: 24px;
}

.bl-hero__badges {
	list-style: none;
	padding: 0;
	margin: 0 0 28px;
}

.bl-hero__badges li {
	margin-bottom: 8px;
	font-size: 15px;
}

.bl-hero__badges .glyphicon {
	color: #4caf50;
	margin-right: 8px;
}

.bl-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.bl-hero__logo-wrap {
	background: rgba(255,255,255,0.95);
	border-radius: 16px;
	padding: 30px;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.bl-hero__logo {
	max-width: 100%;
	max-height: 180px;
}

.bl-hero__media {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

@media (min-width: 992px) {
	.bl-hero__media {
		margin-top: 0;
	}
	.bl-hero__title {
		font-size: 40px;
	}
}

/* Buttons */
.bl-btn {
	display: inline-block;
	padding: 14px 28px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 6px;
	text-decoration: none !important;
	border: 2px solid transparent;
	transition: all 0.2s ease;
	cursor: pointer;
	text-align: center;
}

.bl-btn--primary {
	background: #d93135;
	color: #fff !important;
	border-color: #d93135;
}

.bl-btn--primary:hover {
	background: #b9282c;
	border-color: #b9282c;
	color: #fff !important;
}

.bl-btn--outline {
	background: transparent;
	color: #fff !important;
	border-color: rgba(255,255,255,0.6);
}

.bl-btn--outline:hover {
	background: rgba(255,255,255,0.1);
	color: #fff !important;
}

.bl-btn--block {
	width: 100%;
	border: none;
}

/* Benefits */
.bl-benefits {
	padding: 50px 0;
	background: #fff;
}

.bl-benefits__card {
	text-align: center;
	padding: 24px 16px;
	height: 100%;
}

.bl-benefits__icon {
	font-size: 36px;
	color: #d93135;
	margin-bottom: 16px;
	display: block;
}

.bl-benefits__title {
	font-size: 18px;
	font-weight: 700;
	margin: 0 0 10px;
	color: #222;
}

.bl-benefits__text {
	font-size: 14px;
	color: #666;
	line-height: 1.5;
	margin: 0;
}

.bl-benefits__item {
	margin-bottom: 20px;
}

@media (min-width: 992px) {
	.bl-benefits__item {
		margin-bottom: 0;
	}
}

/* Categories */
.bl-categories {
	padding: 60px 0;
	background: #f8f9fa;
}

.bl-categories__tile {
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	padding: 20px 12px;
	text-align: center;
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	transition: all 0.2s ease;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.bl-categories__tile:hover {
	border-color: #d93135;
	color: #d93135;
	box-shadow: 0 4px 12px rgba(217,49,53,0.15);
}

/* Parts */
.bl-parts {
	padding: 60px 0;
	background: #fff;
}

.bl-parts__card {
	display: block;
	background: #f8f9fa;
	border: 1px solid #eee;
	border-radius: 8px;
	padding: 18px 20px;
	margin-bottom: 16px;
	text-decoration: none !important;
	transition: all 0.2s ease;
	min-height: 90px;
}

.bl-parts__card:hover {
	border-color: #d93135;
	background: #fff;
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	transform: translateY(-2px);
}

.bl-parts__name {
	display: block;
	font-size: 14px;
	color: #222;
	line-height: 1.4;
	margin-bottom: 10px;
}

.bl-parts__action {
	display: block;
	font-size: 13px;
	color: #d93135;
	font-weight: 600;
}

.bl-parts__more {
	text-align: center;
	color: #888;
	margin-top: 20px;
	font-size: 14px;
}

/* Search */
.bl-search {
	padding: 40px 0;
	background: #f0f4f8;
}

.bl-search__form .main-menu-search {
	max-width: 600px;
	margin: 0 auto;
}

/* About content */
.bl-about {
	padding: 50px 0;
	background: #fff;
}

.bl-about__content {
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.bl-about__content h2 {
	font-size: 22px;
	margin-top: 30px;
}

.bl-about__content ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

.bl-about__content p {
	margin-bottom: 16px;
}

/* Models */
.bl-models {
	padding: 50px 0;
	background: #f8f9fa;
}

.bl-models .modprod {
	text-align: center;
	margin: 20px 0;
}

.bl-models .relmod img {
	max-width: 100%;
	border-radius: 8px;
}

.bl-models .relmod p {
	font-size: 16px;
	font-weight: 600;
	margin-top: 12px;
}

.bl-models h2 {
	text-align: center;
	font-size: 24px;
	margin-bottom: 30px;
}

/* Steps */
.bl-steps {
	padding: 60px 0;
	background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.bl-steps__item {
	text-align: center;
	padding: 20px 10px;
	margin-bottom: 20px;
}

.bl-steps__num {
	font-size: 32px;
	font-weight: 800;
	color: #d93135;
	opacity: 0.9;
	margin-bottom: 12px;
}

.bl-steps__title {
	font-size: 17px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px;
}

.bl-steps__text {
	font-size: 14px;
	color: rgba(255,255,255,0.75);
	line-height: 1.5;
	margin: 0;
}

/* FAQ */
.bl-faq {
	padding: 60px 0;
	background: #fff;
}

.bl-faq__list {
	max-width: 800px;
	margin: 0 auto;
}

.bl-faq__item {
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	margin-bottom: 12px;
	overflow: hidden;
}

.bl-faq__question {
	padding: 18px 20px;
	font-weight: 600;
	font-size: 15px;
	cursor: pointer;
	list-style: none;
	background: #fafafa;
}

.bl-faq__question::-webkit-details-marker {
	display: none;
}

.bl-faq__item[open] .bl-faq__question {
	background: #fff;
	color: #d93135;
	border-bottom: 1px solid #eee;
}

.bl-faq__answer {
	padding: 16px 20px;
	font-size: 14px;
	line-height: 1.6;
	color: #555;
}

/* Order form */
.bl-order {
	padding: 60px 0;
	background: #2c2c2c;
	color: #fff;
}

.bl-order__title {
	font-size: 28px;
	font-weight: 700;
	margin: 0 0 16px;
	color: #fff;
}

.bl-order__text {
	font-size: 15px;
	line-height: 1.6;
	opacity: 0.85;
	margin-bottom: 24px;
}

.bl-order__list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.bl-order__list li {
	margin-bottom: 12px;
	font-size: 15px;
}

.bl-order__list .glyphicon {
	color: #d93135;
	margin-right: 10px;
}

.bl-order__form {
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	color: #333;
}

.bl-form-group {
	margin-bottom: 16px;
	position: relative;
}

.bl-form-group label {
	font-weight: 600;
	font-size: 13px;
	margin-bottom: 6px;
	display: block;
}

.bl-form-group label small {
	font-weight: 400;
	color: #999;
}

.bl-order__form .form-control {
	height: 44px;
	border-radius: 6px;
	border: 1px solid #ddd;
}

.bl-order__note {
	font-size: 12px;
	color: #999;
	margin-top: 12px;
	text-align: center;
}

.bl-order .nameError,
.bl-order .telError,
.bl-order .detError {
	position: relative !important;
	left: auto !important;
	top: auto !important;
	margin-bottom: 8px;
}

.bl-order__row {
	display: flex;
	align-items: center;
}

/* Brands crosslinks */
.bl-brands {
	padding: 50px 0 70px;
	background: #f8f9fa;
}

.bl-brands__list {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	justify-content: center;
}

.bl-brands__link {
	display: inline-block;
	padding: 10px 20px;
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 30px;
	color: #333 !important;
	text-decoration: none !important;
	font-size: 14px;
	transition: all 0.2s ease;
}

.bl-brands__link:hover {
	background: #d93135;
	border-color: #d93135;
	color: #fff !important;
}

@media (max-width: 767px) {
	.bl-hero__title {
		font-size: 26px;
	}
	.bl-section-title {
		font-size: 22px;
	}
	.bl-order__info {
		margin-bottom: 30px;
	}
}

html {
	scroll-behavior: smooth;
}
