/* =====================================================
   ITSHOP SHOPIFY PRODUCTS
===================================================== */


/* =====================================================
   SECCIÓN Y CONTENEDOR DE PRODUCTOS
===================================================== */

.itshop-products-section {
	position: relative;

	width: 100vw !important;
	max-width: none !important;

	margin-top: 0 !important;
	margin-right: 0 !important;
	margin-bottom: 0 !important;
	margin-left: calc(50% - 50vw) !important;

	padding: 1px 0;

	background-color: #ffffff;
}

.itshop-products-container {
	width: calc(
		100% -
		(
			var(
				--its-container-padding,
				24px
			) * 2
		)
	) !important;

	max-width: var(
		--its-container-width,
		1280px
	) !important;

	margin-right: auto !important;
	margin-left: auto !important;

	padding: 0 !important;

	box-sizing: border-box;
}

.itshop-products-carousel {
	position: relative;
	width: 100%;
}


/* =====================================================
   GRID DE PRODUCTOS
===================================================== */

.itshop-products-grid {
	display: grid;

	grid-template-columns:
		repeat(4, minmax(0, 1fr));

	align-items: stretch;

	gap: 24px;

	width: 100%;
}


/* =====================================================
   TARJETA DE PRODUCTO
===================================================== */

.itshop-product-card {
	display: flex;
	flex-direction: column;

	min-width: 0;
	height: 100%;

	overflow: hidden;

	background-color: #ffffff;

	border: 1px solid rgba(33, 76, 142, 0.12);
	border-radius: 18px;

	box-shadow:
		0 12px 30px rgba(24, 50, 100, 0.08);

	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease,
		border-color 0.25s ease;
}

.itshop-product-card:hover {
	transform: translateY(-4px);

	border-color: rgba(33, 76, 142, 0.24);

	box-shadow:
		0 18px 38px rgba(24, 50, 100, 0.14);
}


/* =====================================================
   IMAGEN DEL PRODUCTO
===================================================== */

.itshop-product-image {
	position: relative;

	width: 100%;
	aspect-ratio: 1 / 1;

	overflow: hidden;

	background-color: #ffffff !important;
}

.itshop-product-image img {
	display: block;

	width: 100%;
	height: 100%;

	padding: 22px;

	object-fit: contain;

	background-color: #ffffff !important;

	transition:
		transform 0.3s ease;
}

.itshop-product-card:hover
.itshop-product-image img {
	transform: scale(1.04);
}


/* =====================================================
   CONTENIDO DE LA TARJETA
===================================================== */

.itshop-product-content {
	display: flex;
	flex: 1;
	flex-direction: column;

	padding: 20px;

	background-color: #ffffff;
}

.itshop-product-title {
	margin: 0 0 10px;

	color: #183264;

	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
}

.itshop-product-description {
	display: -webkit-box;

	min-height: 66px;
	margin: 0 0 16px;

	overflow: hidden;

	color: #5f6673;

	font-size: 15px;
	line-height: 1.5;

	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.itshop-product-price {
	margin-top: auto;
	margin-bottom: 18px;

	color: #214c8e;

	font-size: 22px;
	font-weight: 700;
	line-height: 1.2;
}


/* =====================================================
   BOTÓN
===================================================== */

.itshop-product-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 46px;

	padding: 12px 18px;

	color: #ffffff;

	background-color: #214c8e;

	border: 1px solid #214c8e;
	border-radius: 10px;

	font-family: inherit;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-align: center;

	cursor: pointer;

	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease;
}

.itshop-product-button:hover {
	color: #ffffff;

	background-color: #2a2757;
	border-color: #2a2757;

	transform: translateY(-1px);
}

.itshop-product-button:focus-visible {
	outline: 3px solid rgba(0, 208, 255, 0.35);
	outline-offset: 3px;
}

.itshop-product-button,
.itshop-product-button:visited{

	background:#214c8e;
	color:#fff;
	text-decoration:none;
}

