
/**
 * Frontend Premium Styles for Ideal Google Reviews (Trustindex Inspired)
 */
@import url("https://cdn-ilehoei.nitrocdn.com/NqOFCaDyOyyQnLwhivFepYBieDhdJNwm/assets/static/source/rev-814abf4/fonts.googleapis.com/95e70ed5878469d7c50cf1caa3993597.css2");

.igr-main-wrapper {
	font-family: "Outfit", sans-serif;
	--igr-bg: #fff;
	--igr-text: #333;
	--igr-shadow: 0 5px 25px rgba(0, 0, 0, .06);
	--igr-border-radius: 12px;
	margin: 30px auto;
	max-width: 1200px;
	width: 100%;
}

/* Summary Block */
.igr-summary-block {
	display: flex;
	justify-content: center;
	margin-bottom: 30px;
	text-align: center;
	width: 100%;
}

.igr-summary-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 5px;
}

.igr-summary-title {
	font-weight: 600;
	font-size: 24px;
	letter-spacing: 1px;
	color: var(--igr-summary-title-color, #333) !important;
	font-family: var(--igr-summary-title-font, "Outfit", sans-serif) !important;
}

.igr-summary-stars {
	display: flex;
	justify-content: center;
	gap: 4px;
	color: var(--igr-primary);
}

.igr-summary-stars .igr-star-icon {
	width: 24px;
	height: 24px;
	object-fit: contain;
}

.igr-summary-info {
	font-size: 14px;
	color: var(--igr-summary-info-color, #555) !important;
	font-family: var(--igr-summary-info-font, "Outfit", sans-serif) !important;
}

.igr-google-logo-large {
	width: 100px;
	margin-top: 10px;
}

/* Container & Layouts */
.igr-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
	/* Center cards */
	align-items: flex-start;
	/* Evita que las tarjetas se estiren al tamaño de la más alta */
	width: 100%;
}

/* Review Card - Standard */
.igr-review-card {
	background: var(--igr-card-bg, var(--igr-bg)) !important;
	border-radius: var(--igr-border-radius);
	padding: 20px;
	/* Reduced padding */
	box-shadow: var(--igr-shadow);
	flex: 0 1 280px;
	/* Smaller cards */
	max-width: 300px;
	transition: all .3s cubic-bezier(.25, .8, .25, 1);
	border: 1px solid rgba(0, 0, 0, .05);
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
	position: relative;
}

.igr-review-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 12px 30px rgba(0, 0, 0, .1);
}

.igr-review-header {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
}

.igr-author-photo {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	margin-right: 12px;
}

.igr-author-info {
	flex: 1;
	margin-top: 15px !important;
}

/* Ajuste: Alinear imagen arriba y mover estrellas debajo de la imagen en Estilo Estándar (Todos los layouts) */
.igr-main-wrapper.igr-card-standard .igr-review-header {
	position: relative;
	flex-direction: row;
	align-items: flex-start;
	text-align: left;
}

.igr-main-wrapper.igr-card-standard .igr-author-info {
	width: auto;
	flex: 1;
	margin-top: 0 !important;
	padding-right: 28px;
	box-sizing: border-box;
}

.igr-main-wrapper.igr-card-standard .igr-review-header > img.igr-author-photo {
	display: block;
	width: 50px !important;
	height: 50px !important;
	min-width: 50px !important;
	max-width: 50px !important;
	flex: 0 0 50px !important;
	margin-right: 12px;
	margin-top: 0 !important;
	margin-bottom: 0 !important;
	object-fit: cover;
}

.igr-main-wrapper.igr-card-standard .igr-stars {
	position: static !important;
	margin-left: 0 !important;
	margin-top: 6px !important;
	width: auto;
}

.igr-main-wrapper.igr-card-standard .igr-review-header > img.igr-google-logo {
	position: absolute;
	top: 0;
	right: 0;
}

