@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════
   Invisio Reviews & Blog Carousel – v1.2.0
   Invisio Solutions · invisiosolutions.com
   Brand: #000326 navy · #FBBC05 gold · #6BDCFF cyan
═══════════════════════════════════════════════ */

/* ── Shared tokens ─────────────────────────────────────────── */
:root {
	--irbc-navy:       #000326;
	--irbc-card:       #050c2e;
	--irbc-border:     rgba(107,220,255,0.12);
	--irbc-gold:       #FBBC05;
	--irbc-cyan:       #6BDCFF;
	--irbc-text:       #ffffff;
	--irbc-muted:      rgba(255,255,255,0.45);
	--irbc-font:       'Manrope', sans-serif;
}

/* ── Shared nav button mixin (applied via specific selectors below) */


/* ═══════════════════════════════════════════════
   1. GOOGLE REVIEWS CAROUSEL  —  .gr-carousel
      [google_reviews]
═══════════════════════════════════════════════ */

.gr-carousel {
	width: 100%;
	overflow: hidden;
	font-family: var(--irbc-font);
}

.gr-track-wrap { overflow: hidden; }

.gr-track {
	display: flex;
	gap: 24px;
	transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
	will-change: transform;
	align-items: stretch;
}

/* Card */
.gr-card {
	flex: 0 0 calc((100% - 48px) / 3);
	background: #050c2e !important;
	border: 1px solid rgba(107,220,255,0.12) !important;
	border-radius: 16px !important;
	padding: 28px 26px 24px;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	gap: 0;
	position: relative;
}

.gr-card--spacer {
	background: transparent !important;
	border-color: transparent !important;
	box-shadow: none !important;
	pointer-events: none;
}

/* Stars */
.gr-stars {
	display: flex;
	gap: 3px;
	margin-bottom: 16px;
}