.itshop-product-button:hover,
.itshop-product-button:focus{

	background:#183264;
	color:#fff;
	text-decoration:none;
}
/* =====================================================
   FLECHAS
   OCULTAS EN ESCRITORIO Y TABLET
===================================================== */

.itshop-products-arrow {
	display: none;
}


/* =====================================================
   TABLETA
===================================================== */

@media (max-width: 980px) {

	.itshop-products-grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 20px;
	}

}

/* =====================================================
   CELULAR: CARRUSEL TÁCTIL CON FLECHAS
===================================================== */

@media (max-width: 767px) {

	.itshop-products-section {
		padding: 40px 0 !important;
	}

	.itshop-products-container {
		width: calc(
			100vw -
			(
				var(
					--its-container-padding,
					18px
				) * 2
			)
		) !important;
	}

	.itshop-products-carousel {
		position: relative;
		width: 100%;
	}

	.itshop-products-grid {
		display: flex;
		align-items: stretch;

		gap: 16px;

		width: calc(
			100% +
			var(
				--its-container-padding,
				18px
			)
		);

		margin-right: calc(
			var(
				--its-container-padding,
				18px
			) * -1
		) !important;

		margin-left: 0 !important;

		padding-right: var(
			--its-container-padding,
			18px
		);

		padding-bottom: 12px;
		padding-left: 0 !important;

		overflow-x: auto;
		overflow-y: hidden;

		scroll-behavior: smooth;
		scroll-snap-type: x mandatory;

		-webkit-overflow-scrolling: touch;
		overscroll-behavior-inline: contain;

		scrollbar-width: none;
	}

	.itshop-products-grid::-webkit-scrollbar {
		display: none;
	}

	.itshop-product-card {
		display: grid;
		grid-template-rows: auto 1fr;

		flex: 0 0 calc(86% - 8px);
		align-self: stretch;

		width: calc(86% - 8px);
		max-width: calc(86% - 8px);
		height: auto !important;

		background-color: #ffffff !important;

		scroll-snap-align: start;
		scroll-snap-stop: always;
	}

	.itshop-product-card:hover {
		transform: none;
	}

	.itshop-product-image {
		aspect-ratio: 1 / 1;
		background-color: #ffffff !important;
	}

	.itshop-product-image img {
		padding: 18px;
		background-color: #ffffff !important;
	}

	.itshop-product-content {
		display: grid;
		grid-template-rows: auto auto 1fr auto;

		height: 100%;
		padding: 18px;

		background-color: #ffffff !important;
	}

	.itshop-product-title {
		display: -webkit-box;

		min-height: 52px;
		margin: 0 0 10px;

		overflow: hidden;

		font-size: 19px;
		line-height: 26px;

		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
	}

	.itshop-product-description {
		display: -webkit-box;

		min-height: 63px;
		margin: 0 0 16px;

		overflow: hidden;

		font-size: 14px;
		line-height: 21px;

		-webkit-box-orient: vertical;
		-webkit-line-clamp: 3;
	}

	.itshop-product-price {
		align-self: end;

		margin-top: auto;
		margin-bottom: 18px;

		font-size: 21px;
	}

	html body .itshop-products-arrow {
		position: absolute !important;
		z-index: 20;
		top: 50%;

		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 40px !important;
		height: 40px !important;
		min-width: 40px !important;
		min-height: 40px !important;

		margin: 0 !important;
		padding: 0 !important;

		color: #ffffff !important;
		background: rgba(33, 76, 142, 0.9) !important;

		border: 0 !important;
		border-radius: 50% !important;

		cursor: pointer;

		transform: translateY(-50%);

		box-shadow:
			0 6px 18px rgba(33, 76, 142, 0.25);
	}

	html body .itshop-products-arrow span {
		display: block;

		margin-top: -3px;

		color: inherit !important;

		font-family: Arial, sans-serif !important;
		font-size: 29px;
		line-height: 1;
	}

	.itshop-products-arrow--prev {
		left: -8px;
	}

	.itshop-products-arrow--next {
		right: -8px;
	}

	.itshop-products-arrow:active {
		transform:
			translateY(-50%)
			scale(0.95);
	}
}