.igr-author-name {
	display: block;
	font-weight: 600;
	font-size: 15px;
	color: var(--igr-card-author-color, #1d2327) !important;
	font-family: var(--igr-card-font, inherit) !important;
}

.igr-review-date {
	display: block;
	font-size: 12px;
	color: var(--igr-card-date-color, #8c8f94) !important;
	margin-bottom: 4px;
	font-family: var(--igr-card-font, inherit) !important;
}

.igr-stars {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	margin-top: 4px;
	width: 100%;
	gap: 2px !important;
}

.igr-stars .igr-star-icon {
	width: 16px;
	height: 16px;
	object-fit: contain;
}

.igr-stars .igr-star-icon.inactive {
	opacity: .2;
	filter: grayscale(1);
}

.igr-stars .active {
	color: var(--igr-primary);
}

.igr-google-logo {
	width: 20px;
	height: 20px;
}

/* Card Style: Top Image */
.igr-card-top_image .igr-review-card {
	padding-top: 40px;
	margin-top: 25px;
	overflow: visible;
}

.igr-author-photo-top {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 50px;
}

.igr-author-photo-top img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border: 3px solid #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, .1);
}

.igr-google-badge {
	position: absolute;
	bottom: -5px;
	right: -5px;
	background: #fff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .1);
}

.igr-google-badge img {
	width: 12px;
	height: 12px;
	border: none;
}

.igr-card-top_image .igr-review-header {
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.igr-card-top_image .igr-stars {
	justify-content: center;
}

/* Body */
.igr-review-body {
	flex: 1 0 auto;
	display: flex;
	flex-direction: column;
}

.igr-read-more-wrapper {
	margin-top: auto !important;
}

.igr-review-text {
	font-size: 14px;
	line-height: 1.5;
	color: var(--igr-card-body-color, #444) !important;
	margin: 0;
	font-family: var(--igr-card-font, inherit) !important;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	/* 4 lines limit */
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.igr-read-more {
	color: var(--igr-card-link-color, #8c8f94) !important;
	font-size: 13px;
	text-decoration: none !important;
	font-weight: 600;
	display: inline-block;
	margin-top: 8px;
	transition: none !important;
	font-family: var(--igr-card-font, inherit);
}

.igr-read-more:hover {
	color: #8c8f94 !important;
	text-decoration: none !important;
	background: none !important;
}

/* Layouts */
.igr-slider-wrapper {
	position: relative;
	width: 100%;
}

/* Slider Left Layout Styles */
.igr-wrapper-slider_left .igr-layout-content {
	display: flex;
	align-items: flex-start;
	gap: 15px;
}

.igr-wrapper-slider_left .igr-summary-block {
	flex: 0 0 250px;
	/* Fixed width for the left summary */
	margin-bottom: 0;
	min-height: 265px;
	/* Misma altura que las tarjetas */
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.igr-wrapper-slider_left .igr-slider-wrapper {
	flex: 1;
	min-width: 0;
}

.igr-layout-slider, .igr-layout-slider_left {
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
	padding-bottom: 25px;
	padding-top: 10px;
	justify-content: center;
	/* Centrado por defecto para evitar salto visual (JS lo pasa a flex-start si hay overflow) */
	align-items: flex-start;
	/* Evita que las tarjetas se estiren al tamaño de la más alta por defecto */
	scroll-snap-type: x mandatory;
	-ms-overflow-style: none;
	scrollbar-width: none;
	width: 100%;
	display: flex;
}

/* Tamaño base igualado con expansión independiente para escritorio y tablets */
@media (min-width: 768px) {
	.igr-main-wrapper.igr-wrapper-slider .igr-container.igr-layout-slider {
		align-items: stretch !important;
		display: flex !important;
	}
	
	.igr-main-wrapper .igr-container.igr-layout-slider_left {
		align-items: flex-start !important;
		display: flex !important;
	}
	
	.igr-main-wrapper .igr-container.igr-layout-slider .igr-review-card, .igr-main-wrapper .igr-container.igr-layout-slider_left .igr-review-card {
		min-height: 280px !important;
		height: auto !important;
		display: flex !important;
		flex-direction: column !important;
	}
	
	/* Aseguramos uniformidad en el diseño de resumen (arriba e izquierda) */
	.igr-main-wrapper.igr-wrapper-slider .igr-container.igr-layout-slider .igr-review-card {
		min-height: 290px !important;
		height: auto !important;
		display: flex !important;
		flex-direction: column !important;
		align-self: stretch !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider_left .igr-container.igr-layout-slider_left .igr-review-card {
		min-height: 290px !important;
		height: auto !important;
		display: flex !important;
		flex-direction: column !important;
		align-self: flex-start !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-container.igr-layout-slider {
		align-items: flex-start !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-container.igr-layout-slider .igr-review-card {
		min-height: 270px !important;
		height: 270px !important;
		align-self: flex-start !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-container.igr-layout-slider .igr-review-card.igr-review-expanded {
		height: auto !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-review-header {
		min-height: auto;
		padding-bottom: 0;
		box-sizing: border-box;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-stars {
		position: static !important;
		left: auto;
		top: auto;
		margin-left: 0 !important;
		margin-top: 6px !important;
		width: auto;
	}
	
	/* Empujamos el botón Leer más al fondo de la tarjeta para que esté alineado en el min-height */
	.igr-main-wrapper.igr-card-top_image .igr-container.igr-layout-slider, .igr-main-wrapper.igr-card-top_image .igr-container.igr-layout-slider_left {
		align-items: flex-start !important;
	}
	
	.igr-main-wrapper.igr-card-top_image .igr-container.igr-layout-slider .igr-review-card, .igr-main-wrapper.igr-card-top_image .igr-container.igr-layout-slider_left .igr-review-card {
		align-self: flex-start !important;
		height: auto !important;
	}
	
	.igr-main-wrapper .igr-review-card .igr-read-more {
		margin-top: auto !important;
	}
}

.igr-layout-slider::-webkit-scrollbar, .igr-layout-slider_left::-webkit-scrollbar {
	display: none;
}

.igr-layout-slider .igr-review-card, .igr-layout-slider_left .igr-review-card {
	flex: 0 0 250px;
	scroll-snap-align: center;
}

/* Slider Nav */
.igr-main-wrapper .igr-slider-prev, .igr-main-wrapper .igr-slider-next {
	position: absolute;
	top: 165px !important;
	bottom: auto !important;
	/* Centrado fijo basado en la altura inicial para evitar que se bajen al expandir la tarjeta */
	transform: translateY(-50%);
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--igr-btn-bg, #fff) !important;
	border: 1px solid #eee !important;
	box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
	display: none;
	/* Hidden by default, JS shows them */
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 10;
	transition: all .2s ease;
	padding: 0;
	color: #333 !important;
}

.igr-slider-prev:hover, .igr-slider-next:hover {
	background: var(--igr-btn-hover, #f0f0f0) !important;
	color: #333 !important;
	border-color: #ddd !important;
}

.igr-main-wrapper .igr-slider-prev.igr-slider-disabled, .igr-main-wrapper .igr-slider-prev:disabled {
	opacity: .45;
	cursor: not-allowed;
	pointer-events: none;
}

.igr-slider-prev {
	left: -20px;
}

.igr-slider-next {
	right: -20px;
}

@media (max-width: 767px) {
	.igr-main-wrapper .igr-slider-prev, .igr-main-wrapper .igr-slider-next {
		display: flex !important;
		width: 34px !important;
		height: 34px !important;
		top: 185px !important;
		background: rgba(255, 255, 255, .9) !important;
		border: 1px solid #ddd !important;
		z-index: 100 !important;
		box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
		margin-left: -10px !important;
		margin-right: -10px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard .igr-slider-prev, .igr-wrapper-slider.igr-card-standard .igr-slider-next {
		top: 50% !important;
	}
	
	.igr-slider-prev {
		left: -12px !important;
	}
	
	.igr-slider-next {
		right: -12px !important;
	}
	
	.igr-main-wrapper {
		padding: 0 20px !important;
		margin: 20px auto !important;
		width: calc(100% - 40px) !important;
		box-sizing: border-box;
		position: relative;
	}
	
	.igr-author-photo-top {
		margin-top: 15px !important;
	}
	
	.igr-wrapper-slider_left .igr-layout-content {
		flex-direction: column;
		gap: 15px;
	}
	
	.igr-wrapper-slider_left .igr-summary-block {
		flex: none;
		width: 100%;
		margin-bottom: 0 !important;
		min-height: auto;
	}
	
	.igr-wrapper-slider_left.igr-card-standard .igr-layout-content {
		gap: 6px;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image.igr-summary-left .igr-summary-block {
		margin-bottom: 32px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image.igr-summary-left .igr-summary-content {
		transform: none;
	}
	
	.igr-layout-slider, .igr-layout-slider_left {
		display: flex !important;
		/* Switch to flex for better card sizing */
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 15px !important;
		padding: 10px 0 25px 0 !important;
		/* Padding mínimo, el espacio real se maneja con margin en la tarjeta para evitar recortes */
		margin: 0 !important;
		overflow-x: auto;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}
	
	.igr-layout-slider::-webkit-scrollbar, .igr-layout-slider_left::-webkit-scrollbar {
		display: none;
	}
	
	.igr-layout-slider .igr-review-card, .igr-layout-slider_left .igr-review-card {
		flex: 0 0 100% !important;
		/* Una tarjeta completa en móviles reales */
		max-width: 90% !important;
		margin: 0 !important;
		scroll-snap-align: center;
		scroll-snap-stop: always;
		padding: 25px 20px !important;
		border: none !important;
		margin-top: 50px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image .igr-layout-slider_left .igr-review-card {
		padding-top: 42px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard .igr-layout-slider .igr-review-card {
		margin-top: 0 !important;
	}
	
	.igr-wrapper-slider_left.igr-card-standard .igr-layout-slider_left .igr-review-card {
		margin-top: 25px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard .igr-layout-slider {
		padding-top: 0 !important;
	}
	
	.igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-layout-slider {
		padding-top: 18px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-layout-slider {
		padding-top: 18px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-slider-prev, .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-slider-next {
		top: 170px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-slider-prev, .igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-slider-next {
		top: 155px !important;
	}
	
	.igr-wrapper-slider.igr-card-top_image.igr-summary-top .igr-slider-prev, .igr-wrapper-slider.igr-card-top_image.igr-summary-top .igr-slider-next {
		top: 205px !important;
	}
	
	.igr-wrapper-slider.igr-card-top_image.igr-summary-none .igr-slider-prev, .igr-wrapper-slider.igr-card-top_image.igr-summary-none .igr-slider-next {
		top: 205px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image .igr-slider-prev, .igr-wrapper-slider_left.igr-card-top_image .igr-slider-next {
		top: 195px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-standard .igr-slider-prev, .igr-wrapper-slider_left.igr-card-standard .igr-slider-next {
		top: 165px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard .igr-summary-block {
		margin-bottom: 25px !important;
	}
	
	.igr-summary-block {
		margin-bottom: 10px !important;
	}
	
	/* Mayor separación entre resumen e imagen, y entre imagen y nombre solo en diseño resumen arriba */
	.igr-wrapper-slider .igr-summary-block {
		margin-bottom: 22px !important;
	}
	
	.igr-wrapper-slider.igr-card-top_image .igr-layout-slider .igr-review-card {
		padding-top: 50px !important;
	}
	
	.igr-card-standard .igr-layout-slider, .igr-card-standard .igr-layout-slider_left {
		padding-top: 0 !important;
	}
	
	.igr-wrapper-slider.igr-summary-top .igr-summary-block, .igr-wrapper-slider_left.igr-summary-left .igr-summary-block {
		margin-bottom: 8px !important;
	}
	
	.igr-wrapper-slider_left.igr-summary-left .igr-layout-content {
		gap: 2px !important;
	}
	
	.igr-wrapper-slider.igr-summary-top .igr-layout-slider .igr-review-card, .igr-wrapper-slider_left.igr-summary-left .igr-layout-slider_left .igr-review-card {
		margin-top: 38px !important;
	}
	
	.igr-wrapper-slider_left.igr-summary-left .igr-summary-block {
		margin-bottom: 0 !important;
	}
	
	.igr-wrapper-slider_left.igr-summary-left .igr-layout-slider_left .igr-review-card {
		margin-top: 30px !important;
	}
}

/* Badge Layout */
.igr-wrapper-badge {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.igr-wrapper-badge .igr-layout-content {
	display: none;
	width: 320px;
	max-height: 400px;
	overflow-y: auto;
	background: transparent;
	margin-bottom: 15px;
}

.igr-wrapper-badge.active .igr-layout-content {
	display: block;
	animation: igr-fade-up .3s ease;
}

.igr-wrapper-badge .igr-badge-trigger {
	background: #fff;
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, .15);
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	z-index: 10;
}

/* Sidebar Layout */
.igr-wrapper-sidebar {
	position: fixed;
	top: 0;
	right: 0;
	width: 320px;
	height: 100vh;
	background: #fff;
	box-shadow: -5px 0 30px rgba(0, 0, 0, .1);
	z-index: 9998;
}

.igr-wrapper-sidebar .igr-layout-content {
	display: flex;
	flex-direction: column;
	height: 100%;
	overflow-y: auto;
	padding: 20px;
	box-sizing: border-box;
}

/* Popup Layout */
.igr-wrapper-popup {
	position: fixed;
	bottom: 20px;
	left: 20px;
	width: 350px;
	max-height: calc(100vh - 40px);
	z-index: 10000;
	display: none;
	/* Controlled by JS */
	background: transparent;
}

.igr-wrapper-popup.active {
	display: flex;
	flex-direction: column;
	animation: igr-slide-in-left .4s cubic-bezier(.175, .885, .32, 1.275);
}

.igr-wrapper-popup .igr-layout-content {
	background: #f9f9f9;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
	position: relative;
	max-height: 100%;
	overflow-y: auto;
	box-sizing: border-box;
}

.igr-popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	cursor: pointer;
	color: #999;
	z-index: 20;
	font-weight: bold;
}

/* --- RESPONSIVIDAD MEJORADA --- */

/* Desktop (Grande): 3 tarjetas para estilo izquierdo, 4 para estándar */
@media (min-width: 1201px) {
	.igr-slider-wrapper {
		padding: 0 30px;
		box-sizing: border-box;
	}
	
	.igr-author-photo-top {
		margin-top: 15px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image.igr-summary-left .igr-summary-content {
		transform: translateY(36px);
	}
	
	/* Ajuste para evitar recorte de fotos en Desktop (Diseño Resumen Arriba) */
	.igr-wrapper-slider .igr-layout-slider .igr-review-card {
		margin-top: 35px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard .igr-layout-slider .igr-review-card {
		flex: 0 0 calc(25% - 15px) !important;
		margin-top: 22px !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-container.igr-layout-slider .igr-review-card {
		min-height: 270px !important;
		height: 270px !important;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-review-header {
		min-height: auto;
		padding-bottom: 0;
	}
	
	.igr-main-wrapper.igr-wrapper-slider.igr-card-standard .igr-stars {
		top: auto;
	}
	
	.igr-wrapper-slider .igr-slider-prev, .igr-wrapper-slider .igr-slider-next {
		top: 190px !important;
	}
	
	.igr-container {
		align-items: stretch !important;
		gap: 20px;
	}
	
	.igr-container.igr-layout-slider_left {
		align-items: flex-start !important;
	}
	
	.igr-layout-slider .igr-review-card, .igr-layout-slider_left .igr-review-card {
		flex: 0 0 calc(25% - 15px);
		max-width: none;
		min-height: 265px;
		scroll-snap-align: start;
	}
	
	/* Específico para estilo izquierda en escritorio (3 tarjetas) */
	.igr-wrapper-slider_left .igr-layout-slider_left .igr-review-card {
		flex: 0 0 calc(33.33% - 14px) !important;
	}
}

/* Tablet y Pantallas Medianas: 2 tarjetas para estilo izquierdo, 3 para estándar */
@media (min-width: 1201px) {
	.igr-wrapper-slider_left.igr-card-top_image .igr-slider-prev, .igr-wrapper-slider_left.igr-card-top_image .igr-slider-next {
		top: 155px !important;
	}
}

@media (min-width: 768px) and (max-width: 1200px) {
	.igr-author-photo-top {
		margin-top: 15px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image.igr-summary-left .igr-summary-content {
		transform: translateY(36px);
	}
	
	.igr-slider-wrapper {
		padding: 0 30px;
		box-sizing: border-box;
	}
	
	/* Ajuste exclusivo para diseño Resumen Arriba en Tablets para evitar recorte de fotos */
	.igr-wrapper-slider .igr-layout-slider .igr-review-card {
		margin-top: 35px !important;
	}
	
	.igr-wrapper-slider.igr-card-standard .igr-layout-slider .igr-review-card {
		margin-top: 22px !important;
	}
	
	.igr-wrapper-slider .igr-slider-prev, .igr-wrapper-slider .igr-slider-next {
		top: 190px !important;
	}
	
	.igr-container {
		align-items: stretch !important;
		gap: 15px;
	}
	
	.igr-container.igr-layout-slider_left {
		align-items: flex-start !important;
	}
	
	.igr-layout-slider .igr-review-card, .igr-layout-slider_left .igr-review-card {
		flex: 0 0 calc(33.33% - 10px);
		max-width: none;
		min-height: 265px;
		scroll-snap-align: start;
	}
	
	/* Específico para estilo izquierda en tablet (2 tarjetas completas) */
	.igr-wrapper-slider_left .igr-layout-slider_left {
		gap: 20px !important;
	}
	
	.igr-wrapper-slider_left .igr-layout-slider_left .igr-review-card {
		flex: 0 0 calc(50% - 10px) !important;
		min-width: 200px;
		min-height: 265px !important;
	}
	
	.igr-slider-prev {
		left: 0px;
	}
	
	.igr-slider-next {
		right: 0px;
	}
}

@media (max-width: 768px) {
	.igr-container {
		scroll-snap-type: x mandatory;
	}
	
	.igr-review-card {
		min-width: 100%;
		flex-basis: 100%;
		scroll-snap-align: center;
	}
}

/* SOLUCIÓN DEFINITIVA PARA TABLET (Estilo Izquierda): Forzar 2 tarjetas completas */
@media screen and (min-width: 768px) and (max-width: 1280px) {
	.igr-wrapper-slider_left .igr-layout-slider_left {
		gap: 20px !important;
		display: flex !important;
		flex-wrap: nowrap !important;
	}
	
	.igr-wrapper-slider_left .igr-layout-slider_left .igr-review-card {
		flex: 0 0 calc(50% - 15px) !important;
		width: calc(50% - 15px) !important;
		min-width: calc(50% - 15px) !important;
		max-width: calc(50% - 15px) !important;
		min-height: 265px !important;
		margin: 0 !important;
		scroll-snap-align: start !important;
	}
	
	.igr-wrapper-slider_left .igr-slider-wrapper {
		padding: 0 20px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image .igr-layout-slider_left {
		padding-top: 18px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-top_image .igr-layout-slider_left .igr-review-card {
		margin-top: 18px !important;
	}
}

@keyframes igr-slide-in-left {
	from {
		transform: translateX(-50px);
		opacity: 0;
	}
	
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

@keyframes igr-fade-up {
	from {
		transform: translateY(20px);
		opacity: 0;
	}
	
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Scoped Trustindex standard adjustments */
@media (min-width: 1201px) {
	.igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-layout-slider .igr-review-card:not(.igr-review-expanded), .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-layout-slider .igr-review-card:not(.igr-review-expanded) {
		height: 270px !important;
		min-height: 270px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-standard.igr-summary-left .igr-summary-content {
		transform: translateY(24px);
	}
	
	.igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-review-body, .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-review-body {
		flex: 1 1 auto !important;
		min-height: 0;
	}
	
	.igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-read-more-wrapper, .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-read-more-wrapper {
		margin-top: auto !important;
	}
}

@media (min-width: 768px) {
	.igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-slider-prev, .igr-wrapper-slider.igr-card-standard.igr-summary-top .igr-slider-next, .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-slider-prev, .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-slider-next {
		top: 155px !important;
	}
}

@media (max-width: 767px) {
	.igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-slider-prev, .igr-wrapper-slider.igr-card-standard.igr-summary-none .igr-slider-next {
		top: 170px !important;
	}
	
	.igr-wrapper-slider_left.igr-card-standard.igr-summary-left .igr-summary-block {
		margin-bottom: 18px !important;
	}
}

@media (max-width: 1200px) {
	.igr-wrapper-slider_left.igr-card-standard.igr-summary-left .igr-summary-content {
		transform: translateY(24px);
	}
}