.gr-star       { font-size: 16px; line-height: 1; }
.gr-star--full  { color: #FBBC05 !important; }
.gr-star--empty { color: rgba(251,188,5,0.2) !important; }

/* Review text */
.gr-text {
	font-family: var(--irbc-font) !important;
	font-size: 15px !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.65 !important;
	color: rgba(255,255,255,0.80) !important;
	margin: 0 0 auto !important;
	padding-bottom: 24px;
	flex: 1;
}

/* Divider */
.gr-divider {
	border: none !important;
	border-top: 1px solid rgba(107,220,255,0.12) !important;
	margin: 0 0 18px !important;
}

/* Footer */
.gr-footer {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.gr-footer-name-row {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	min-width: 0;
}

.gr-name {
	font-family: var(--irbc-font) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	white-space: nowrap;
}

.gr-subtitle {
	font-family: var(--irbc-font) !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	color: rgba(255,255,255,0.5) !important;
}

.gr-google-icon {
	display: inline-block !important;
	width: 20px !important;
	height: 20px !important;
	min-width: 20px !important;
	min-height: 20px !important;
	max-width: 20px !important;
	max-height: 20px !important;
	flex-shrink: 0 !important;
	overflow: hidden !important;
}

.gr-date {
	font-family: var(--irbc-font) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #6BDCFF !important;
	white-space: nowrap;
}

/* Legacy elements */
.gr-quote, .gr-meta, .gr-badge,
.gr-footer-left, .gr-footer-right { display: none !important; }

/* Controls */
.gr-controls {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 32px;
}

.gr-carousel .gr-btn,
.gr-carousel .gr-btn:focus,
.gr-carousel .gr-btn:active,
.gr-carousel .gr-btn:focus-visible {
	width: 44px !important;
	height: 44px !important;
	border-radius: 50% !important;
	border: 1px solid rgba(255,255,255,0.25) !important;
	background: transparent !important;
	color: rgba(255,255,255,0.65) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	padding: 0 !important;
	text-decoration: none !important;
	box-shadow: none !important;
	outline: none !important;
	transition: border-color 0.2s, color 0.2s, background 0.2s !important;
	-webkit-appearance: none !important;
}

.gr-carousel .gr-btn:hover {
	border-color: #6BDCFF !important;
	color: #6BDCFF !important;
	background: rgba(107,220,255,0.08) !important;
	box-shadow: none !important;
}

.gr-dots { display: flex; gap: 6px; align-items: center; }

.gr-carousel .gr-dot,
.gr-carousel .gr-dot:hover,
.gr-carousel .gr-dot:focus,
.gr-carousel .gr-dot:active {
	width: 8px !important;
	height: 8px !important;
	border-radius: 50% !important;
	border: none !important;
	background: rgba(255,255,255,0.2) !important;
	cursor: pointer !important;
	padding: 0 !important;
	color: transparent !important;
	box-shadow: none !important;
	transition: background 0.2s, transform 0.2s !important;
	-webkit-appearance: none !important;
}

.gr-carousel .gr-dot--active,
.gr-carousel .gr-dot--active:hover,
.gr-carousel .gr-dot--active:focus {
	background: #6BDCFF !important;
	transform: scale(1.3) !important;
}

@media (max-width: 900px) {
	.gr-card { flex: 0 0 calc((100% - 24px) / 2); }
}

@media (max-width: 580px) {
	.gr-card { flex: 0 0 100%; }
}


/* ═══════════════════════════════════════════════
   2. ACF REVIEW CAROUSEL  —  .eplfg-rc
      [acf_review_carousel]
═══════════════════════════════════════════════ */

.eplfg-rc {
	width: 100%;
	overflow: hidden;
	font-family: var(--irbc-font);
}

.eplfg-rc__track-wrap {
	overflow: hidden;
	width: 100%;
}

.eplfg-rc__track {
	display: flex;
	align-items: stretch;
	transition: transform 0.55s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}

.eplfg-rc__slide {
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: calc((100% - 48px) / 3);
	margin-right: 24px;
	box-sizing: border-box;
}

@media (max-width: 900px) {
	.eplfg-rc__slide {
		flex: 0 0 calc((100% - 24px) / 2);
		min-width: calc((100% - 24px) / 2);
	}
}

@media (max-width: 560px) {
	.eplfg-rc__slide {
		flex: 0 0 100%;
		min-width: 100%;
		margin-right: 0;
	}
}

/* Card */
.eplfg-rc__card {
	background: #050c2e !important;
	border: 1px solid rgba(107,220,255,0.12) !important;
	border-radius: 16px !important;
	padding: 32px 28px 28px !important;
	height: 100%;
	box-sizing: border-box;
	display: flex !important;
	flex-direction: column !important;
	position: relative !important;
	overflow: hidden !important;
}

/* Decorative quote mark — top-right */
.eplfg-rc__card::before {
	content: '\201C' !important;
	position: absolute !important;
	top: 16px !important;
	right: 24px !important;
	font-size: 72px !important;
	line-height: 1 !important;
	font-family: Georgia, serif !important;
	color: rgba(251,188,5,0.18) !important;
	pointer-events: none !important;
	user-select: none !important;
}

/* Stars */
.eplfg-rc__stars {
	display: flex !important;
	gap: 4px !important;
	margin-bottom: 20px !important;
}

.eplfg-rc__star {
	color: #FBBC05 !important;
	font-size: 14px !important;
	line-height: 1 !important;
}

/* Quote */
.eplfg-rc__quote {
	font-family: var(--irbc-font) !important;
	font-size: clamp(14px, 1.4vw, 16px) !important;
	font-weight: 400 !important;
	font-style: normal !important;
	line-height: 1.7 !important;
	color: rgba(255,255,255,0.80) !important;
	margin: 0 0 auto !important;
	padding: 0 !important;
	border: none !important;
	flex: 1;
}

/* Divider */
.eplfg-rc__divider {
	border: none !important;
	border-top: 1px solid rgba(107,220,255,0.12) !important;
	margin: 24px 0 20px !important;
}

/* Author */
.eplfg-rc__author {
	display: flex !important;
	flex-direction: column !important;
	gap: 4px !important;
}

.eplfg-rc__name {
	font-family: var(--irbc-font) !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #ffffff !important;
	letter-spacing: 0.01em !important;
}

.eplfg-rc__subtitle {
	font-family: var(--irbc-font) !important;
	font-size: 12px !important;
	font-weight: 400 !important;
	color: #6BDCFF !important;
}

/* Nav */
.eplfg-rc__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.eplfg-rc__btn,
.eplfg-rc__btn:focus,
.eplfg-rc__btn:active,
.eplfg-rc__btn:focus-visible {
	width: 44px !important;
	height: 44px !important;
	border: 1px solid rgba(255,255,255,0.25) !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: rgba(255,255,255,0.65) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: border-color .2s, color .2s, background .2s !important;
	flex-shrink: 0 !important;
	padding: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
	-webkit-appearance: none !important;
}

.eplfg-rc__btn:hover {
	border-color: #6BDCFF !important;
	color: #6BDCFF !important;
	background: rgba(107,220,255,0.08) !important;
	box-shadow: none !important;
}

.eplfg-rc__btn:disabled,
.eplfg-rc__btn[disabled] {
	opacity: 0.25 !important;
	cursor: default !important;
	pointer-events: none !important;
}

.eplfg-rc__progress {
	width: 80px !important;
	height: 1px !important;
	background: rgba(255,255,255,0.15) !important;
	position: relative !important;
	overflow: hidden !important;
}

.eplfg-rc__progress-bar {
	display: block !important;
	height: 100% !important;
	background: #6BDCFF !important;
	transition: width 0.4s ease !important;
	width: 0% !important;
}


/* ═══════════════════════════════════════════════
   3. BLOG POST CAROUSEL  —  .eplfg-bc
      [blog_carousel]
═══════════════════════════════════════════════ */

.eplfg-bc {
	width: 100%;
	overflow: hidden;
	font-family: var(--irbc-font);
}

.eplfg-bc__track-wrap {
	overflow: hidden;
	width: 100%;
}

.eplfg-bc__track {
	display: flex;
	align-items: stretch;
	transition: transform 0.55s cubic-bezier(.4,0,.2,1);
	will-change: transform;
}

.eplfg-bc__slide {
	flex: 0 0 calc((100% - 48px) / 3);
	min-width: calc((100% - 48px) / 3);
	margin-right: 24px;
	box-sizing: border-box;
}

@media (max-width: 900px) {
	.eplfg-bc__slide {
		flex: 0 0 calc((100% - 24px) / 2);
		min-width: calc((100% - 24px) / 2);
	}
}

@media (max-width: 560px) {
	.eplfg-bc__slide {
		flex: 0 0 100%;
		min-width: 100%;
		margin-right: 0;
	}
}

/* Card */
.eplfg-bc__card {
	background: #050c2e !important;
	border: 1px solid rgba(107,220,255,0.12) !important;
	border-radius: 16px !important;
	height: 100%;
	box-sizing: border-box;
	display: flex !important;
	flex-direction: column !important;
	overflow: hidden !important;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.eplfg-bc__card:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 16px 48px rgba(0,3,38,0.5) !important;
}

/* Thumbnail */
.eplfg-bc__img-wrap {
	display: block;
	position: relative;
	overflow: hidden;
	padding-top: 58%;
	background: rgba(107,220,255,0.06);
	flex-shrink: 0;
	text-decoration: none;
}

.eplfg-bc__img-wrap--empty {
	background: linear-gradient(135deg, rgba(107,220,255,0.08) 0%, rgba(0,3,38,0.4) 100%);
}

.eplfg-bc__img-wrap img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.eplfg-bc__card:hover .eplfg-bc__img-wrap img {
	transform: scale(1.04);
}

/* Body */
.eplfg-bc__body {
	padding: 22px 24px 24px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex: 1;
	box-sizing: border-box;
}

.eplfg-bc__meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.eplfg-bc__cat {
	font-family: var(--irbc-font) !important;
	font-size: 10px !important;
	font-weight: 700 !important;
	letter-spacing: 0.10em !important;
	text-transform: uppercase !important;
	color: #6BDCFF !important;
}

.eplfg-bc__date {
	font-family: var(--irbc-font) !important;
	font-size: 11px !important;
	font-weight: 400 !important;
	color: rgba(255,255,255,0.35) !important;
	white-space: nowrap;
}

.eplfg-bc__title {
	font-family: var(--irbc-font) !important;
	font-size: clamp(17px, 1.8vw, 20px) !important;
	font-weight: 700 !important;
	line-height: 1.3 !important;
	color: #ffffff !important;
	margin: 0 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 2 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.eplfg-bc__title a {
	color: #ffffff !important;
	text-decoration: none !important;
	transition: color 0.2s;
}

.eplfg-bc__title a:hover { color: #6BDCFF !important; }

.eplfg-bc__excerpt {
	font-family: var(--irbc-font) !important;
	font-size: 13px !important;
	font-weight: 400 !important;
	line-height: 1.65 !important;
	color: rgba(255,255,255,0.55) !important;
	margin: 0 !important;
	display: -webkit-box !important;
	-webkit-line-clamp: 3 !important;
	-webkit-box-orient: vertical !important;
	overflow: hidden !important;
}

.eplfg-bc__footer {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid rgba(107,220,255,0.10) !important;
}

.eplfg-bc__cta {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	font-family: var(--irbc-font) !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #6BDCFF !important;
	text-decoration: none !important;
	transition: color 0.2s, gap 0.2s !important;
}

.eplfg-bc__cta:hover {
	color: #ffffff !important;
	gap: 10px !important;
}

.eplfg-bc__cta-arrow {
	width: 13px !important;
	height: 13px !important;
	flex-shrink: 0 !important;
	transition: transform 0.2s;
}

.eplfg-bc__cta:hover .eplfg-bc__cta-arrow {
	transform: translateX(3px);
}

/* Nav */
.eplfg-bc__nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	margin-top: 40px;
}

.eplfg-bc__btn,
.eplfg-bc__btn:focus,
.eplfg-bc__btn:active,
.eplfg-bc__btn:focus-visible {
	width: 44px !important;
	height: 44px !important;
	border: 1px solid rgba(255,255,255,0.25) !important;
	border-radius: 50% !important;
	background: transparent !important;
	color: rgba(255,255,255,0.65) !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	cursor: pointer !important;
	transition: border-color .2s, color .2s, background .2s !important;
	flex-shrink: 0 !important;
	padding: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	text-decoration: none !important;
	-webkit-appearance: none !important;
}

.eplfg-bc__btn:hover {
	border-color: #6BDCFF !important;
	color: #6BDCFF !important;
	background: rgba(107,220,255,0.08) !important;
	box-shadow: none !important;
}

.eplfg-bc__btn:disabled,
.eplfg-bc__btn[disabled] {
	opacity: 0.25 !important;
	cursor: default !important;
	pointer-events: none !important;
}

.eplfg-bc__progress {
	width: 80px !important;
	height: 1px !important;
	background: rgba(255,255,255,0.15) !important;
	position: relative !important;
	overflow: hidden !important;
}

.eplfg-bc__progress-bar {
	display: block !important;
	height: 100% !important;
	background: #6BDCFF !important;
	transition: width 0.4s ease !important;
	width: 0% !important;
}