/* =====================================================
   CORRECCIONES FINALES DE CONTENEDOR
===================================================== */

.itshop-products-section {
	position: relative !important;
	left: 50% !important;

	width: 100vw !important;
	max-width: 100vw !important;

	margin: 0 0 0 -50vw !important;
	padding: 24px 0 !important;

	background-color: #ffffff !important;
}

.itshop-products-container {
	width: min(
		calc(
			100vw -
			(
				var(
					--its-container-padding,
					24px
				) * 2
			)
		),
		var(
			--its-container-width,
			1280px
		)
	) !important;

	max-width: none !important;

	margin-right: auto !important;
	margin-left: auto !important;
	padding: 0 !important;
}

.itshop-products-carousel,
.itshop-products-grid {
	margin-left: 0 !important;
	padding-left: 0 !important;
}

/* Ocultar las flechas por defecto */
html body .itshop-products-arrow {
	display: none !important;
}


/* =====================================================
   VISIBILIDAD DE FLECHAS
===================================================== */

/* Escritorio y tableta */

html body button.itshop-products-arrow {
	display: none !important;
}


/* Celular */

@media screen and (max-width: 767px) {

	html body button.itshop-products-arrow {
		position: absolute !important;
		z-index: 50 !important;

		/*
		 * Se suben para quedar sobre la zona de imagen
		 * y no cubrir el nombre del producto.
		 */
		top: 34% !important;

		display: inline-flex !important;
		align-items: center !important;
		justify-content: center !important;

		width: 42px !important;
		height: 42px !important;
		min-width: 42px !important;
		min-height: 42px !important;
		max-width: 42px !important;
		max-height: 42px !important;

		margin: 0 !important;
		padding: 0 !important;

		color: #ffffff !important;
		background: rgba(33, 76, 142, 0.92) !important;

		border: 0 !important;
		border-radius: 50% !important;

		outline: none !important;

		opacity: 1 !important;
		visibility: visible !important;
		pointer-events: auto !important;

		cursor: pointer;

		transform: translateY(-50%) !important;

		box-shadow:
			0 6px 18px rgba(33, 76, 142, 0.28) !important;

		appearance: none !important;
		-webkit-appearance: none !important;
		-webkit-tap-highlight-color: transparent !important;

		user-select: none;
		-webkit-user-select: none;

		touch-action: manipulation;
	}

	html body button.itshop-products-arrow:hover,
	html body button.itshop-products-arrow:focus,
	html body button.itshop-products-arrow:focus-visible {
		color: #ffffff !important;
		background: rgba(33, 76, 142, 0.96) !important;

		border: 0 !important;
		outline: none !important;

		box-shadow:
			0 6px 18px rgba(33, 76, 142, 0.28) !important;
	}

	html body button.itshop-products-arrow--prev {
		left: 6px !important;
	}

	html body button.itshop-products-arrow--next {
		right: 6px !important;
	}

	html body button.itshop-products-arrow span {
		display: block !important;

		margin: -3px 0 0 !important;
		padding: 0 !important;

		color: #ffffff !important;

		font-family: Arial, sans-serif !important;
		font-size: 30px !important;
		font-weight: 400 !important;
		line-height: 1 !important;

		pointer-events: none;
		user-select: none;
	}

	html body button.itshop-products-arrow:active {
		outline: none !important;

		transform:
			translateY(-50%)
			scale(0.94) !important;
	}
}

/* =====================================================
   PRODUCTO INDIVIDUAL
===================================================== */

.itshop-single-product {
	position: relative;
	left: 50%;

	width: 100vw;
	max-width: 100vw;

	margin: 0 0 0 -50vw;
	padding: 64px 0 80px;

	background-color: #ffffff;
}

