/**woocommerce single product***/
.single-product div.product {
	max-width: 100%;
	overflow: hidden;
}
.single-product .elementor-woo-meta--view-inline .product_meta {
	flex-direction: column !important;
	gap: 8px;
}
.single-product .product_meta .detail-label {
	margin-right: 5px;
}
.single-product .stock {
	display: none !important;
}
/* ── Hero Carousel Gallery ────────────────────────────── */
.elo-gallery {
    position: relative;
    background: #F8F8F8;
    border-radius: 16px;
    padding: 12px;
    user-select: none;
    -webkit-user-select: none;
    width: 100%;
    box-sizing: border-box;
}
.elo-gallery button,
.elo-gallery button:hover,
.elo-gallery button:focus,
.elo-gallery button:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
    color: #555;
}
.elo-gallery button:hover {
    color: #1E1E1E;
}
.elo-gallery button:focus-visible {
    outline: 2px solid #FF7735;
    outline-offset: 2px;
}
.elo-gallery__thumb,
.elo-gallery__thumb:hover,
.elo-gallery__thumb:focus,
.elo-gallery__thumb:active {
    outline: none;
    -webkit-tap-highlight-color: transparent;
    background-color: #fff;
}
.elo-gallery__thumb:focus-visible {
    outline: 2px solid #FF7735;
    outline-offset: 2px;
}

.elo-gallery__viewport {
    position: relative;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

/* Native horizontal scroll-snap container — the browser handles the gesture.
   The viewport's border-radius + overflow:hidden clip the snap scrollbar
   and any stray rendering. */
.elo-gallery__track {
    display: flex;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;          /* Firefox */
    overscroll-behavior-inline: contain;
}
.elo-gallery__track::-webkit-scrollbar { display: none; }

.elo-gallery__slide {
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.elo-gallery__slide img {
    max-width: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
    pointer-events: none;
}

/* ── Arrows ──────────────────────────────────────────── */
.elo-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: box-shadow 0.2s, color 0.2s;
    z-index: 2;
    padding: 0;
}
.elo-gallery__arrow:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
    color: #1E1E1E;
}
.elo-gallery__arrow--prev { left: 16px; }
.elo-gallery__arrow--next { right: 16px; }

/* ── Zoom Button ─────────────────────────────────────── */
.elo-gallery__zoom {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: box-shadow 0.2s, color 0.2s;
    z-index: 2;
    padding: 0;
}
.elo-gallery__zoom:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
    color: #1E1E1E;
}

/* ── Counter Badge ───────────────────────────────────── */
.elo-gallery__counter {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    z-index: 2;
}

/* ── Thumbnail Strip ─────────────────────────────────── */
.elo-gallery__thumbs {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.elo-gallery__thumbs::-webkit-scrollbar { display: none; }
.elo-gallery__thumb {
    flex: 0 0 auto;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    border: 2px solid #DADADA;
    background: #fff;
    padding: 2px;
    cursor: pointer;
    transition: border-color 0.2s;
    overflow: hidden;
}
.elo-gallery__thumb:hover {
    border-color: #A1A1A1;
}
.elo-gallery__thumb.is-active {
    border-color: #FF7735;
}
.elo-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
    pointer-events: none;
}

/* ── Mobile Responsive ───────────────────────────────── */
@media (max-width: 768px) {
    .single-product div.product .elo-gallery,
    .single-product div.product .summary {
        width: 100% !important;
        float: none !important;
    }
    .single-product .woocommerce-breadcrumb {
        margin-bottom: 10px;
    }
    .elo-gallery {
        padding: 8px;
        border-radius: 12px;
    }
    .elo-gallery__arrow {
        display: none;
    }
    .elo-gallery__thumbs {
        margin-top: 8px;
        gap: 6px;
    }
    .elo-gallery__thumb {
        width: 52px;
        height: 52px;
        border-radius: 6px;
    }
}

@media (max-width: 480px) {
    .elo-gallery {
        padding: 6px;
    }
}

