/* =========================================================================
   EGlobeStore — custom Elementor widgets (Hero area)
   Light, clean, premium — recreates the reference hero natively.
   ========================================================================= */

/* ---- Clean premium buttons (per spec: no inner ring, no shadow, no border) ---- */
.egs-ebtn {
	display: inline-flex; align-items: center; justify-content: center; gap: 9px;
	font-family: inherit; font-weight: 700; font-size: 15px; line-height: 1;
	padding: 15px 30px; border: none !important; border-radius: 999px;
	box-shadow: none !important; outline: none; cursor: pointer; text-decoration: none;
	transition: transform .25s cubic-bezier(.22,.61,.36,1), background .25s ease, color .2s ease;
}
.egs-ebtn:focus, .egs-ebtn:focus-visible, .egs-ebtn:active { box-shadow: none !important; outline: none; border: none !important; }
.egs-ebtn--primary { background: var(--brand); color: #fff; }
.egs-ebtn--primary:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); }
.egs-ebtn--light { background: #fff; color: var(--text); }
.egs-ebtn--light:hover { background: #fff; color: var(--text); transform: translateY(-2px); }

/* =========================================================================
   HERO LAYOUT — section + 3 columns
   ========================================================================= */
.egs-ehero-section { padding-block: 26px 14px; }
.egs-ehero-section .elementor-container,
.egs-ehero-row { gap: 20px; }
.egs-ehero-section .elementor-column,
.egs-ehero-section .elementor-widget-wrap { display: flex; }
.egs-ehero-section .elementor-widget { width: 100%; }

/* =========================================================================
   CATEGORY MENU
   ========================================================================= */
.egs-ecats { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 14px; height: 100%; }
.egs-ecats__list { display: flex; flex-direction: column; gap: 2px; }
.egs-ecats__link {
	display: flex; align-items: center; gap: 14px; padding: 13px 14px; border-radius: 14px;
	color: var(--text-2); font-weight: 600; font-size: 15px; transition: background .2s ease, color .2s ease, transform .2s ease;
}
.egs-ecats__link:hover { background: #fff; color: var(--brand-600); transform: translateX(2px); box-shadow: var(--sh-sm); }
.egs-ecats__icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: #fff; color: var(--text); flex: none; transition: background .2s, color .2s; }
.egs-ecats__icon svg, .egs-ecats__icon i { width: 17px; height: 17px; font-size: 16px; }
.egs-ecats__link:hover .egs-ecats__icon { background: var(--brand); color: #fff; }
.egs-ecats__link:hover .egs-ecats__icon i,
.egs-ecats__link:hover .egs-ecats__icon svg { color: #fff !important; fill: #fff !important; }
.egs-ecats__text { flex: 1; }
.egs-ecats__arrow { color: var(--muted); opacity: 0; transform: translateX(-6px); transition: all .2s ease; }
.egs-ecats__link:hover .egs-ecats__arrow { opacity: 1; transform: none; color: var(--brand); }

/* =========================================================================
   HERO CAROUSEL
   ========================================================================= */
.egs-ehero {
	position: relative;
	background:
		radial-gradient(120% 130% at 88% 0%, var(--tint-cyan) 0%, transparent 55%),
		radial-gradient(90% 120% at 0% 100%, var(--tint-blue) 0%, transparent 50%),
		linear-gradient(120deg, #fdf3ec 0%, #fff8f3 55%, #fdeee2 100%);
	border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
	display: flex; flex-direction: column; min-height: 520px; isolation: isolate;
}
/* NOTE: clipping lives on .egs-ehero (the static viewport), NOT on the track.
   The track is what we translateX — if it also clipped, it would hide the
   incoming slide as it moves. */
.egs-ehero__track { display: flex; flex: 1; will-change: transform; transition: transform .6s cubic-bezier(.22,.61,.36,1); }
.egs-ehero__slide { flex: 0 0 100%; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(20px, 4vw, 56px); padding: clamp(32px, 4vw, 60px) clamp(28px, 5vw, 72px); }
.egs-ehero__content { position: relative; z-index: 2; max-width: 560px; }
.egs-ehero__eyebrow { display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--brand-700); background: rgba(248,86,4,.08); border: 1px solid rgba(248,86,4,.18); padding: 6px 13px; border-radius: var(--pill); margin-bottom: 18px; }
.egs-ehero__title { font-size: clamp(32px, 4.4vw, 60px); line-height: 1.03; letter-spacing: -.035em; color: var(--text); margin: 0 0 16px; font-weight: 900; }
.egs-ehero__sub { font-size: clamp(15px, 1.4vw, 19px); line-height: 1.55; color: var(--text-2); margin: 0 0 28px; max-width: 440px; }
.egs-ehero__buy { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.egs-ehero__cta { padding: 15px 34px; font-size: 15.5px; }
.egs-ehero__price { font-size: clamp(20px, 2vw, 26px); font-weight: 900; letter-spacing: -.02em; color: var(--text); }
.egs-ehero__media { position: relative; display: grid; place-items: center; min-height: 360px; }
.egs-ehero__media::before { content: ""; position: absolute; width: 86%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(248,86,4,.20), rgba(255,154,60,.12) 45%, transparent 70%); filter: blur(20px); }
.egs-ehero__media img { position: relative; max-width: 100%; max-height: clamp(280px, 36vw, 460px); width: auto; object-fit: contain; filter: drop-shadow(0 34px 56px rgba(13,20,38,.22)); }
.egs-ehero__ph { width: 80%; aspect-ratio: 1; border-radius: 30px; background: linear-gradient(160deg, #dde7f6, #fdf2ea); }

/* prev / next arrows */
.egs-ehero__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 50px; height: 50px; border-radius: 50%; border: none; cursor: pointer; display: grid; place-items: center; background: var(--text); color: #fff; box-shadow: var(--sh); transition: transform .22s var(--ease), background .22s; }
.egs-ehero__arrow:hover { background: var(--brand); transform: translateY(-50%) scale(1.08); }
.egs-ehero__arrow:focus-visible { outline: 3px solid var(--brand-cyan); outline-offset: 2px; }
.egs-ehero__arrow .egs-icon { width: 22px; height: 22px; }
.egs-ehero__arrow--prev { left: clamp(12px, 2vw, 24px); }
.egs-ehero__arrow--prev .egs-icon { transform: rotate(180deg); }
.egs-ehero__arrow--next { right: clamp(12px, 2vw, 24px); }

/* dots */
.egs-ehero__dots { position: absolute; left: 0; right: 0; bottom: 20px; z-index: 4; display: flex; align-items: center; justify-content: center; gap: 9px; }
.egs-ehero__dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 999px; background: rgba(11,16,32,.22); cursor: pointer; transition: width .3s var(--ease), background .3s; }
.egs-ehero__dot:hover { background: rgba(11,16,32,.42); }
.egs-ehero__dot.is-active { width: 30px; background: var(--brand); }

/* slide enter animation */
.egs-ehero__slide .egs-ehero__content > * { opacity: 0; transform: translateY(14px); }
.egs-ehero__slide.is-active .egs-ehero__content > * { opacity: 1; transform: none; transition: opacity .6s ease, transform .6s ease; }
.egs-ehero__slide.is-active .egs-ehero__content > *:nth-child(1) { transition-delay: .05s; }
.egs-ehero__slide.is-active .egs-ehero__content > *:nth-child(2) { transition-delay: .12s; }
.egs-ehero__slide.is-active .egs-ehero__content > *:nth-child(3) { transition-delay: .19s; }
.egs-ehero__slide.is-active .egs-ehero__content > *:nth-child(4) { transition-delay: .26s; }
.egs-ehero__slide.is-active .egs-ehero__media img { animation: egsHeroFloat 6s ease-in-out infinite; }
@keyframes egsHeroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* =========================================================================
   HOT DEALS
   ========================================================================= */
.egs-deals { background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px; height: 100%; display: flex; flex-direction: column; gap: 16px; box-shadow: var(--sh-sm); scroll-margin-top: calc(var(--header-h) + 24px); }
.egs-deals__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.egs-deals__title { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 18px; color: var(--text); }
.egs-deals__flame { font-size: 18px; }
.egs-deals__timer { display: inline-flex; align-items: center; gap: 3px; background: var(--brand); color: #fff; padding: 7px 12px; border-radius: 999px; font-weight: 800; font-size: 13px; font-variant-numeric: tabular-nums; }
.egs-deals__timer i { opacity: .6; font-style: normal; }
.egs-deals__card { position: relative; display: block; border-radius: var(--r); overflow: hidden; min-height: 250px; }
.egs-deals__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.egs-deals__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.5) 38%, rgba(255,255,255,.12) 70%, rgba(255,255,255,0) 100%); }
.egs-deals__cardbody { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 20px 18px 0; height: 100%; }
.egs-deals__pn { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 6px; }
.egs-deals__headline { font-size: 24px; font-weight: 800; line-height: 1.2; color: var(--text); max-width: 220px; margin-bottom: 16px; }
.egs-deals__btn { margin-top: auto; padding: 11px 26px; font-size: 14px; }
.egs-deals__product { display: flex; align-items: center; gap: 14px; padding-top: 4px; }
.egs-deals__thumb { width: 64px; height: 64px; border-radius: 14px; background: var(--bg-soft); overflow: hidden; flex: none; display: grid; place-items: center; }
.egs-deals__thumb img { width: 100%; height: 100%; object-fit: cover; }
.egs-deals__pinfo { display: flex; flex-direction: column; gap: 3px; }
.egs-deals__pname { font-weight: 700; font-size: 15px; color: var(--text); }
.egs-deals__stars { color: var(--star); font-size: 15px; letter-spacing: 1px; }
.egs-deals__staroff { color: var(--border-2); }
.egs-deals__price { font-weight: 800; color: var(--brand-600); font-size: 16px; }

/* =========================================================================
   BRAND CAROUSEL
   ========================================================================= */
.egs-brands2 { display: flex; align-items: stretch; gap: 14px; margin-top: 14px; }
.egs-brands2__lead { display: inline-flex; align-items: center; gap: 9px; flex: none; background: var(--text); color: #fff; font-weight: 700; padding: 0 26px; border-radius: var(--r); white-space: nowrap; transition: transform .2s ease, background .2s ease; }
.egs-brands2__lead:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.egs-brands2__bolt { color: var(--brand-cyan); }
.egs-brands2__track { display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; gap: 14px; flex: 1; overflow-x: auto; scrollbar-width: none; }
.egs-brands2__track::-webkit-scrollbar { display: none; }
.egs-brands2__item { display: grid; place-items: center; min-height: 76px; padding: 18px 24px; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--r); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.egs-brands2__item:hover { transform: translateY(-3px); box-shadow: var(--sh); background: #fff; }
.egs-brands2__item img { max-height: 30px; width: auto; filter: grayscale(1); opacity: .7; transition: filter .25s, opacity .25s; }
.egs-brands2__item:hover img { filter: none; opacity: 1; }
.egs-brands2__name { font-weight: 800; font-size: 19px; letter-spacing: -.01em; color: var(--text); opacity: .55; transition: opacity .25s; }
.egs-brands2__item:hover .egs-brands2__name { opacity: 1; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
	.egs-ehero { min-height: 0; }
	.egs-ehero__slide { grid-template-columns: 1fr; text-align: center; padding-bottom: 70px; }
	.egs-ehero__media { order: -1; min-height: 200px; }
	.egs-ehero__content { max-width: none; margin-inline: auto; }
	.egs-ehero__sub { margin-inline: auto; }
	.egs-ehero__buy { justify-content: center; }
	.egs-ehero__arrow { top: auto; bottom: 16px; transform: none; width: 42px; height: 42px; }
	.egs-ehero__arrow:hover { transform: scale(1.06); }
	.egs-ehero__arrow--prev { left: auto; right: 68px; }
	.egs-ehero__arrow--next { right: 16px; }
	.egs-ehero__dots { left: 18px; right: auto; bottom: 30px; justify-content: flex-start; }
}
@media (max-width: 880px) {
	.egs-brands2 { flex-wrap: wrap; }
	.egs-brands2__lead { width: 100%; justify-content: center; padding: 16px; }
	.egs-brands2__track { grid-auto-columns: minmax(130px, 1fr); }
}
@media (max-width: 560px) {
	.egs-ehero__title { font-size: 30px; }
	.egs-ehero__slide { padding: 26px 20px 66px; }
	.egs-ehero__cta { padding: 13px 26px; }
	.egs-deals__card { min-height: 200px; }
}

/* =========================================================================
   PRODUCT TABS — "Bestsellers in Category"
   ========================================================================= */
.egs-ptabs { padding-block: 18px 8px; }
.egs-ptabs__head { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 30px; flex-wrap: wrap; }
.egs-ptabs__title { font-size: clamp(26px, 3vw, 40px); font-weight: 800; letter-spacing: -.02em; color: var(--text); margin: 0; }
.egs-ptabs__nav { display: inline-flex; gap: 10px; flex-wrap: wrap; }
.egs-ptabs__tab { border: none; background: var(--bg-soft); color: var(--text-2); font-family: inherit; font-weight: 700; font-size: 14.5px; padding: 12px 24px; border-radius: 999px; cursor: pointer; transition: background .25s ease, color .25s ease, transform .2s ease, box-shadow .25s ease; }
.egs-ptabs__tab:hover { background: var(--border); }
.egs-ptabs__tab.is-active { background: var(--brand); color: #fff; box-shadow: 0 10px 24px rgba(248,86,4,.28); }

.egs-ptabs__panel { display: none; }
.egs-ptabs__panel.is-active { display: block; animation: egsPtFade .5s cubic-bezier(.16,1,.3,1); }
@keyframes egsPtFade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.egs-ptabs__empty { color: var(--muted); padding: 40px 0; text-align: center; }

.egs-ptabs__grid { display: grid; grid-template-columns: repeat(var(--cols, 6), 1fr); gap: 22px; }

/* ---- premium product card ---- */
.egs-pcard {
	position: relative; display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--border); border-radius: var(--r); overflow: hidden;
	transition: transform .45s cubic-bezier(.16,1,.3,1), box-shadow .45s cubic-bezier(.16,1,.3,1), border-color .45s;
}
.egs-pcard:hover { transform: translateY(-10px); box-shadow: 0 28px 60px rgba(13,20,38,.16); border-color: transparent; }

.egs-pcard__media { position: relative; aspect-ratio: 1; background: linear-gradient(180deg, #fbfcfe, #f3f6fb); overflow: hidden; }
.egs-pcard__imglink { display: grid; place-items: center; width: 100%; height: 100%; padding: 16%; }
.egs-pcard__img { grid-area: 1 / 1; max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .6s cubic-bezier(.16,1,.3,1), opacity .45s ease; }
.egs-pcard__img--main { transform: scale(1); }
.egs-pcard:hover .egs-pcard__img--main { transform: scale(1.08) translateY(-2px); }
.egs-pcard__img--hover { opacity: 0; }
.egs-pcard:hover .egs-pcard__img--hover { opacity: 1; transform: scale(1.08); }
.egs-pcard__shine { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,.55) 48%, transparent 62%); transform: translateX(-120%); }
.egs-pcard:hover .egs-pcard__shine { animation: egsPShine 1s cubic-bezier(.16,1,.3,1); }
@keyframes egsPShine { 0% { transform: translateX(-120%); } 100% { transform: translateX(120%); } }

.egs-pcard__badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }

.egs-pcard__actions { position: absolute; top: 12px; right: 12px; z-index: 4; display: flex; flex-direction: column; gap: 8px; }
.egs-pcard__act { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--text); box-shadow: var(--sh); opacity: 0; transform: translateX(14px) scale(.9); transition: opacity .3s var(--ease), transform .3s var(--ease), background .2s, color .2s; }
.egs-pcard__act:nth-child(2) { transition-delay: .05s; }
.egs-pcard__act:nth-child(3) { transition-delay: .1s; }
.egs-pcard:hover .egs-pcard__act { opacity: 1; transform: none; }
.egs-pcard__act:hover { background: var(--brand); color: #fff; transform: scale(1.1); }
.egs-pcard__act.is-active { background: var(--sale); color: #fff; }

.egs-pcard__body { display: flex; flex-direction: column; gap: 9px; padding: 16px 16px 18px; flex: 1; border-top: 1px solid var(--border); }
.egs-pcard__meta { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.egs-pcard__cat { font-size: 12px; color: var(--muted); font-weight: 600; }
.egs-pcard__rating { font-size: 13px; font-weight: 700; color: var(--text-2); display: inline-flex; align-items: center; gap: 3px; white-space: nowrap; }
.egs-pcard__star { color: var(--star); }
.egs-pcard__title { font-size: 15.5px; font-weight: 700; color: var(--text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; transition: color .2s; }
.egs-pcard__title:hover { color: var(--brand-600); }
.egs-pcard__swatches { display: flex; gap: 7px; min-height: 16px; }
.egs-pcard__swatch { width: 15px; height: 15px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1px var(--border-2), inset 0 0 0 2px #fff; cursor: pointer; transition: transform .2s; }
.egs-pcard__swatch:hover { transform: scale(1.18); }
.egs-pcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 6px; }
.egs-pcard__price { font-size: 18px; font-weight: 800; color: var(--brand-600); }
.egs-pcard__price del { color: var(--muted); font-weight: 600; font-size: 13px; margin-right: 5px; }
.egs-pcard__price ins { text-decoration: none; color: var(--brand-600); }
.egs-pcard__price .amount { color: inherit; }
.egs-pcard__cart { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--bg-soft); color: var(--text); flex: none; transition: background .25s ease, color .25s ease, transform .2s ease; position: relative; }
.egs-pcard__cart:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }
.egs-pcard__cart.loading { opacity: .6; pointer-events: none; }
.egs-pcard__cart.added { background: var(--new); color: #fff; }
.egs-pcard__cart .added_to_cart { display: none; }

@media (max-width: 1200px) { .egs-ptabs__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1024px) { .egs-ptabs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .egs-ptabs__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.egs-pcard__act { opacity: 1; transform: none; }
	.egs-ptabs__head { gap: 14px; }
}

/* =========================================================================
   CATEGORY CIRCLES — "Shop by categories"
   ========================================================================= */
.egs-catcircles { padding-block: 8px; }
.egs-catcircles__title { font-size: clamp(20px, 2vw, 26px); font-weight: 700; color: var(--text); letter-spacing: -.01em; margin: 0 0 26px; }
.egs-catcircles__row { display: flex; flex-wrap: wrap; gap: 26px 18px; align-items: flex-start; }
.egs-catcircle { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 116px; flex: 0 0 auto; }
.egs-catcircle__media {
	width: 116px; height: 116px; border-radius: 50%; background: #fff; display: grid; place-items: center;
	overflow: hidden; box-shadow: 0 10px 26px rgba(13,20,38,.07); border: 1px solid var(--border);
	transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.egs-catcircle__media img { width: 78%; height: 78%; object-fit: contain; transition: transform .4s var(--ease-out); }
.egs-catcircle:hover .egs-catcircle__media { transform: translateY(-6px) scale(1.04); box-shadow: 0 22px 44px rgba(13,20,38,.16); border-color: transparent; }
.egs-catcircle:hover .egs-catcircle__media img { transform: scale(1.08); }
.egs-catcircle__ph { font-size: 32px; font-weight: 800; color: var(--brand); }
.egs-catcircle__label { font-size: 14.5px; font-weight: 600; color: var(--text-2); text-align: center; transition: color .2s; }
.egs-catcircle:hover .egs-catcircle__label { color: var(--brand-600); }

/* =========================================================================
   FEATURED CARDS — "Most Popular"
   ========================================================================= */
.egs-fcards { display: grid; grid-template-columns: repeat(var(--cols, 3), 1fr); gap: 28px; }
.egs-fcard {
	position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
	background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px 32px 40px;
	overflow: hidden; transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s;
}
.egs-fcard:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.egs-fcard__media { display: grid; place-items: center; width: 100%; min-height: 300px; margin-bottom: 22px; }
.egs-fcard__media img { max-width: 86%; max-height: 320px; width: auto; object-fit: contain; transition: transform .55s var(--ease-out); filter: drop-shadow(0 26px 44px rgba(13,20,38,.16)); }
.egs-fcard:hover .egs-fcard__media img { transform: scale(1.05) translateY(-4px); }
.egs-fcard__ph { width: 70%; aspect-ratio: 1; border-radius: 24px; background: linear-gradient(160deg, #fdf2ea, #fff8f3); }
.egs-fcard__brand { font-size: 13px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.egs-fcard__title { font-size: clamp(22px, 2vw, 28px); font-weight: 800; letter-spacing: -.02em; color: var(--text); margin: 0 0 12px; }
.egs-fcard__desc { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 24px; max-width: 380px; }
.egs-fcard__btn {
	display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: 15px;
	padding: 14px 34px; border-radius: 999px; background: var(--brand); color: #fff;
	border: none !important; box-shadow: none !important; outline: none; margin-top: auto;
	transition: transform .25s var(--ease), background .25s ease;
}
.egs-fcard__btn:hover { background: var(--brand-600); color: #fff; transform: translateY(-2px); box-shadow: none !important; }

/* Dark variant */
.egs-fcard--dark { background: #0a0e18; border-color: #0a0e18; }
.egs-fcard--dark .egs-fcard__title { color: #fff; }
.egs-fcard--dark .egs-fcard__brand { color: var(--dark-muted); }
.egs-fcard--dark .egs-fcard__desc { color: var(--dark-muted); }
.egs-fcard--dark .egs-fcard__media img { filter: drop-shadow(0 30px 50px rgba(0,0,0,.5)); }

@media (max-width: 1024px) {
	.egs-fcards { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
	.egs-catcircle, .egs-catcircle__media { width: 100px; }
	.egs-catcircle__media { height: 100px; }
}
@media (max-width: 600px) {
	.egs-catcircles__row { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; gap: 18px; padding-bottom: 6px; }
	.egs-catcircles__row::-webkit-scrollbar { display: none; }
	.egs-catcircle, .egs-catcircle__media { width: 86px; }
	.egs-catcircle__media { height: 86px; }
	.egs-fcard__media { min-height: 220px; }
}

/* =========================================================================
   RECOMMENDED PRODUCTS GRID
   ========================================================================= */
.egs-recs { padding-block: 8px; }
.egs-recs__title { font-size: clamp(22px, 2.2vw, 30px); font-weight: 800; letter-spacing: -.02em; color: var(--text); margin: 0 0 26px; }
.egs-recs__grid { display: grid; grid-template-columns: repeat(var(--cols, 6), 1fr); gap: 22px; }

.egs-rcard {
	position: relative; display: flex; flex-direction: column; background: #fff;
	border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; text-align: center;
	transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out), border-color .4s;
}
.egs-rcard:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }

.egs-rcard__media { position: relative; aspect-ratio: 1; background: #fff; display: grid; place-items: center; padding: 14%; overflow: hidden; }
.egs-rcard__img { max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain; transition: transform .55s var(--ease-out); }
.egs-rcard:hover .egs-rcard__img { transform: scale(1.07) translateY(-3px); }

.egs-rcard__badges { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 7px; align-items: flex-start; }
.egs-rbadge { display: inline-flex; align-items: center; font-size: 12px; font-weight: 800; letter-spacing: .02em; padding: 5px 11px; border-radius: 999px; color: #fff; line-height: 1; box-shadow: var(--sh-sm); }
.egs-rbadge--sale { background: var(--sale); }
.egs-rbadge--hot  { background: var(--hot); }
.egs-rbadge--new  { background: var(--new); }
.egs-rbadge--best { background: var(--cta-amber); color: #1b1300; }

.egs-rcard__body { display: flex; flex-direction: column; align-items: center; gap: 7px; padding: 18px 16px 22px; flex: 1; border-top: 1px solid var(--border); }
.egs-rcard__title { font-size: 15.5px; font-weight: 700; color: var(--text); line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.7em; transition: color .2s; }
.egs-rcard:hover .egs-rcard__title { color: var(--brand-600); }
.egs-rcard__cat { font-size: 13px; color: var(--muted); font-weight: 500; }
.egs-rcard__rating { display: inline-flex; gap: 1px; font-size: 15px; color: var(--border-2); letter-spacing: 1px; }
.egs-rcard__rating .on { color: var(--star); }
.egs-rcard__rating .half { position: relative; color: var(--border-2); }
.egs-rcard__rating .half::before { content: "★"; position: absolute; left: 0; top: 0; width: 50%; overflow: hidden; color: var(--star); }
.egs-rcard__price { margin-top: 5px; font-size: 17px; font-weight: 800; color: var(--sale); }
.egs-rcard__price del { color: var(--muted); font-weight: 600; font-size: 14px; margin-right: 7px; text-decoration: line-through; }
.egs-rcard__price ins { text-decoration: none; color: var(--sale); }
.egs-rcard__price .amount { color: inherit; }
.egs-rcard__price del .amount { color: var(--muted); }

@media (max-width: 1200px) { .egs-recs__grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1024px) { .egs-recs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 680px)  { .egs-recs__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

/* =========================================================================
   HOT DEALS — clean non-overlapping redesign
   ========================================================================= */
.egs-deals__card {
	position: relative; display: flex; flex-direction: column; align-items: center; text-align: center;
	min-height: 0; gap: 0; overflow: hidden; padding: 24px 18px 4px;
	background: linear-gradient(180deg, #fdf2ea 0%, #fff8f3 70%); border: 1px solid var(--border); border-radius: var(--r);
}
.egs-deals__bg, .egs-deals__overlay { display: none !important; }
.egs-deals__cardbody { position: static; display: flex; flex-direction: column; align-items: center; padding: 0; height: auto; }
.egs-deals__pn { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted); margin-bottom: 8px; }
.egs-deals__headline { font-size: 21px; font-weight: 800; line-height: 1.22; letter-spacing: -.01em; color: var(--text); max-width: 230px; margin-bottom: 18px; }
.egs-deals__btn { margin: 0 0 6px; padding: 12px 30px; font-size: 14.5px; }
.egs-deals__media { width: 100%; display: grid; place-items: center; padding-top: 10px; position: relative; }
.egs-deals__media::before { content: ""; position: absolute; width: 62%; aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle, rgba(248,86,4,.14), rgba(255,154,60,.10) 45%, transparent 70%); filter: blur(16px); }
.egs-deals__img { position: relative; max-height: 150px; width: auto; max-width: 78%; object-fit: contain; filter: drop-shadow(0 16px 26px rgba(13,20,38,.16)); }

/* Swatches are interactive buttons (click = preview that colour's photo). */
.egs-pcard__swatch { border: none; padding: 0; appearance: none; -webkit-appearance: none; }
.egs-pcard__swatch.is-active { transform: scale(1.18); box-shadow: 0 0 0 2px #fff, 0 0 0 3.5px var(--brand); }

/* =========================================================================
   MOST WANTED TILES — large category tiles + accessories pill row
   ========================================================================= */
.egs-mw { padding: 8px 0 4px; }
.egs-mw__title { font-size: clamp(22px, 2.4vw, 30px); font-weight: 800; letter-spacing: -.02em; color: var(--text); margin: 0 0 22px; }
.egs-mw__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.egs-mw__tile { display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.egs-mw__media {
	position: relative; display: grid; place-items: center; aspect-ratio: 1 / 0.78;
	background: var(--tile, #eef2fa); border-radius: 22px; overflow: hidden; padding: 24px;
	transition: transform .35s cubic-bezier(.22,.61,.36,1), box-shadow .35s ease;
}
.egs-mw__media::after {
	content: ""; position: absolute; inset: 0; border-radius: inherit;
	box-shadow: inset 0 0 0 1.5px rgba(13,20,38,.05);
}
.egs-mw__media img {
	width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply;
	filter: drop-shadow(0 18px 26px rgba(13,20,38,.16));
	transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.egs-mw__tile:hover .egs-mw__media { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(13,20,38,.12); }
.egs-mw__tile:hover .egs-mw__media img { transform: scale(1.06); }
.egs-mw__label {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 17.5px; font-weight: 800; letter-spacing: -.01em; color: var(--text);
	transition: color .2s ease;
}
.egs-mw__arrow { opacity: 0; transform: translateX(-6px); transition: all .25s ease; color: var(--brand); flex: none; }
.egs-mw__tile:hover .egs-mw__label { color: var(--brand-600); }
.egs-mw__tile:hover .egs-mw__arrow { opacity: 1; transform: none; }

.egs-mw__subtitle { font-size: 19px; font-weight: 800; letter-spacing: -.01em; color: var(--text); margin: 36px 0 16px; }
.egs-mw__pills { display: flex; flex-wrap: wrap; gap: 10px; }
.egs-mw__pill {
	display: inline-flex; align-items: center; background: var(--text); color: #fff;
	font-size: 14.5px; font-weight: 700; padding: 12px 22px; border-radius: 999px;
	transition: background .25s ease, transform .25s ease; line-height: 1;
}
.egs-mw__pill:hover { background: var(--brand); color: #fff; transform: translateY(-2px); }

@media (max-width: 1024px) {
	.egs-mw__grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 560px) {
	.egs-mw__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
	.egs-mw__media { padding: 14px; border-radius: 16px; }
	.egs-mw__label { font-size: 14.5px; }
	.egs-mw__pill { padding: 10px 16px; font-size: 13px; }
}

/* =========================================================================
   VIBRANT REDESIGN — conversion atoms (shared by new homepage widgets)
   ========================================================================= */
/* Amber CTA button variant (the single warm conversion accent) */
.egs-ebtn--amber { background: var(--cta-amber); color: #1b1300; box-shadow: var(--cta-glow); }
.egs-ebtn--amber:hover { background: var(--cta-amber-700); color: #1b1300; transform: translateY(-2px); }
.egs-ebtn--amber .egs-icon { color: inherit; }

/* "Save $X" caption + urgency progress bar on deal cards */
.egs-pcard__save, .egs-card__save { display: inline-block; font-size: 12px; font-weight: 800; color: var(--new); }
.egs-pcard__price ins { color: var(--sale); }            /* on deal cards the now-price is red */
.egs-pcard--deal .egs-pcard__media { background: linear-gradient(180deg, #fff, var(--sale-soft)) !important; }
.egs-pcard__urgency { margin-top: 9px; }
.egs-pcard__urgency-bar { height: 6px; border-radius: 99px; background: #f0d9d9; overflow: hidden; }
.egs-pcard__urgency-bar span { display: block; height: 100%; width: 0; border-radius: 99px; background: var(--deal-grad); transition: width 1.1s var(--ease-out); }
.is-in .egs-pcard__urgency-bar span { width: var(--fill, 60%); }
.egs-pcard__urgency-cap { display: block; margin-top: 5px; font-size: 11px; font-weight: 700; color: var(--sale); letter-spacing: .01em; }

/* -NN% sale badge shine sweep on scroll-in */
.egs-badge--sale { position: relative; overflow: hidden; }
.egs-badge--sale::after { content: ""; position: absolute; inset: 0; transform: translateX(-120%); background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent); }
.is-in .egs-badge--sale::after { animation: egsBadgeShine 1s var(--ease-out) .25s 1; }
@keyframes egsBadgeShine { to { transform: translateX(120%); } }

/* eyebrow accent variants for section heads */
.egs-eyebrow--amber { color: var(--cta-amber-700) !important; }
.egs-eyebrow--cyan, .egs-eyebrow--light { color: var(--brand-cyan) !important; }

/* frosted countdown cells (gradient strips) */
.egs-count { display: inline-flex; align-items: center; gap: 4px; font-variant-numeric: tabular-nums; }
.egs-count b { min-width: 30px; text-align: center; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 8px; padding: 5px 6px; font-weight: 800; font-size: 14px; color: #fff; }
.egs-count i { font-style: normal; color: var(--cta-amber); font-weight: 800; }
.egs-count.is-ending b { color: #fff; background: rgba(239,68,68,.85); }

/* reveal port for Elementor canvas (main.css defines .reveal; ensure it applies here) */
.elementor .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: var(--d, 0ms); }
.elementor .reveal.is-in { opacity: 1; transform: none; }

/* =========================================================================
   Accessibility — honor reduced motion (elementor.css had no guard)
   ========================================================================= */
@media (prefers-reduced-motion: reduce) {
	.egs-ehero__slide.is-active .egs-ehero__media img,
	.egs-pcard__shine, .egs-deals-strip__chip-track,
	.egs-band--dark::before, .egs-promo-ticker__count b { animation: none !important; }
	.is-in .egs-badge--sale::after { animation: none !important; }
	.egs-pcard__urgency-bar span { transition: none !important; }
	.elementor .reveal, .elementor .reveal.is-in { opacity: 1 !important; transform: none !important; transition: none !important; }
	.egs-mw__media, .egs-mw__media img, .egs-pcard, .egs-pcard__img, .egs-catcircle, .egs-ebtn { transition: none !important; }
}

/* always-visible wishlist heart (top-right) + hover actions pushed below it */
.egs-pcard__wish { position: absolute; top: 12px; right: 12px; z-index: 5; width: 38px; height: 38px; border: none; border-radius: 50%; background: #fff; color: var(--text); box-shadow: var(--sh); cursor: pointer; display: grid; place-items: center; transition: color .2s, background .2s, transform .2s; }
.egs-pcard__wish:hover { color: var(--sale); transform: scale(1.08); }
.egs-pcard__wish.is-active { background: var(--sale); color: #fff; }
.egs-pcard__actions { top: 58px; }
.egs-pcard__from { font-size: 12px; font-weight: 700; color: var(--muted); margin-right: 2px; }

/* =========================================================================
   REDESIGN SECTIONS — section-head extras, ticker, deals strip, promo banner
   ========================================================================= */
.egs-sectitle { font-weight: 800; letter-spacing: -.02em; line-height: 1.08; }
.egs-sechead__lead { min-width: 0; }
.egs-sechead__sub { margin: 8px 0 0; color: var(--muted); font-size: 15px; font-weight: 500; max-width: 560px; }

/* ---- Promo ticker (thin in-page strip) ---- */
.egs-promo-ticker { color: #fff; }
.egs-promo-ticker--gradient { background: var(--grad); }
.egs-promo-ticker--dark { background: var(--dark); }
.egs-promo-ticker__in { display: flex; align-items: center; justify-content: center; gap: 22px; min-height: 42px; padding: 7px 24px; flex-wrap: wrap; }
.egs-promo-ticker__track { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; justify-content: center; }
.egs-promo-ticker__msg { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.egs-promo-ticker__msg .egs-icon { color: var(--brand-cyan); }
.egs-promo-ticker__msg + .egs-promo-ticker__msg::before { content: "·"; position: absolute; margin-left: -14px; opacity: .5; }
.egs-promo-ticker__count { display: inline-flex; align-items: center; gap: 9px; font-size: 13px; font-weight: 800; }
.egs-promo-ticker__count-lbl { white-space: nowrap; }
.egs-count--sm b { min-width: 24px; padding: 3px 4px; font-size: 12px; }

/* ---- Today's Deals flash rail ---- */
.egs-deals-strip { padding: 60px 0; background:
	radial-gradient(900px 400px at 100% 0%, rgba(255,138,61,.07), transparent 60%),
	radial-gradient(800px 420px at -5% 100%, rgba(239,68,68,.06), transparent 60%), var(--bg-soft); scroll-margin-top: calc(var(--header-h) + 20px); }
.egs-deals-strip__right { display: inline-flex; align-items: center; gap: 14px; }
.egs-count--amber b { background: rgba(255,255,255,.92); color: var(--sale); border: none; box-shadow: var(--sh-sm); }
.egs-count--amber { background: var(--dark); padding: 6px 8px; border-radius: 12px; }
.egs-count--amber i { color: var(--cta-amber); }
.egs-deals-strip__grid { display: grid; grid-template-columns: repeat(var(--cols, 5), 1fr); gap: 20px; }

/* ---- Promo banner ---- */
.egs-pbanner-wrap { padding: 18px 0; }
.egs-pbanner { position: relative; overflow: hidden; border-radius: var(--r-lg); padding: clamp(34px, 5vw, 60px); display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; }
.egs-pbanner--has-img { grid-template-columns: 1.25fr .75fr; }
.egs-pbanner--gradient { background: var(--grad); color: #fff; }
.egs-pbanner--dark { background: radial-gradient(700px 360px at 90% 10%, rgba(255,154,60,.16), transparent 60%), var(--dark); color: #fff; }
.egs-pbanner--light { background: linear-gradient(120deg, var(--tint-blue), #fff 60%, var(--tint-cyan)); color: var(--text); border: 1px solid var(--border); }
.egs-pbanner::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px); background-size: 18px 18px; opacity: .5; pointer-events: none; }
.egs-pbanner--light::after { background-image: radial-gradient(rgba(248,86,4,.07) 1px, transparent 1px); }
.egs-pbanner__body { position: relative; z-index: 2; }
.egs-pbanner__eyebrow { display: inline-block; font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; opacity: .92; margin-bottom: 12px; }
.egs-pbanner--light .egs-pbanner__eyebrow { color: var(--brand-600); }
.egs-pbanner__title { font-size: clamp(24px, 3.2vw, 40px); font-weight: 800; letter-spacing: -.02em; line-height: 1.12; margin: 0 0 12px; }
/* On dark/gradient banners the <h2> must beat the global `h2 { color: var(--text) }`
   rule (inherited white loses to a direct element match), or the title goes invisible. */
.egs-pbanner--dark .egs-pbanner__title,
.egs-pbanner--gradient .egs-pbanner__title { color: #fff; }
.egs-pbanner--light .egs-pbanner__title { color: var(--text); }
.egs-pbanner__u { position: relative; white-space: nowrap; }
.egs-pbanner__u::after { content: ""; position: absolute; left: 0; right: 0; bottom: 2px; height: .32em; background: var(--brand-cyan); opacity: .55; border-radius: 4px; z-index: -1; }
.egs-pbanner--light .egs-pbanner__u::after { background: var(--cta-amber); opacity: .4; }
.egs-pbanner__sub { font-size: 15.5px; line-height: 1.65; opacity: .92; margin: 0 0 22px; max-width: 540px; }
.egs-pbanner__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.egs-pbanner__chip { display: inline-flex; align-items: center; font-size: 13px; font-weight: 800; padding: 8px 15px; border-radius: var(--pill); background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.26); }
.egs-pbanner--light .egs-pbanner__chip { background: #fff; color: var(--sale); border-color: var(--border); }
.egs-pbanner__media { position: relative; z-index: 2; display: grid; place-items: center; }
.egs-pbanner__media img { max-width: 100%; max-height: 280px; width: auto; object-fit: contain; filter: drop-shadow(0 26px 40px rgba(0,0,0,.3)); animation: egsHeroFloat 6s ease-in-out infinite; }

@media (max-width: 1024px) {
	.egs-deals-strip__grid { grid-template-columns: repeat(3, 1fr); }
	.egs-pbanner--has-img { grid-template-columns: 1fr; }
	.egs-pbanner__media { display: none; }
}
@media (max-width: 680px) {
	.egs-deals-strip { padding: 40px 0; }
	.egs-deals-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
	.egs-promo-ticker__count { width: 100%; justify-content: center; }
}

/* =========================================================================
   PRODUCT RAILS (New Arrivals / Recommended) + DARK TRENDING BAND + TRUST
   ========================================================================= */
.egs-recs { padding: 60px 0; }
.egs-recs__grid { display: grid; grid-template-columns: repeat(var(--cols, 5), 1fr); gap: 20px; }
/* horizontal scroll-snap rail */
.egs-recs__grid--rail { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(230px, 1fr); grid-template-columns: none; overflow-x: auto; scroll-snap-type: x mandatory; gap: 18px; padding: 4px 2px 14px; scrollbar-width: thin; -webkit-overflow-scrolling: touch; }
.egs-recs__grid--rail > .egs-pcard { scroll-snap-align: start; }
.egs-recs__grid--rail::-webkit-scrollbar { height: 6px; }
.egs-recs__grid--rail::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 99px; }

/* Dark cinematic band */
.egs-band--dark { background:
	radial-gradient(680px 360px at 8% 0%, rgba(248,86,4,.18), transparent 60%),
	radial-gradient(620px 340px at 96% 100%, rgba(255,154,60,.14), transparent 60%), var(--dark);
	padding: 64px 0; position: relative; }
.egs-band--dark::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px); background-size: 22px 22px; pointer-events: none; }
.egs-band--dark .egs-sectitle { color: var(--dark-text); }
.egs-band--dark .egs-viewall { color: var(--dark-text); border-color: var(--dark-border); }
.egs-band--dark .egs-viewall:hover { background: #fff; color: var(--text); }
/* cards on dark: inverted surface, cyan price */
.egs-band--dark .egs-pcard { background: var(--dark-2); border-color: var(--dark-border); }
.egs-band--dark .egs-pcard__media { background: linear-gradient(180deg, #131d36, #0c1326); }
.egs-band--dark .egs-pcard__title { color: var(--dark-text); }
.egs-band--dark .egs-pcard__cat, .egs-band--dark .egs-pcard__from { color: var(--dark-muted); }
.egs-band--dark .egs-pcard__price, .egs-band--dark .egs-pcard__price ins { color: var(--brand-cyan); }
.egs-band--dark .egs-pcard__price del { color: var(--dark-muted); }
.egs-band--dark .egs-refurb-chip { color: var(--brand-cyan); background: rgba(255,154,60,.08); border-color: rgba(255,154,60,.3); }
.egs-band--dark .egs-pcard__wish { background: var(--dark-3); color: var(--dark-text); }

/* Trust strip */
.egs-trust-strip { padding: 20px 0; }
.egs-trust-strip__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; background: #fff; border: 1px solid var(--border); border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 16px 8px; }
.egs-trust-strip__item { display: flex; align-items: center; gap: 13px; justify-content: center; padding: 6px 12px; }
.egs-trust-strip__item + .egs-trust-strip__item { border-left: 1px solid var(--border); }
.egs-trust-strip__ic { width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 13px; background: var(--bg-soft-2); color: var(--brand); }
.egs-trust-strip__txt { display: flex; flex-direction: column; line-height: 1.25; }
.egs-trust-strip__txt strong { font-size: 14.5px; font-weight: 800; color: var(--text); }
.egs-trust-strip__txt small { font-size: 12.5px; color: var(--muted); font-weight: 500; }

@media (max-width: 1024px) {
	.egs-recs__grid { grid-template-columns: repeat(3, 1fr); }
	.egs-band--dark .egs-recs__grid { grid-template-columns: repeat(2, 1fr); }
	.egs-trust-strip__row { grid-template-columns: repeat(2, 1fr); }
	.egs-trust-strip__item:nth-child(odd) { border-left: none; }
	.egs-trust-strip__item:nth-child(n+3) { border-top: 1px solid var(--border); padding-top: 14px; }
}
@media (max-width: 680px) {
	.egs-recs { padding: 38px 0; }
	.egs-recs__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}

/* =========================================================================
   MOBILE — discovery sections become scroll-snap rails (Temu/Daraz pattern)
   ========================================================================= */
@media (max-width: 680px) {
	.egs-deals-strip__grid,
	.egs-ptabs__grid,
	.egs-recs:not(.egs-band--dark) .egs-recs__grid {
		display: grid !important; grid-auto-flow: column; grid-template-columns: none !important;
		grid-auto-columns: 72%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory;
		padding: 2px 2px 12px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
	}
	.egs-deals-strip__grid::-webkit-scrollbar,
	.egs-ptabs__grid::-webkit-scrollbar,
	.egs-recs__grid::-webkit-scrollbar { display: none; }
	.egs-deals-strip__grid > .egs-pcard,
	.egs-ptabs__grid > .egs-pcard,
	.egs-recs__grid > .egs-pcard { scroll-snap-align: start; }
	/* the dark Trending band stays a 2-col grid for density */
	.egs-band--dark .egs-recs__grid { display: grid !important; grid-auto-flow: row; grid-template-columns: repeat(2, 1fr) !important; overflow: visible; gap: 12px; }
	/* tighter section rhythm on mobile */
	.egs-deals-strip { padding: 34px 0; }
	.egs-band--dark { padding: 40px 0; }
	.egs-pbanner-wrap { padding: 12px 0; }
	.egs-pbanner { padding: 28px 22px; }
	.egs-promo-ticker__track { gap: 6px 16px; }
	.egs-promo-ticker__msg { font-size: 12px; }
}

/* =========================================================================
   REVIEW FIXES — a11y focus, AA contrast, reduced-motion, tap targets
   ========================================================================= */
/* Keyboard focus visibility (was suppressed on .egs-ebtn) */
.egs-ebtn:focus-visible, .egs-pcard__wish:focus-visible, .egs-pcard__act:focus-visible,
.egs-pcard__cart:focus-visible, .egs-pcard__swatch:focus-visible, .egs-viewall:focus-visible,
.egs-mw__pill:focus-visible, .egs-mw__tile:focus-visible, .egs-pcard__title:focus-visible,
.egs-promo-ticker__close:focus-visible {
	outline: 2px solid var(--brand) !important; outline-offset: 2px; border-radius: 10px;
}
.egs-band--dark .egs-pcard__wish:focus-visible, .egs-band--dark *:focus-visible { outline-color: var(--brand-cyan) !important; }
/* reveal hover-only actions on keyboard focus + on touch devices */
.egs-pcard:focus-within .egs-pcard__act { opacity: 1; transform: none; }
@media (hover: none) { .egs-pcard__act { opacity: 1; transform: none; } }

/* AA contrast tweaks */
.egs-pcard__save, .egs-card__save { color: #15803d; }
.egs-pcard__urgency-cap { color: var(--cta-amber-700); }   /* one-red-per-card: urgency = amber, not a 3rd red */
.egs-promo-ticker--gradient { background: linear-gradient(100deg, var(--brand-700), var(--brand)); }  /* drop light-cyan end so white text passes AA */
.egs-promo-ticker__msg .egs-icon { color: #fff; }

/* Tap targets >= 44px on mobile */
@media (max-width: 680px) {
	.egs-pcard__wish, .egs-pcard__act, .egs-pcard__cart { width: 44px; height: 44px; }
	.egs-pcard__actions { top: 64px; }
}

/* Reduced-motion: catch the infinite float used by hero + promo banner */
@media (prefers-reduced-motion: reduce) {
	.egs-pbanner__media img, .egs-ehero__slide.is-active .egs-ehero__media img,
	.egs-deals-strip__chip-track, .egs-band--dark::before { animation: none !important; }
}

/* =========================================================================
   REFURBISHED ROWS — auto-syncing "Best refurbished {brand}" carousels (white)
   ========================================================================= */
.egs-refurb { padding: 60px 0; background: #fff; }
.egs-refurb__head { margin-bottom: 30px; }
.egs-refurb__head .egs-sectitle { color: var(--text); }
.egs-refurb-row { margin-top: 38px; }
.egs-refurb-row:first-of-type { margin-top: 8px; }
.egs-refurb-row__head { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.egs-refurb-row__title { font-size: clamp(19px, 1.8vw, 24px); font-weight: 800; letter-spacing: -.01em; color: var(--text); margin: 0; }
.egs-refurb-row__nav { display: inline-flex; align-items: center; gap: 8px; }
.egs-refurb-row__all { font-size: 13.5px; font-weight: 700; color: var(--brand-600); margin-right: 6px; }
.egs-refurb-row__all:hover { text-decoration: underline; }
.egs-rail-btn { width: 40px; height: 40px; border: none; border-radius: 50%; background: var(--bg-soft); color: var(--text); cursor: pointer; display: grid; place-items: center; transition: background .2s, color .2s, opacity .2s; }
.egs-rail-btn:hover { background: var(--brand); color: #fff; }
.egs-rail-btn[data-rail-prev] .egs-icon { transform: rotate(180deg); }
.egs-rail-btn:disabled { opacity: .35; cursor: default; background: var(--bg-soft); color: var(--muted); }

.egs-refurb-row__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(232px, 1fr); gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 4px 2px 12px; scrollbar-width: none; }
.egs-refurb-row__track::-webkit-scrollbar { display: none; }

.egs-refurb-card { scroll-snap-align: start; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--border); border-radius: var(--r); padding: 16px 16px 18px; box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s, border-color .2s; min-width: 0; }
.egs-refurb-card:hover { transform: translateY(-5px); box-shadow: var(--sh); border-color: var(--brand); }
.egs-refurb-card__media { display: grid; place-items: center; aspect-ratio: 1 / .92; background: var(--bg-soft); border-radius: var(--r-sm); overflow: hidden; margin-bottom: 12px; }
.egs-refurb-card__media img { width: 82%; height: 82%; object-fit: contain; mix-blend-mode: multiply; transition: transform .4s var(--ease); }
.egs-refurb-card:hover .egs-refurb-card__media img { transform: scale(1.06); }
.egs-refurb-card__sw { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 8px; min-height: 14px; }
.egs-refurb-card__sw span { width: 13px; height: 13px; border-radius: 50%; background: var(--c); box-shadow: 0 0 0 1px var(--border-2), inset 0 0 0 2px #fff; }
.egs-refurb-card__sw b { font-size: 11px; font-weight: 700; color: var(--muted); }
.egs-refurb-card__name { font-size: 15.5px; font-weight: 800; color: var(--text); line-height: 1.25; margin-bottom: 6px; }
.egs-refurb-card__rating { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 700; color: var(--text-2); margin-bottom: 8px; }
.egs-refurb-card__star { color: var(--star); }
.egs-refurb-card__rating i { color: var(--muted); font-style: normal; font-weight: 600; }
.egs-refurb-card__price { margin-top: auto; }
.egs-refurb-card__lbl { display: block; font-size: 12px; color: var(--muted); font-weight: 600; }
.egs-refurb-card__from { font-size: 21px; font-weight: 900; color: var(--text); letter-spacing: -.01em; }
.egs-refurb-card__was { margin-left: 8px; font-size: 13px; }
.egs-refurb-card__was del { color: var(--muted); }
/* Action buttons on refurb cards: the inner link uses display:contents so the
 * flex layout (incl. price margin-top:auto) is preserved, while the wishlist/
 * compare/view buttons sit above it as siblings (no anchor nesting). */
.egs-refurb-card { position: relative; }
.egs-refurb-card__link { display: contents; color: inherit; }
.egs-refurb-card:hover .egs-pcard__act,
.egs-refurb-card:focus-within .egs-pcard__act { opacity: 1; transform: none; }

@media (max-width: 680px) {
	.egs-refurb { padding: 38px 0; }
	.egs-refurb-row__track { grid-auto-columns: 70%; gap: 12px; }
	.egs-refurb-row__all { display: none; }
}