.itshop-single-product__container {
	width: min(
		calc(
			100vw -
			(
				var(
					--its-container-padding,
					24px
				) * 2
			)
		),
		var(
			--its-container-width,
			1280px
		)
	);

	margin-inline: auto;
}


/* =====================================================
   DISTRIBUCIÓN PRINCIPAL
===================================================== */

.itshop-single-product__grid {
	display: grid;

	grid-template-columns:
		minmax(0, 1.08fr)
		minmax(340px, 0.92fr);

	align-items: start;
	gap: 64px;
}


/* =====================================================
   GALERÍA
===================================================== */

.itshop-single-product__gallery {
	min-width: 0;
}

.itshop-single-product__main-image {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	aspect-ratio: 1 / 1;

	overflow: hidden;

	background-color: #ffffff;

	border: 1px solid rgba(33, 76, 142, 0.12);
	border-radius: 18px;

	box-shadow:
		0 12px 32px rgba(24, 50, 100, 0.07);
}

.itshop-single-product__main-image img {
	display: block;

	width: 100%;
	height: 100%;

	padding: 34px;

	object-fit: contain;

	background-color: #ffffff;
}


/* =====================================================
   MINIATURAS
===================================================== */

.itshop-single-product__thumbnails {
	display: grid;

	grid-template-columns:
		repeat(5, minmax(0, 1fr));

	gap: 12px;

	margin-top: 16px;
}

.itshop-single-product__thumbnail {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	aspect-ratio: 1 / 1;

	margin: 0;
	padding: 6px;

	overflow: hidden;

	background-color: #ffffff;

	border: 1px solid rgba(33, 76, 142, 0.16);
	border-radius: 10px;

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	transition:
		border-color 0.2s ease,
		box-shadow 0.2s ease,
		transform 0.2s ease;
}

.itshop-single-product__thumbnail:hover {
	border-color: #214c8e;

	box-shadow:
		0 6px 16px rgba(33, 76, 142, 0.12);

	transform: translateY(-2px);
}

.itshop-single-product__thumbnail img {
	display: block;

	width: 100%;
	height: 100%;

	padding: 3px;

	object-fit: contain;

	background-color: #ffffff;
}


/* =====================================================
   RESUMEN DEL PRODUCTO
===================================================== */

.itshop-single-product__summary {
	position: sticky;
	top: 32px;

	min-width: 0;
	padding: 32px;

	background-color: #ffffff;

	border: 1px solid rgba(33, 76, 142, 0.12);
	border-radius: 18px;

	box-shadow:
		0 14px 36px rgba(24, 50, 100, 0.08);
}

