/** Shopify CDN: Minification failed

Line 17:13 Expected identifier but found whitespace
Line 17:15 Unexpected "{"
Line 17:24 Expected ":"
Line 17:50 Expected ":"
Line 18:16 Expected identifier but found whitespace
Line 18:18 Unexpected "{"
Line 18:27 Expected ":"
Line 18:56 Expected ":"

**/
.custom-features-section {
	background-color: #ffe8e2;
	position: relative;
	text-align: center;
	padding-top: {{ section.settings.padding_top }}px;
	padding-bottom: {{ section.settings.padding_bottom }}px;
	padding-left: 2rem;
	padding-right: 2rem;
}

.custom-features__title {
	font-size: 1.9rem;
	font-weight: 510;
	margin-bottom: 3rem;
	color: #000;
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.custom-features__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	gap: 40px;
	justify-items: center;
	align-items: start;
	max-width: 800px;
	margin: 0 auto;
}

.custom-features__grid.grid-single {
	display: flex;
	justify-content: center;
}

.custom-feature-item {
	max-width: 200px;
	text-align: center;
}

.custom-feature-item__icon {
	width: 80px;
	height: auto;
	object-fit: contain;
	margin: 0 auto 10px;
	display: block;
}

.custom-feature-item__caption {
	font-size: 1.6rem;
	color: #333;
	line-height: 1.4;
}

/* Tamaños escritorio */
.icon-size-small .custom-feature-item__icon {
	width: 60px;
}
.icon-size-medium .custom-feature-item__icon {
	width: 100px;
}
.icon-size-large .custom-feature-item__icon {
	width: 140px;
}

/* Responsive: móviles */
@media screen and (max-width: 768px) {

	.custom-features__grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr); /* 2 columnas */
		justify-content: center; /* centrado de contenido */
		gap: 20px;
	}

	.custom-features__grid > .custom-feature-item:nth-child(odd):last-child {
		grid-column: 1 / -1; /* ocupa ambas columnas */
		justify-self: center; /* centra horizontalmente */
	}

	.custom-feature-item__icon {
		width: 60px;
	}

	.custom-feature-item__caption {
		font-size: 1.4rem;
	}


	/*ICONS Tamañps*/
	.icon-mobile-size-small .custom-feature-item__icon {
		width: 50px;
	}
	.icon-mobile-size-medium .custom-feature-item__icon {
		width: 80px;
	}
	.icon-mobile-size-large .custom-feature-item__icon {
		width: 100px;
	}
}