/* ── Product page: inline star rating badge ── */
.elo-inline-rating {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	text-decoration: none;
	margin: 4px 0 12px;
	padding: 0;
	cursor: pointer;
	transition: opacity 0.2s;
}
.elo-inline-rating:hover { opacity: 0.8; }
.elo-inline-stars {
	display: inline-flex;
	gap: 1px;
	font-size: 18px;
	line-height: 1;
}
.elo-inline-star--filled { color: #FF7735; }
.elo-inline-star--half {
	background: linear-gradient(90deg, #FF7735 50%, #DADADA 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.elo-inline-star--empty { color: #DADADA; }
.elo-inline-avg {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size: 15px;
	color: #1E1E1E;
}
.elo-inline-count {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #7E7E7E;
}

/* ── Product page: shipping badge ── */
.elo-shipping-badge {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 16px 0 0;
	padding: 8px 14px;
	background: #E8F5E9;
	border: 1px solid #C8E6C9;
	border-radius: 8px;
	font-family: 'Barlow', sans-serif;
	font-size: 14px;
	color: #2E7D32;
}
.elo-shipping-badge svg {
	flex-shrink: 0;
}
.elo-shipping-badge strong {
	font-weight: 700;
}

/* ── Product page: certification badges row ── */
.elo-cert-badges {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 20px 0 0;
	padding: 10px 16px;
	background: #F8F8F8;
	border: 1px solid #DADADA;
	border-radius: 8px;
}
.elo-cert-badges > svg {
	flex-shrink: 0;
}
.elo-cert-pill {
	display: inline-block;
	padding: 2px 8px;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 0.5px;
	color: #1E1E1E;
	background: #fff;
	border: 1.5px solid #1E1E1E;
	border-radius: 4px;
	line-height: 1.4;
}
.elo-cert-pill--green {
	color: #2E7D32;
	border-color: #2E7D32;
}
.elo-cert-label {
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #7E7E7E;
	margin-left: auto;
	white-space: nowrap;
}
@media (max-width: 480px) {
	.elo-cert-badges {
		flex-wrap: wrap;
		gap: 6px;
		padding: 8px 12px;
	}
	.elo-cert-label {
		font-size: 11px;
		width: 100%;
		margin-left: 0;
		margin-top: 4px;
	}
}

/* ── Product page: trust signals bar ── */
.elo-trust-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin: 12px 0 16px;
	padding: 16px 20px;
	background: #F8F8F8;
	border-radius: 12px;
	border: 1px solid #DADADA;
}
.elo-trust-item {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 14px;
	color: #1E1E1E;
	white-space: nowrap;
}
.elo-trust-item svg {
	flex-shrink: 0;
}
.elo-shipping-info {
	margin: 0 0 20px;
	padding: 12px 16px;
	background: #fff;
	border: 1px solid #DADADA;
	border-radius: 8px;
	font-family: 'Barlow', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #7E7E7E;
	line-height: 1.5;
}
.elo-shipping-info p {
	margin: 0 0 4px;
}
.elo-shipping-info p:last-child {
	margin-bottom: 0;
}
.elo-shipping-info strong {
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	color: #1E1E1E;
}
.elo-shipping-info a {
	color: #FF7735;
	text-decoration: none;
}
.elo-shipping-info a:hover {
	color: #EB601D;
	text-decoration: underline;
}

/* ── Product page (new layout) ── */
.elo-pp-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.elo-pp-fit {
	background: #F8F8F8; border-top: 1px solid #DADADA; border-bottom: 1px solid #DADADA;
	padding: 20px 0; margin: 24px 0 0; font-family: 'Barlow', sans-serif;
}
.elo-pp-fit-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 12px; margin-bottom: 10px; }
.elo-pp-fit-row--yes .elo-pp-fit-icon { color: #2E8B57; font-weight: 700; font-size: 20px; }
.elo-pp-fit-row--no  .elo-pp-fit-icon { color: #C0392B; font-weight: 700; font-size: 20px; }
.elo-pp-fit-label { font-weight: 700; color: #1E1E1E; }
.elo-pp-fit-list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px 8px; }
.elo-pp-fit-list li {
	background: #fff; border: 1px solid #DADADA; border-radius: 4px;
	padding: 4px 10px; font-size: 14px; color: #1E1E1E;
}
.elo-pp-fit-row--no .elo-pp-fit-list li { color: #7E7E7E; text-decoration: line-through; }
.elo-pp-fit-cta { margin-top: 8px; font-size: 14px; color: #7E7E7E; }
.elo-pp-fit-cta a { color: #FF7735; font-weight: 600; text-decoration: none; }
.elo-pp-fit-cta a:hover { color: #EB601D; text-decoration: underline; }
@media (max-width: 767px) {
	.elo-pp-fit-row { align-items: flex-start; }
	.elo-pp-fit-label { min-width: 60px; }
}
.elo-pp-comparison { padding: 40px 0 28px; font-family: 'Barlow', sans-serif; }
.elo-pp-comparison-headline {
	font-size: 28px; font-weight: 800; color: #1E1E1E; text-align: center; margin: 0 0 24px;
	line-height: 1.2;
}
.elo-pp-comparison-table {
	width: 100%; max-width: 700px; margin: 0 auto; border-collapse: collapse;
	background: #fff; border: 1px solid #DADADA; border-radius: 8px; overflow: hidden;
}
.elo-pp-comparison-table th, .elo-pp-comparison-table td {
	padding: 14px 18px; text-align: left; border-bottom: 1px solid #DADADA;
}
.elo-pp-comparison-table thead th { background: #F8F8F8; font-size: 14px; color: #7E7E7E; text-transform: uppercase; letter-spacing: 0.05em; }
.elo-pp-comparison-table tbody th { font-weight: 600; color: #1E1E1E; width: 40%; }
.elo-pp-comparison-ours { color: #FF7735; }
.elo-pp-comparison-winner { font-weight: 700; color: #EB601D; background: rgba(255,119,53,0.08); }
.elo-pp-comparison-row-price th, .elo-pp-comparison-row-price td { font-size: 18px; }
.elo-pp-comparison-ast { color: #FF7735; margin-left: 3px; }
.elo-pp-comparison-source { text-align: center; font-size: 12px; color: #A1A1A1; margin: 10px 0 0; }
@media (max-width: 767px) {
	.elo-pp-comparison { padding: 28px 0 20px; }
	.elo-pp-comparison-headline { font-size: 20px; margin-bottom: 16px; }
	.elo-pp-comparison-table th, .elo-pp-comparison-table td { padding: 10px 10px; font-size: 13px; }
	.elo-pp-comparison-table thead th { font-size: 11px; padding: 8px 10px; }
	.elo-pp-comparison-table tbody th { width: auto; font-size: 13px; }
	.elo-pp-comparison-row-price th, .elo-pp-comparison-row-price td { font-size: 14px; }
	.elo-pp-comparison-source { font-size: 11px; }
}

.elo-pp-selling-points { padding: 40px 0; font-family: 'Barlow', sans-serif; }
.elo-pp-section-heading { font-size: 24px; font-weight: 800; color: #1E1E1E; text-align: center; margin: 0 0 24px; }
.elo-pp-selling-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 780px; margin: 0 auto;
}
.elo-pp-selling-card {
	background: #fff; border: 1px solid #DADADA; border-radius: 12px; padding: 20px 16px;
	text-align: center; position: relative;
	box-shadow: 0 1px 3px rgba(0,0,0,0.04);
	transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
	display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.elo-pp-selling-card[role="button"] { cursor: pointer; }
.elo-pp-selling-card[role="button"]:hover { border-color: #FF7735; box-shadow: 0 4px 12px rgba(255,119,53,0.15); transform: translateY(-2px); }
.elo-pp-selling-card[role="button"]:active { transform: translateY(1px); }
.elo-pp-selling-card[role="button"]:focus-visible { outline: 2px solid #FF7735; outline-offset: 2px; }
.elo-pp-selling-icon { font-size: 28px; line-height: 1; }
.elo-pp-selling-label { font-size: 14px; font-weight: 600; color: #1E1E1E; line-height: 1.35; }
.elo-pp-info-btn {
	position: absolute; top: 6px; right: 6px;
	font-size: 13px; line-height: 1; opacity: 0.5;
}
.elo-pp-selling-card:hover .elo-pp-info-btn { opacity: 1; }
@media (max-width: 900px) {
	.elo-pp-selling-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.elo-pp-selling-grid { grid-template-columns: 1fr; }
}

/* Info dialog (shared with battery finder page) */
.bf-dialog, .bf-dialog *:focus, .bf-dialog *:focus-visible {
	outline: none !important; -webkit-tap-highlight-color: transparent;
}
.bf-dialog {
	position: fixed !important;
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%, -50%) !important;
	margin: 0 !important;
	border: none; border-radius: 16px; padding: 40px 32px 32px; max-width: 420px; width: calc(100% - 40px);
	background: #fff; color: #1E1E1E;
	box-shadow: 0 24px 48px rgba(0,0,0,0.2); font-family: 'Barlow', sans-serif;
	overflow: visible; z-index: 99999;
}
.bf-dialog::backdrop { background: rgba(30,30,30,0.6); }
#bf-info-dialog .bf-dialog-close {
	position: absolute; top: 8px; right: 8px;
	background: transparent !important; border: none !important; box-shadow: none !important;
	outline: none !important;
	width: 32px; height: 32px; padding: 0; border-radius: 50%;
	cursor: pointer; -webkit-appearance: none; appearance: none;
	color: transparent; font-size: 0;
}
#bf-info-dialog .bf-dialog-close::before,
#bf-info-dialog .bf-dialog-close::after {
	content: ''; position: absolute; top: 50%; left: 50%;
	width: 18px; height: 2px; background: #7E7E7E; border-radius: 1px;
}
#bf-info-dialog .bf-dialog-close::before { transform: translate(-50%, -50%) rotate(45deg); }
#bf-info-dialog .bf-dialog-close::after  { transform: translate(-50%, -50%) rotate(-45deg); }
#bf-info-dialog .bf-dialog-close:hover { background: #F8F8F8 !important; }
#bf-info-dialog .bf-dialog-close:hover::before,
#bf-info-dialog .bf-dialog-close:hover::after { background: #1E1E1E; }
.bf-dialog-title { margin: 0 0 12px; font-size: 22px; font-weight: 800; color: #1E1E1E; }
.bf-dialog-body  { margin: 0; line-height: 1.5; color: #1E1E1E; }
.elo-pp-box { padding: 40px 0; font-family: 'Barlow', sans-serif; }
.elo-pp-box__subtitle { font-size: 14px; color: #7E7E7E; text-align: center; margin: -16px 0 24px; }
.elo-pp-box__grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 660px; margin: 0 auto;
}
.elo-pp-box__item {
	text-align: center; padding: 24px 16px; background: #F8F8F8; border-radius: 12px;
	transition: transform 0.2s;
}
.elo-pp-box__item:hover { transform: translateY(-2px); }
.elo-pp-box__icon {
	width: 48px; height: 48px; margin: 0 auto 12px;
	border: 2px solid #FF7735; border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
}
.elo-pp-box__icon i { font-size: 20px; color: #FF7735; }
.elo-pp-box__name { font-size: 14px; font-weight: 600; color: #1E1E1E; margin-bottom: 2px; }
.elo-pp-box__desc { font-size: 12px; color: #7E7E7E; }
@media (max-width: 900px) {
	.elo-pp-box__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.elo-pp-box__grid { grid-template-columns: 1fr; }
}
.elo-pp-objections { padding: 20px 0; background: #F8F8F8; border-top: 1px solid #DADADA; border-bottom: 1px solid #DADADA; font-family: 'Barlow', sans-serif; }
.elo-pp-objections-row { display: flex; justify-content: space-around; gap: 16px; flex-wrap: wrap; }
.elo-pp-objection { display: flex; align-items: center; gap: 10px; }
.elo-pp-objection-icon { font-size: 24px; line-height: 1; }
.elo-pp-objection-label { font-size: 15px; font-weight: 600; color: #1E1E1E; }
@media (max-width: 640px) {
	.elo-pp-objections-row { justify-content: flex-start; flex-direction: column; align-items: flex-start; padding-left: 20px; }
}
.elo-pp-install { padding: 40px 0; font-family: 'Barlow', sans-serif; }
.elo-pp-install-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1100px; margin: 0 auto; }
.elo-pp-install-video {
	max-width: 720px; margin: 0 auto 28px; aspect-ratio: 16 / 9;
	border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.elo-pp-install-video iframe { width: 100%; height: 100%; border: 0; display: block; }
.elo-yt-facade { cursor: pointer; position: relative; background: #000; }
.elo-yt-facade img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: .85; transition: opacity .2s; }
.elo-yt-facade:hover img, .elo-yt-facade:focus img { opacity: 1; }
.elo-yt-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; filter: drop-shadow(0 2px 8px rgba(0,0,0,.3)); }
.elo-yt-facade:hover .elo-yt-play path:first-child { fill: #f00; }
.elo-pp-install-step { margin: 0; background: #fff; border: 1px solid #DADADA; border-radius: 10px; overflow: hidden; }
.elo-pp-install-step img { display: block; width: 100%; height: auto; }
.elo-pp-install-step figcaption { padding: 16px 18px; }
.elo-pp-install-step--no-img figcaption { padding: 24px 20px; }
.elo-pp-install-step--no-img .elo-pp-install-num { display: inline-block; background: #FF7735; color: #fff; padding: 4px 12px; border-radius: 999px; font-weight: 700; font-size: 12px; letter-spacing: .05em; margin-bottom: 8px; }
.elo-pp-install-num {
	display: inline-block; background: #FF7735; color: #fff; border-radius: 4px;
	padding: 2px 10px; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 6px;
}
.elo-pp-install-label { font-size: 17px; font-weight: 700; color: #1E1E1E; margin-bottom: 4px; }
.elo-pp-install-body { font-size: 14px; color: #7E7E7E; line-height: 1.5; }
@media (max-width: 900px) {
	.elo-pp-install-grid { grid-template-columns: 1fr; }
}
.elo-pp-social { padding: 40px 0; background: #F8F8F8; font-family: 'Barlow', sans-serif; }
.elo-pp-social-rating { text-align: center; margin: 0 0 24px; font-size: 16px; color: #1E1E1E; }
.elo-pp-social-stars { color: #FF7735; font-size: 22px; letter-spacing: 2px; margin-right: 8px; }
.elo-pp-social-star-half {
	background: linear-gradient(90deg, #FF7735 50%, #DADADA 50%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}
.elo-pp-social-score { font-weight: 700; margin-right: 10px; }
.elo-pp-social-count { color: #7E7E7E; font-size: 14px; }
.elo-pp-social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 0 auto; }
.elo-pp-social-card {
	background: #fff; border: 1px solid #DADADA; border-radius: 10px; padding: 20px;
	margin: 0; font-style: normal;
}
.elo-pp-social-quote { font-size: 15px; color: #1E1E1E; margin: 0 0 10px; line-height: 1.5; }
.elo-pp-social-attribution { font-style: normal; font-size: 13px; color: #7E7E7E; }
@media (max-width: 900px) {
	.elo-pp-social-grid { grid-template-columns: 1fr; }
}

.elo-pp-faq { padding: 40px 0 56px; font-family: 'Barlow', sans-serif; }
.elo-pp-faq-list { max-width: 820px; margin: 0 auto; }
.elo-pp-faq-item {
	background: #fff; border: 1px solid #DADADA; border-radius: 8px; padding: 0;
	margin-bottom: 12px; overflow: hidden;
}
.elo-pp-faq-q {
	list-style: none; cursor: pointer; padding: 16px 20px;
	font-size: 16px; font-weight: 600; color: #1E1E1E;
	display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.elo-pp-faq-q::-webkit-details-marker { display: none; }
.elo-pp-faq-q::after { content: '+'; color: #FF7735; font-size: 22px; font-weight: 400; line-height: 1; }
.elo-pp-faq-item[open] .elo-pp-faq-q::after { content: '–'; }
.elo-pp-faq-a { padding: 0 20px 18px; font-size: 15px; color: #3A3A3A; line-height: 1.6; }
.elo-pp-faq-a p { margin: 0 0 10px; }
.elo-pp-faq-a p:last-child { margin-bottom: 0; }

/* ── Scroll animation initial states ─────────────────── */
/* Elements start visible by default. Only hidden when JS
   successfully loads GSAP and adds elo-has-anim to <body>.
   If GSAP CDN fails or JS is disabled → no change. */
.elo-has-anim .elo-anim {
	opacity: 0;
	transform: translateY(30px);
}
.elo-has-anim .elo-anim-left {
	opacity: 0;
	transform: translateX(-20px);
}
.elo-has-anim .elo-anim-scale {
	opacity: 0;
	transform: translateY(30px) scale(0.95);
}

/* Disable all scroll animations for reduced-motion users */
@media (prefers-reduced-motion: reduce) {
	.elo-has-anim .elo-anim,
	.elo-has-anim .elo-anim-left,
	.elo-has-anim .elo-anim-scale {
		opacity: 1 !important;
		transform: none !important;
	}
}