.itshop-single-product__vendor {
	margin-bottom: 8px;

	color: #214c8e;

	font-size: 15px;
	font-weight: 700;
	line-height: 22px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.itshop-single-product__title {
	margin: 0 0 12px !important;

	color: #2a2757 !important;

	font-size: clamp(34px, 4vw, 48px) !important;
	font-weight: 700 !important;
	line-height: 1.08 !important;
	letter-spacing: -0.025em;
}

.itshop-single-product__type {
	margin-bottom: 24px;

	color: #5f6670;

	font-size: 16px;
	line-height: 24px;
}


/* =====================================================
   PRECIO
===================================================== */

.itshop-single-product__price {
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;

	gap: 10px;

	margin-bottom: 16px;
}

.itshop-single-product__price-old {
	color: #8b919b;

	font-size: 18px;
	font-weight: 400;
	line-height: 24px;
	text-decoration: line-through;
}

.itshop-single-product__price-current {
	color: #214c8e;

	font-size: 32px;
	font-weight: 700;
	line-height: 40px;
}


/* =====================================================
   DISPONIBILIDAD
===================================================== */

.itshop-single-product__availability {
	display: inline-flex;
	align-items: center;

	margin-bottom: 22px;
	padding: 7px 12px;

	border-radius: 999px;

	font-size: 14px;
	font-weight: 700;
	line-height: 20px;
}

.itshop-single-product__availability.is-available {
	color: #116329;

	background-color: #e8f7ec;
}

.itshop-single-product__availability.is-unavailable {
	color: #8a1c1c;

	background-color: #fceaea;
}


/* =====================================================
   DESCRIPCIÓN BREVE
===================================================== */

.itshop-single-product__excerpt {
	margin: 0 0 28px !important;

	color: #5f6670 !important;

	font-size: 17px !important;
	line-height: 26px !important;
}


/* =====================================================
   BOTÓN DE COMPRA
===================================================== */

.itshop-single-product__buy-button {
	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	min-height: 54px;

	margin: 0;
	padding: 14px 24px;

	color: #ffffff !important;
	background-color: #214c8e !important;

	border: 1px solid #214c8e !important;
	border-radius: 10px !important;

	font-family: inherit;
	font-size: 17px;
	font-weight: 700;
	line-height: 24px;
	text-align: center;
	text-decoration: none !important;

	cursor: pointer;

	appearance: none;
	-webkit-appearance: none;

	transition:
		background-color 0.25s ease,
		border-color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.itshop-single-product__buy-button:hover {
	color: #ffffff !important;

	background-color: #2a2757 !important;
	border-color: #2a2757 !important;

	transform: translateY(-2px);

	box-shadow:
		0 10px 24px rgba(42, 39, 87, 0.18);
}

.itshop-single-product__buy-button:disabled {
	cursor: not-allowed;

	opacity: 0.55;

	transform: none;
}


/* =====================================================
   DETALLES Y DESCRIPCIÓN COMPLETA
===================================================== */

.itshop-single-product__details {
	margin-top: 72px;
	padding-top: 56px;

	border-top: 1px solid rgba(33, 76, 142, 0.14);
}

.itshop-single-product__details h2 {
	margin: 0 0 32px !important;

	color: #2a2757 !important;

	font-size: 36px !important;
	line-height: 44px !important;
}


/* =====================================================
   CONTENIDO HTML DE SHOPIFY
===================================================== */

.itshop-single-product__description {
	width: 100%;
	max-width: none;

	color: #30343b;

	font-size: 17px;
	line-height: 1.65;
}

.itshop-single-product__description > *:first-child {
	margin-top: 0;
}

.itshop-single-product__description p {
	margin: 0 0 18px !important;

	color: #30343b !important;

	font-size: 17px !important;
	line-height: 1.65 !important;
}

.itshop-single-product__description img {
	display: block;

	width: auto;
	max-width: 100%;
	height: auto;

	margin: 28px auto;

	background-color: #ffffff;

	border-radius: 12px;
}

/* =====================================================
   TABLAS DE DESCRIPCIÓN IMPORTADAS DESDE SHOPIFY
===================================================== */

.itshop-single-product__details,
.itshop-single-product__description {
	display: block;

	width: 100% !important;
	max-width: none !important;
	min-width: 0;
}

.itshop-single-product__description table,
.itshop-single-product__description table[style] {
	display: table !important;

	width: 100% !important;
	min-width: 100% !important;
	max-width: none !important;

	margin: 28px 0 !important;

	border-spacing: 0;
	border-collapse: collapse;

	table-layout: fixed;

	background-color: #ffffff;
}

.itshop-single-product__description tbody {
	display: table-row-group;

	width: 100%;
}

.itshop-single-product__description tr {
	display: table-row;

	width: 100%;
}

.itshop-single-product__description th,
.itshop-single-product__description td {
	box-sizing: border-box;

	padding: 9px 14px;

	text-align: left;
	vertical-align: middle;

	white-space: normal;
	overflow-wrap: anywhere;
	word-break: normal;

	border: 1px solid #dfe4e8;
}

.itshop-single-product__description th,
.itshop-single-product__description td:first-child {
	width: 34%;
}

.itshop-single-product__description td[colspan] {
	width: 100% !important;
	padding-top: 10px;
	padding-bottom: 10px;
}



.itshop-single-product__description th {
	width: 34%;

	color: #183264;

	background-color: #f6f8fb;

	font-weight: 700;
}


/* =====================================================
   TABLETA
===================================================== */

@media (max-width: 980px) {

	.itshop-single-product {
		padding: 48px 0 64px;
	}

	.itshop-single-product__grid {
		grid-template-columns:
			minmax(0, 1fr)
			minmax(300px, 0.9fr);

		gap: 36px;
	}

	.itshop-single-product__summary {
		padding: 26px;
	}

	.itshop-single-product__thumbnails {
		grid-template-columns:
			repeat(4, minmax(0, 1fr));
	}

}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 767px) {

	.itshop-single-product {
		padding: 32px 0 56px;
	}

	.itshop-single-product__grid {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.itshop-single-product__main-image {
		border-radius: 14px;
	}

	.itshop-single-product__main-image img {
		padding: 20px;
	}

	.itshop-single-product__thumbnails {
		display: flex;

		gap: 10px;

		margin-top: 12px;
		padding-bottom: 6px;

		overflow-x: auto;

		scroll-snap-type: x mandatory;
		scrollbar-width: none;
	}

	.itshop-single-product__thumbnails::-webkit-scrollbar {
		display: none;
	}

	.itshop-single-product__thumbnail {
		flex: 0 0 78px;

		width: 78px;
		height: 78px;

		scroll-snap-align: start;
	}

	.itshop-single-product__summary {
		position: static;

		padding: 22px;

		border-radius: 14px;
	}

	.itshop-single-product__title {
		font-size: 34px !important;
		line-height: 40px !important;
	}

	.itshop-single-product__price-current {
		font-size: 28px;
		line-height: 36px;
	}

	.itshop-single-product__excerpt {
		font-size: 16px !important;
		line-height: 24px !important;
	}

	.itshop-single-product__details {
		margin-top: 48px;
		padding-top: 40px;
	}

	.itshop-single-product__details h2 {
		font-size: 30px !important;
		line-height: 38px !important;
	}

	.itshop-single-product__description {
		font-size: 16px;
	}

	.itshop-single-product__description p {
		font-size: 16px !important;
		line-height: 1.6 !important;
	}

	.itshop-single-product__description {
	width: 100%;
	overflow-x: auto;
    }
    
    .itshop-single-product__description table,
    .itshop-single-product__description table[style] {
    	display: table !important;
    
    	width: 100% !important;
    	min-width: 680px !important;
    
    	table-layout: fixed;
    }
    
    .itshop-single-product__description th,
    .itshop-single-product__description td {
    	white-space: normal;
    }

}


/* =====================================================
   GALERÍA: SOBRESCRIBIR ESTILOS DE ASTRA
===================================================== */

html body .itshop-single-product__thumbnail,
html body .itshop-single-product__thumbnail:hover,
html body .itshop-single-product__thumbnail:focus,
html body .itshop-single-product__thumbnail:focus-visible,
html body .itshop-single-product__thumbnail:active {
	color: inherit !important;

	background-color: #ffffff !important;

	border-color: rgba(33, 76, 142, 0.18) !important;

	outline: none !important;

	box-shadow: none !important;
}

html body .itshop-single-product__thumbnail:hover {
	border-color: #214c8e !important;

	box-shadow:
		0 6px 16px rgba(33, 76, 142, 0.14) !important;

	transform: translateY(-2px);
}

html body .itshop-single-product__thumbnail.is-active {
	border-color: #214c8e !important;

	box-shadow:
		0 0 0 2px rgba(33, 76, 142, 0.16) !important;
}





.itshop-single-product__main-image img {
	opacity: 1;

	transition:
		opacity 0.18s ease,
		transform 0.25s ease;
}

.itshop-single-product__main-image img.is-changing {
	opacity: 0;
	transform: scale(0.985);
}




/* =====================================================
   BENEFICIOS DE COMPRA
===================================================== */

.itshop-single-product__purchase-info {
	display: grid;
	gap: 16px;

	margin-top: 24px;
	padding-top: 24px;

	border-top: 1px solid rgba(33, 76, 142, 0.14);
}

.itshop-single-product__benefit {
	display: grid;
	grid-template-columns: 38px minmax(0, 1fr);
	align-items: start;

	gap: 12px;
}

.itshop-single-product__benefit-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	width: 38px;
	height: 38px;

	color: #214c8e;

	background-color: rgba(33, 76, 142, 0.08);

	border-radius: 50%;

	font-size: 16px;
}

.itshop-single-product__benefit div {
	display: grid;
	gap: 2px;
}

.itshop-single-product__benefit strong {
	color: #2a2757;

	font-size: 15px;
	font-weight: 700;
	line-height: 21px;
}

.itshop-single-product__benefit span:not(
	.itshop-single-product__benefit-icon
) {
	color: #6b7280;

	font-size: 13px;
	line-height: 19px;
}

/* =====================================================
   MÉTODOS DE PAGO
===================================================== */

.itshop-single-product__payment-methods{

	display:flex;
	align-items:center;
	gap:14px;

	margin-top:8px;
}

.itshop-single-product__payment-methods img{

	display:block;

	height:36px;
	width:auto;

	object-fit:contain;

	transition:transform .25s ease;

}

.itshop-single-product__payment-methods img:hover{

	transform:translateY(-2px);

}


/* =====================================================
   BENEFICIOS EN CELULAR
===================================================== */

@media (max-width: 767px) {

	.itshop-single-product__purchase-info {
		margin-top: 22px;
		padding-top: 22px;
	}

	.itshop-single-product__benefit {
		grid-template-columns: 36px minmax(0, 1fr);
	}

	.itshop-single-product__benefit-icon {
		width: 36px;
		height: 36px;
	}

}


.itshop-single-product__buy-button,
.itshop-single-product__buy-button:hover,
.itshop-single-product__buy-button:focus {
	text-decoration: none !important;
}



/* =====================================================
   ACCIONES DEL PRODUCTO
===================================================== */

.itshop-single-product__actions {
	display: grid;
	gap: 12px;

	width: 100%;
}

.itshop-single-product__actions
.itshop-single-product__buy-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;

	gap: 10px;
}

