/* ==========================================================================
 * Battens Page
 * ========================================================================== */

.btn-page {
	max-width: 100%;
	overflow-x: hidden;
}

.btn-container {
	max-width: 1400px;
	margin: 0 auto;
	padding: 0 30px;
}

.btn-sep {
	border: none;
	border-top: 1px solid #e0dede;
	margin: 20px 0;
}

.btn-sep-double {
	border: none;
	border-top: 1px solid #e0dede;
	border-bottom: 1px solid #e0dede;
	height: 4px;
	margin: 20px 0;
}

/* ==========================================================================
 * Hero
 * ========================================================================== */
.btn-hero {
	padding: 40px 0 20px;
}

.btn-hero__title {
	font-size: 40px;
	font-weight: 700;
	text-align: center;
	line-height: 1.1;
	color: #222;
	margin: 0 0 16px;
}

.btn-hero__intro {
	font-size: 14px;
	line-height: 1.7;
	color: #555;
	margin: 0;
}

/* ==========================================================================
 * Product Grid
 * ========================================================================== */
.btn-products {
	padding: 10px 0 0;
}

.btn-products__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 20px;
}

.btn-products__card {
	display: block;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.2s;
}

.btn-products__card:hover {
	opacity: 0.85;
}

.btn-products__card img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 5 / 3;
	object-fit: cover;
}

.btn-products__label {
	font-size: 13px;
	color: #1a5276;
	margin: 8px 0 0;
	line-height: 1.4;
}

.btn-products__label strong {
	color: #1a5276;
}

/* ==========================================================================
 * Benefits
 * ========================================================================== */
.btn-benefits {
	padding: 20px 0 0;
}

.btn-benefits__title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	text-align: center;
	margin: 0 0 24px;
	line-height: 1.2;
}

.btn-benefits__list {
	list-style: disc;
	padding-left: 20px;
	margin: 0 0 20px;
}

.btn-benefits__list li {
	margin-bottom: 16px;
	font-size: 14px;
	line-height: 1.7;
	color: #333;
}

.btn-benefits__list li strong {
	display: block;
	font-size: 15px;
	margin-bottom: 4px;
}

.btn-benefits__list li p {
	margin: 0;
	color: #555;
}

/* ==========================================================================
 * Finishing & Colors
 * ========================================================================== */
.btn-colors {
	padding: 20px 0 0;
}

.btn-colors__title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	text-align: center;
	margin: 0 0 12px;
	line-height: 1.2;
}

.btn-colors__intro {
	font-size: 14px;
	line-height: 1.7;
	color: #555;
	margin: 0 0 24px;
}

.btn-colors__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-bottom: 20px;
}

.btn-colors__card {
	display: block;
	position: relative;
	overflow: hidden;
	text-decoration: none;
	height: 200px;
}

.btn-colors__card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s;
}

.btn-colors__card:hover img {
	transform: scale(1.05);
}

.btn-colors__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.35);
	transition: background 0.3s;
}

.btn-colors__card:hover .btn-colors__overlay {
	background: rgba(0, 0, 0, 0.5);
}

.btn-colors__card-title {
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	line-height: 1.3;
	padding: 0 16px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding-top: 6px;
	padding-bottom: 6px;
}

.btn-colors__card-sub {
	color: #fff;
	font-size: 12px;
	margin-top: 6px;
}

/* ==========================================================================
 * Sizes
 * ========================================================================== */
.btn-sizes {
	padding: 20px 0 0;
}

.btn-sizes__title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	text-align: center;
	margin: 0 0 12px;
	line-height: 1.2;
}

.btn-sizes p {
	font-size: 14px;
	line-height: 1.7;
	color: #555;
	margin: 0 0 10px;
}

.btn-sizes a {
	color: #1a5276;
	text-decoration: none;
}

.btn-sizes a:hover {
	text-decoration: underline;
}

/* ==========================================================================
 * CTA
 * ========================================================================== */
.btn-cta {
	padding: 50px 0;
	text-align: center;
	margin-top: 20px;
}

.btn-cta .btn-container {
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
	padding-top: 50px;
	padding-bottom: 50px;
}

.btn-cta__title {
	font-size: 28px;
	font-weight: 700;
	color: #222;
	margin: 0 0 8px;
	line-height: 1.2;
}

.btn-cta__sub {
	font-size: 14px;
	color: #555;
	margin: 0 0 20px;
}

.btn-cta__btn {
	display: inline-block;
	padding: 12px 28px;
	background: #607d8b;
	color: #fff;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	text-transform: uppercase;
	border: 2px solid #fff;
	transition: background 0.2s, color 0.2s;
}

.btn-cta__btn:hover {
	background: #fff;
	color: #607d8b;
	border-color: #607d8b;
}

/* ==========================================================================
 * Contact Form
 * ========================================================================== */
.btn-contact {
	padding: 40px 0 60px;
}

.btn-contact__wrap {
	max-width: 600px;
}

.btn-contact__heading {
	font-size: 19px;
	font-weight: 400;
	color: #000;
	margin: 0 0 24px;
	line-height: 1.84;
}

.btn-contact__icon {
	margin-right: 6px;
}

.btn-contact__field {
	margin-bottom: 16px;
}

.btn-contact__field label {
	display: block;
	font-size: 14px;
	font-weight: 600;
	color: #333;
	margin-bottom: 6px;
}

.btn-required {
	color: #e53935;
}

.btn-contact__field input,
.btn-contact__field textarea {
	width: 100%;
	padding: 10px 12px;
	font-size: 14px;
	border: 1px solid #ccc;
	background: #fff;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.btn-contact__field input:focus,
.btn-contact__field textarea:focus {
	border-color: #607d8b;
	outline: none;
}

.btn-contact__submit {
	display: inline-block;
	padding: 12px 32px;
	background: #607d8b;
	color: #fff;
	font-size: 14px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	transition: background 0.2s;
}

.btn-contact__submit:hover {
	background: #37474f;
}

/* ==========================================================================
 * Responsive
 * ========================================================================== */
@media (max-width: 960px) {
	.btn-hero__title {
		font-size: 32px;
	}
}

@media (max-width: 640px) {
	.btn-container {
		padding: 0 20px;
	}

	.btn-hero__title {
		font-size: 26px;
	}

	.btn-benefits__title,
	.btn-colors__title,
	.btn-sizes__title,
	.btn-cta__title {
		font-size: 22px;
	}

	.btn-products__grid {
		grid-template-columns: 1fr;
	}

	.btn-colors__grid {
		grid-template-columns: 1fr;
	}

	.btn-colors__card {
		height: 180px;
	}
}