.itshop-single-product__actions
.itshop-single-product__buy-button i {
	font-size: 18px;
	line-height: 1;
}

.itshop-single-product__whatsapp-button,
.itshop-single-product__whatsapp-button:visited {
	color: #ffffff !important;
	background-color: #214c8e !important;
	border-color: #214c8e !important;
}

.itshop-single-product__whatsapp-button:hover,
.itshop-single-product__whatsapp-button:focus {
	color: #ffffff !important;
	background-color: #2a2757 !important;
	border-color: #2a2757 !important;
}

.itshop-single-product__cart-button {
	color: #214c8e !important;
	background-color: #ffffff !important;

	border: 2px solid #214c8e !important;
}

.itshop-single-product__cart-button:hover,
.itshop-single-product__cart-button:focus {
	color: #ffffff !important;
	background-color: #214c8e !important;
	border-color: #214c8e !important;
}
/* =====================================================
   Aquí termina css d eproducto individual
===================================================== */


.itshop-product-button,
.itshop-product-button:link,
.itshop-product-button:visited,
.itshop-product-button:hover,
.itshop-product-button:focus,
.itshop-product-button:active{

	text-decoration: none !important;

}

/* =====================================================
   OCULTAR HEADER NATIVO DE ASTRA
   SOLO EN LA TIENDA MINORISTA
===================================================== */

/* =====================================================
   OCULTAR HEADER DE ASTRA
   EN PÁGINAS DEL PLUGIN
===================================================== */

body.itshop-plugin-page .ast-main-header-wrap {
	display: none !important;
}