:root {
  --elgtf-ink: #071522;
  --elgtf-ink-2: #123047;
  --elgtf-blue: #087ea5;
  --elgtf-cyan: #59c6e8;
  --elgtf-mint: #6fe0ca;
  --elgtf-cloud: #eef5f7;
  --elgtf-line: #d6e5e9;
  --elgtf-muted: #5c707c;
  --elgtf-white: #fff;
  --elgtf-danger: #b42318;
  --elgtf-success: #087a55;
  --elgtf-radius: 22px;
  --elgtf-shadow: 0 22px 65px rgba(7, 21, 34, .11);
}

.elgtf-shop,
.elgtf-account,
.elgtf-dashboard,
.elgtf-checkout,
.elgtf-cart {
  color: var(--elgtf-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

.elgtf-shop *,
.elgtf-account *,
.elgtf-dashboard *,
.elgtf-checkout *,
.elgtf-cart * { box-sizing: border-box; }

.elgtf-shop {
  position: relative;
  left: 50%;
  width: min(1480px, calc(100vw - 28px));
  max-width: none;
  margin: 0 0 70px;
  transform: translateX(-50%);
}

.elgtf-shop a { color: inherit; text-decoration: none; }
.elgtf-shop button,
.elgtf-shop input,
.elgtf-shop select,
.elgtf-account button,
.elgtf-account input { font: inherit; }
.elgtf-shop button,
.elgtf-account button { cursor: pointer; }
.elgtf-shop button:focus-visible,
.elgtf-shop a:focus-visible,
.elgtf-shop input:focus-visible,
.elgtf-shop select:focus-visible,
.elgtf-account button:focus-visible,
.elgtf-account a:focus-visible,
.elgtf-account input:focus-visible {
  outline: 3px solid rgba(8, 126, 165, .35);
  outline-offset: 3px;
}

.elgtf-icon { width: 1.25em; height: 1.25em; flex: 0 0 auto; }
.elgtf-eyebrow {
  display: block;
  margin: 0 0 9px;
  color: var(--elgtf-blue);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.elgtf-btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none !important;
  transition: border-color .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}
.elgtf-btn:hover { transform: translateY(-1px); }
.elgtf-btn:disabled { cursor: not-allowed; opacity: .48; transform: none; }
.elgtf-btn--primary { background: var(--elgtf-ink); color: #fff !important; }
.elgtf-btn--primary:hover { background: var(--elgtf-blue); }
.elgtf-btn--light { background: #fff; color: var(--elgtf-ink) !important; }
.elgtf-btn--light:hover { background: var(--elgtf-mint); }
.elgtf-btn--line { border-color: rgba(255, 255, 255, .32); color: #fff !important; }
.elgtf-btn--line:hover { border-color: #fff; }
.elgtf-btn--ghost { border-color: var(--elgtf-line); background: #fff; color: var(--elgtf-ink) !important; }

/* Hero */
.elgtf-hero {
  position: relative;
  isolation: isolate;
  min-height: 450px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 82px);
  border-radius: 30px;
  background:
    radial-gradient(circle at 87% 18%, rgba(89, 198, 232, .44), transparent 24%),
    radial-gradient(circle at 66% 95%, rgba(111, 224, 202, .18), transparent 31%),
    linear-gradient(135deg, #06131e 0%, #0a2a3d 58%, #0a526b 100%);
  color: #fff;
  box-shadow: 0 30px 90px rgba(7, 21, 34, .2);
}
.elgtf-hero::before,
.elgtf-hero::after {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(128, 220, 244, .22);
  border-radius: 50%;
  content: "";
}
.elgtf-hero::before { top: -190px; right: -120px; width: 530px; height: 530px; }
.elgtf-hero::after { top: -85px; right: -12px; width: 310px; height: 310px; }
.elgtf-hero .elgtf-eyebrow { color: var(--elgtf-cyan); }
.elgtf-hero__content { max-width: 760px; }
.elgtf-hero h1 {
  max-width: 780px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 6vw, 74px);
  font-weight: 850;
  letter-spacing: -.045em;
  line-height: .99;
}
.elgtf-hero__content > p { max-width: 680px; margin: 24px 0 0; color: #d6eaf0; font-size: clamp(17px, 2vw, 21px); }
.elgtf-hero__actions { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 30px; }
.elgtf-hero__panel {
  display: grid;
  max-width: 720px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 18px;
  background: rgba(255, 255, 255, .13);
  backdrop-filter: blur(16px);
}
.elgtf-hero__panel > div { display: flex; min-height: 94px; flex-direction: column; justify-content: center; padding: 18px 22px; background: rgba(4, 18, 28, .38); }
.elgtf-hero__panel strong { color: #fff; font-size: 24px; font-weight: 850; line-height: 1; }
.elgtf-hero__panel span { margin-top: 7px; color: #bcd5dd; font-size: 12px; }
.elgtf-hero__trust { position: absolute; right: clamp(26px, 5vw, 72px); bottom: clamp(25px, 5vw, 62px); display: flex; flex-direction: column; gap: 12px; }
.elgtf-hero__trust span { display: flex; align-items: center; gap: 9px; color: #d9edf2; font-size: 13px; font-weight: 700; }
.elgtf-hero__trust .elgtf-icon { color: var(--elgtf-mint); }

/* Catalogue */
.elgtf-catalogue { padding: clamp(34px, 5vw, 72px) clamp(0px, 2vw, 24px) 0; }
.elgtf-breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 30px; color: var(--elgtf-muted); font-size: 13px; }
.elgtf-breadcrumbs a:hover { color: var(--elgtf-blue); }
.elgtf-breadcrumbs strong { color: var(--elgtf-ink); font-weight: 750; }
.elgtf-catalogue__head { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 30px; }
.elgtf-catalogue__head > div { max-width: 850px; }
.elgtf-catalogue__head h2,
.elgtf-section-head h2 { margin: 0; color: var(--elgtf-ink); font-size: clamp(30px, 4vw, 48px); font-weight: 850; letter-spacing: -.035em; line-height: 1.04; }
.elgtf-catalogue__head p { max-width: 760px; margin: 14px 0 0; color: var(--elgtf-muted); font-size: 16px; }
.elgtf-account-link { flex: 0 0 auto; padding: 10px 0; border-bottom: 2px solid var(--elgtf-cyan); color: var(--elgtf-ink) !important; font-weight: 800; }

.elgtf-tools {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto auto;
  gap: 12px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid var(--elgtf-line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 12px 42px rgba(7, 21, 34, .06);
}
.elgtf-search { display: flex; min-height: 52px; align-items: center; gap: 11px; padding: 0 17px; border: 1px solid var(--elgtf-line); border-radius: 13px; background: var(--elgtf-cloud); }
.elgtf-search .elgtf-icon { color: var(--elgtf-blue); }
.elgtf-search input { width: 100%; min-width: 0; padding: 0; border: 0 !important; outline: 0 !important; background: transparent !important; box-shadow: none !important; color: var(--elgtf-ink); }
.elgtf-select { display: flex; min-width: 220px; flex-direction: column; justify-content: center; padding: 5px 14px; border: 1px solid var(--elgtf-line); border-radius: 13px; background: #fff; }
.elgtf-select span { color: var(--elgtf-muted); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.elgtf-select select { min-height: 27px; padding: 0 25px 0 0; border: 0 !important; outline: 0; background-color: transparent; color: var(--elgtf-ink); font-weight: 700; }
.elgtf-cart-launch { display: flex; min-width: 126px; align-items: center; justify-content: center; gap: 9px; padding: 0 16px; border: 0; border-radius: 13px; background: var(--elgtf-ink); color: #fff; font-weight: 800; }
.elgtf-cart-launch:hover { background: var(--elgtf-blue); }
.elgtf-cart-launch b { display: grid; width: 24px; height: 24px; place-items: center; border-radius: 50%; background: var(--elgtf-cyan); color: var(--elgtf-ink); font-size: 11px; }

.elgtf-chips { display: flex; gap: 9px; overflow-x: auto; margin: 18px 0 8px; padding: 2px 2px 8px; scrollbar-width: thin; }
.elgtf-chips a { flex: 0 0 auto; padding: 9px 15px; border: 1px solid var(--elgtf-line); border-radius: 999px; background: #fff; color: var(--elgtf-muted) !important; font-size: 13px; font-weight: 750; }
.elgtf-chips a:hover { border-color: #9bd4e5; background: #eef9fc; color: #075f7d !important; }
.elgtf-chips a.is-active { border-color: #78c6de; background: #dff4fa; color: #075f7d !important; box-shadow: inset 0 0 0 1px rgba(8, 126, 165, .08); }
.elgtf-chips small { margin-left: 4px; color: var(--elgtf-blue); font-size: 9px; }
.elgtf-chips a.is-active small { color: #075f7d; }
.elgtf-results { display: flex; align-items: center; justify-content: space-between; margin: 18px 1px 14px; color: var(--elgtf-muted); font-size: 13px; }
.elgtf-results p { margin: 0; }
.elgtf-results strong { color: var(--elgtf-ink); }
.elgtf-results button { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--elgtf-blue); font-weight: 750; }

.elgtf-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.elgtf-card { position: relative; display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--elgtf-line); border-radius: var(--elgtf-radius); background: #fff; box-shadow: 0 12px 40px rgba(7, 21, 34, .055); transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.elgtf-card:hover { border-color: #b8d2da; box-shadow: var(--elgtf-shadow); transform: translateY(-4px); }
.elgtf-card[hidden] { display: none !important; }
.elgtf-card__media { position: relative; display: grid; overflow: hidden; aspect-ratio: 4 / 3; place-items: center; padding: 18px; background: linear-gradient(145deg, #f8fbfc, #edf4f6); }
.elgtf-card__media img { width: 100%; height: 100%; object-fit: contain; transition: transform .25s ease; }
.elgtf-card:hover .elgtf-card__media img { transform: scale(1.025); }
.elgtf-image-placeholder { display: flex; width: 100%; height: 100%; min-height: 170px; flex-direction: column; align-items: center; justify-content: center; gap: 10px; color: #8ca2ad; }
.elgtf-image-placeholder .elgtf-icon { width: 36px; height: 36px; }
.elgtf-card__badges { position: absolute; z-index: 2; top: 13px; left: 13px; right: 58px; display: flex; flex-wrap: wrap; gap: 6px; }
.elgtf-card__badges b { display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 999px; background: var(--elgtf-ink); color: #fff; font-size: 9px; font-weight: 850; letter-spacing: .055em; line-height: 1; text-transform: uppercase; box-shadow: 0 5px 14px rgba(7, 21, 34, .16); }
.elgtf-card__badges b.is-secure { background: #075f7d; }
.elgtf-card__badges b.is-shipping { background: #0e7a60; }
.elgtf-card__badges b.is-used { background: #b15a13; }
.elgtf-card__badges .elgtf-icon { width: 11px; height: 11px; flex: 0 0 11px; }
.elgtf-wish { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--elgtf-line); border-radius: 50%; background: rgba(255, 255, 255, .94); color: var(--elgtf-ink); }
.elgtf-card > .elgtf-wish { position: absolute; z-index: 2; top: 12px; right: 12px; }
.elgtf-wish:hover,
.elgtf-wish.is-active { border-color: #e897a2; background: #fff1f3; color: #c6203b; }
.elgtf-wish.is-active .elgtf-icon { fill: currentColor; }
.elgtf-card__body { display: flex; flex: 1; flex-direction: column; padding: 19px; }
.elgtf-card__meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.elgtf-card__meta a { overflow: hidden; color: var(--elgtf-blue) !important; font-size: 10px; font-weight: 850; letter-spacing: .08em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.elgtf-card__meta span { flex: 0 0 auto; color: #eba800; font-size: 12px; letter-spacing: -1px; }
.elgtf-card h3 { min-height: 2.55em; margin: 0; color: var(--elgtf-ink); font-size: clamp(17px, 1.6vw, 20px); font-weight: 800; letter-spacing: -.018em; line-height: 1.26; }
.elgtf-card h3 a:hover { color: var(--elgtf-blue); }
.elgtf-card__desc { display: -webkit-box; min-height: 3.9em; overflow: hidden; margin: 10px 0 18px; -webkit-box-orient: vertical; -webkit-line-clamp: 3; color: var(--elgtf-muted); font-size: 13px; line-height: 1.48; }
.elgtf-card__feature-badges { display: flex; flex-wrap: wrap; gap: 6px; margin: 2px 0 13px; }
.elgtf-card__feature-badges span { display: inline-flex; min-height: 25px; align-items: center; gap: 5px; padding: 5px 8px; border: 1px solid #cfe2e8; border-radius: 8px; background: #f4fafc; color: #2e5969; font-size: 9px; font-weight: 850; letter-spacing: .035em; line-height: 1.15; text-transform: uppercase; }
.elgtf-card__feature-badges .elgtf-icon { width: 11px; height: 11px; flex: 0 0 11px; }
.elgtf-card__feature-badges .is-stock { border-color: #bfe3d5; background: #effaf5; color: #14684f; }
.elgtf-card__feature-badges .is-installation { border-color: #b9dff0; background: #eef8fd; color: #08678c; }
.elgtf-card__feature-badges .is-warranty { border-color: #d7d5f2; background: #f6f5fd; color: #514d91; }
.elgtf-card__feature-badges .is-used { border-color: #efd1b7; background: #fff7ef; color: #98501a; }
.elgtf-card__footer { display: flex; align-items: end; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 15px; border-top: 1px solid var(--elgtf-line); }
.elgtf-card__footer > div { display: flex; min-width: 0; flex-direction: column; }
.elgtf-card__footer strong { color: var(--elgtf-ink); font-size: clamp(21px, 2vw, 27px); font-weight: 850; letter-spacing: -.035em; line-height: 1; }
.elgtf-card__footer small { margin-top: 6px; color: var(--elgtf-muted); font-size: 9px; text-transform: uppercase; }
.elgtf-card__footer button { display: flex; min-height: 42px; align-items: center; gap: 7px; padding: 9px 12px; border: 0; border-radius: 11px; background: var(--elgtf-ink); color: #fff; font-size: 12px; font-weight: 800; }
.elgtf-card__footer button:hover { background: var(--elgtf-blue); }
.elgtf-soldout { padding: 7px 10px; border-radius: 999px; background: #f2f3f3; color: var(--elgtf-muted); font-size: 11px; font-weight: 800; }
.elgtf-pagination { display: flex; justify-content: center; gap: 7px; margin-top: 30px; }
.elgtf-pagination button { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid var(--elgtf-line); border-radius: 50%; background: #fff; color: var(--elgtf-ink); font-weight: 800; }
.elgtf-pagination button.is-active { border-color: var(--elgtf-ink); background: var(--elgtf-ink); color: #fff; }
.elgtf-no-results,
.elgtf-empty { padding: clamp(38px, 8vw, 80px); border: 1px dashed #b8cdd4; border-radius: var(--elgtf-radius); background: var(--elgtf-cloud); text-align: center; }
.elgtf-no-results h3,
.elgtf-empty h1,
.elgtf-empty h3 { margin: 0 0 8px; color: var(--elgtf-ink); font-size: 28px; }
.elgtf-no-results p,
.elgtf-empty p { margin: 0 0 20px; color: var(--elgtf-muted); }

.elgtf-procurement { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); gap: clamp(24px, 5vw, 70px); align-items: center; margin-top: clamp(46px, 8vw, 96px); padding: clamp(30px, 6vw, 68px); border-radius: 28px; background: var(--elgtf-ink); color: #fff; box-shadow: var(--elgtf-shadow); }
.elgtf-procurement__copy { max-width: 720px; }
.elgtf-procurement__copy .elgtf-eyebrow { color: var(--elgtf-cyan); }
.elgtf-procurement__copy h2 { margin: 5px 0 15px; color: #fff; font-size: clamp(31px, 4.5vw, 55px); font-weight: 850; letter-spacing: -.04em; line-height: 1.02; }
.elgtf-procurement__copy p { margin: 0; color: #c6d8df; font-size: 16px; }
.elgtf-procurement__copy > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.elgtf-procurement__copy .elgtf-btn--ghost { border-color: #48616c; color: #fff; }
.elgtf-procurement__areas { display: grid; gap: 10px; }
.elgtf-procurement__areas article { display: flex; flex-direction: column; padding: 17px 19px; border: 1px solid #29434f; border-radius: 15px; background: rgba(255, 255, 255, .035); }
.elgtf-procurement__areas strong { color: #fff; font-size: 15px; }
.elgtf-procurement__areas span { margin-top: 3px; color: #9fb8c2; font-size: 12px; }

/* Product */
.elgtf-product-page { padding: 20px clamp(0px, 2vw, 22px) 0; }
.elgtf-product-page > .elgtf-breadcrumbs { margin-top: 8px; }
.elgtf-product { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(380px, .9fr); gap: clamp(28px, 5vw, 74px); align-items: start; padding: clamp(20px, 4vw, 52px); border: 1px solid var(--elgtf-line); border-radius: 28px; background: #fff; box-shadow: 0 18px 70px rgba(7, 21, 34, .07); }
.elgtf-gallery__main { display: grid; overflow: hidden; aspect-ratio: 1 / 1; place-items: center; padding: clamp(18px, 4vw, 44px); border-radius: 22px; background: linear-gradient(145deg, #f8fbfc, #eaf3f5); }
.elgtf-gallery__main img { width: 100%; height: 100%; object-fit: contain; }
.elgtf-gallery__thumbs { display: grid; grid-template-columns: repeat(5, 1fr); gap: 9px; margin-top: 10px; }
.elgtf-gallery__thumbs button { overflow: hidden; aspect-ratio: 1; padding: 7px; border: 1px solid var(--elgtf-line); border-radius: 12px; background: #fff; }
.elgtf-gallery__thumbs button.is-active { border: 2px solid var(--elgtf-blue); }
.elgtf-gallery__thumbs img { width: 100%; height: 100%; object-fit: contain; }
.elgtf-product__info { position: sticky; top: 24px; }
.elgtf-product__info h1 { margin: 0; color: var(--elgtf-ink); font-size: clamp(34px, 4.2vw, 58px); font-weight: 850; letter-spacing: -.045em; line-height: 1.01; }
.elgtf-rating { display: flex; align-items: center; gap: 9px; margin-top: 15px; }
.elgtf-rating span { color: #eaaa00; letter-spacing: 1px; }
.elgtf-rating small { color: var(--elgtf-muted); }
.elgtf-rating.is-compact { margin-top: 0; gap: 5px; }
.elgtf-reviewed { display: inline-flex; align-items: center; margin-top: 15px; color: #467064; font-size: .82rem; font-weight: 800; }
.elgtf-reviewed::before { content: "✓"; display: grid; place-items: center; width: 18px; height: 18px; margin-right: 6px; border-radius: 50%; background: #daf7ea; color: #087a55; font-size: .7rem; }
.elgtf-reviewed.is-compact { margin-top: 0; font-size: .72rem; }
.elgtf-product__price { display: flex; align-items: baseline; gap: 12px; margin-top: 22px; }
.elgtf-product__price strong { color: var(--elgtf-ink); font-size: clamp(34px, 4vw, 50px); font-weight: 850; letter-spacing: -.045em; }
.elgtf-product__price span { color: var(--elgtf-muted); font-size: 12px; }
.elgtf-availability { display: flex; width: fit-content; align-items: center; gap: 8px; margin: 4px 0 22px; padding: 7px 11px; border-radius: 999px; background: #eef2f3; color: var(--elgtf-muted); font-size: 12px; font-weight: 750; }
.elgtf-availability i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.elgtf-availability.is-available { background: #e6f7f0; color: var(--elgtf-success); }
.elgtf-availability.is-out { background: #fff0ee; color: var(--elgtf-danger); }
.elgtf-product__description { color: var(--elgtf-muted); font-size: 15px; }
.elgtf-product__description p { margin: 0 0 12px; }
.elgtf-installation { display: flex; gap: 13px; align-items: start; margin-top: 23px; padding: 16px; border: 1px solid #b9dfd6; border-radius: 15px; background: #effaf7; cursor: pointer; }
.elgtf-installation input { width: 19px; height: 19px; margin: 3px 0 0; accent-color: var(--elgtf-success); }
.elgtf-installation span { display: flex; flex-direction: column; }
.elgtf-installation strong { font-size: 14px; }
.elgtf-installation small { margin-top: 4px; color: var(--elgtf-muted); font-size: 11px; }
.elgtf-product__buy { display: grid; grid-template-columns: 86px 1fr 48px; gap: 9px; margin-top: 23px; }
.elgtf-product__buy > label { display: flex; flex-direction: column; color: var(--elgtf-muted); font-size: 10px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.elgtf-product__buy input { width: 100%; height: 48px; margin-top: 4px; padding: 0 9px; border: 1px solid var(--elgtf-line); border-radius: 12px; background: #fff; color: var(--elgtf-ink); text-align: center; }
.elgtf-product__buy .elgtf-wish { align-self: end; width: 48px; height: 48px; }
.elgtf-product__buy .elgtf-btn { align-self: end; }
.elgtf-trust-list { display: grid; gap: 9px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--elgtf-line); }
.elgtf-trust-list span { display: flex; align-items: center; gap: 9px; color: var(--elgtf-muted); font-size: 12px; }
.elgtf-trust-list .elgtf-icon { color: var(--elgtf-blue); }
.elgtf-product__help { margin: 19px 0 0; color: var(--elgtf-muted); font-size: 12px; }
.elgtf-product__help a { border-bottom: 1px solid var(--elgtf-blue); color: var(--elgtf-blue) !important; font-weight: 750; }
.elgtf-related { padding: clamp(42px, 7vw, 90px) 0 0; }
.elgtf-section-head { margin-bottom: 24px; }

/* Cart and checkout */
body.elgtf-lock { overflow: hidden; }
.elgtf-screen { position: fixed; z-index: 999980; inset: 0; background: rgba(3, 14, 22, .68); backdrop-filter: blur(4px); }
.elgtf-cart {
  position: fixed;
  z-index: 999990;
  top: 0;
  right: 0;
  display: flex;
  width: min(460px, 100vw);
  height: 100dvh;
  flex-direction: column;
  background: #fff;
  box-shadow: -24px 0 80px rgba(0, 0, 0, .2);
  transform: translateX(102%);
  transition: transform .28s ease;
}
.elgtf-cart.is-open { transform: translateX(0); }
.elgtf-cart > header,
.elgtf-checkout > header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 24px; border-bottom: 1px solid var(--elgtf-line); }
.elgtf-cart h2,
.elgtf-checkout h2 { margin: 0; color: var(--elgtf-ink); font-size: 27px; font-weight: 850; letter-spacing: -.03em; }
.elgtf-cart > header button,
.elgtf-checkout > header button { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--elgtf-line); border-radius: 50%; background: #fff; color: var(--elgtf-ink); font-size: 26px; line-height: 1; }
.elgtf-cart__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.elgtf-cart__loading { padding: 60px 20px; color: var(--elgtf-muted); text-align: center; }
.elgtf-cart-empty { padding: 60px 20px; text-align: center; }
.elgtf-cart-empty .elgtf-icon { width: 42px; height: 42px; color: #91a7b1; }
.elgtf-cart-empty h3 { margin: 15px 0 5px; font-size: 22px; }
.elgtf-cart-empty p { margin: 0; color: var(--elgtf-muted); font-size: 13px; }
.elgtf-cart-line { display: grid; grid-template-columns: 80px minmax(0, 1fr) auto; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--elgtf-line); }
.elgtf-cart-line__image { display: grid; overflow: hidden; width: 80px; height: 80px; place-items: center; padding: 6px; border-radius: 12px; background: var(--elgtf-cloud); }
.elgtf-cart-line__image img { width: 100%; height: 100%; object-fit: contain; }
.elgtf-cart-line h3 { overflow: hidden; margin: 1px 0 5px; font-size: 14px; font-weight: 800; line-height: 1.25; text-overflow: ellipsis; white-space: nowrap; }
.elgtf-cart-line__meta { color: var(--elgtf-muted); font-size: 11px; }
.elgtf-qty { display: flex; width: fit-content; align-items: center; margin-top: 10px; border: 1px solid var(--elgtf-line); border-radius: 999px; }
.elgtf-qty button { display: grid; width: 30px; height: 30px; place-items: center; border: 0; background: transparent; color: var(--elgtf-ink); }
.elgtf-qty span { min-width: 23px; text-align: center; font-size: 12px; font-weight: 800; }
.elgtf-cart-line__side { display: flex; flex-direction: column; align-items: end; justify-content: space-between; }
.elgtf-cart-line__side strong { font-size: 14px; white-space: nowrap; }
.elgtf-cart-line__side button { padding: 0; border: 0; background: transparent; color: var(--elgtf-danger); font-size: 11px; font-weight: 750; }
.elgtf-cart-line__install { display: flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--elgtf-muted); font-size: 10px; }
.elgtf-cart-line__install input { accent-color: var(--elgtf-success); }
.elgtf-shipping { margin: 18px 0; }
.elgtf-shipping h3 { margin: 0 0 9px; font-size: 13px; }
.elgtf-shipping label { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 7px; padding: 11px; border: 1px solid var(--elgtf-line); border-radius: 11px; cursor: pointer; }
.elgtf-shipping label:has(input:checked) { border-color: var(--elgtf-blue); background: #eff8fb; }
.elgtf-shipping label > span { display: flex; flex: 1; flex-direction: column; }
.elgtf-shipping label strong { font-size: 12px; }
.elgtf-shipping label small { color: var(--elgtf-muted); font-size: 10px; }
.elgtf-shipping input { accent-color: var(--elgtf-blue); }
.elgtf-cart__footer { padding: 18px 22px calc(18px + env(safe-area-inset-bottom)); border-top: 1px solid var(--elgtf-line); background: #fff; }
.elgtf-coupon > label { display: block; margin-bottom: 6px; color: var(--elgtf-muted); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.elgtf-coupon > div { display: grid; grid-template-columns: 1fr auto; gap: 7px; }
.elgtf-coupon input { min-width: 0; height: 42px; padding: 0 12px; border: 1px solid var(--elgtf-line); border-radius: 10px; text-transform: uppercase; }
.elgtf-coupon button { padding: 0 14px; border: 1px solid var(--elgtf-line); border-radius: 10px; background: var(--elgtf-cloud); color: var(--elgtf-ink); font-weight: 800; }
.elgtf-totals { display: grid; gap: 7px; margin: 15px 0; }
.elgtf-totals p { display: flex; align-items: center; justify-content: space-between; margin: 0; color: var(--elgtf-muted); font-size: 12px; }
.elgtf-totals p strong { color: var(--elgtf-ink); }
.elgtf-totals__grand { margin-top: 5px !important; padding-top: 10px; border-top: 1px solid var(--elgtf-line); color: var(--elgtf-ink) !important; font-size: 17px !important; font-weight: 850; }
.elgtf-totals small { color: var(--elgtf-muted); font-size: 9px; }
.elgtf-cart__footer > .elgtf-btn { width: 100%; }
.elgtf-cart__continue { display: block; margin-top: 10px; color: var(--elgtf-muted) !important; font-size: 12px; font-weight: 750; text-align: center; }

.elgtf-checkout {
  position: fixed;
  z-index: 1000000;
  top: 50%;
  left: 50%;
  display: none;
  width: min(1120px, calc(100vw - 30px));
  max-height: calc(100dvh - 30px);
  overflow: auto;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 35px 120px rgba(0, 0, 0, .34);
  transform: translate(-50%, -50%);
}
.elgtf-checkout.is-open { display: block; }
.elgtf-checkout__grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr); }
.elgtf-checkout-form { padding: 28px; }
.elgtf-checkout h3 { margin: 0 0 17px; color: var(--elgtf-ink); font-size: 18px; }
.elgtf-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.elgtf-fields label,
.elgtf-form > label { display: flex; flex-direction: column; gap: 6px; color: var(--elgtf-muted); font-size: 11px; font-weight: 750; }
.elgtf-fields .is-wide { grid-column: 1 / -1; }
.elgtf-fields input,
.elgtf-fields textarea,
.elgtf-form input { width: 100%; min-height: 46px; padding: 11px 12px; border: 1px solid var(--elgtf-line); border-radius: 11px; background: #fff; color: var(--elgtf-ink); box-shadow: none; }
.elgtf-fields textarea { min-height: 72px; resize: vertical; }
.elgtf-checkout-form > h3:not(:first-child) { margin-top: 25px; }
.elgtf-card-element { min-height: 48px; padding: 14px 12px; border: 1px solid var(--elgtf-line); border-radius: 11px; background: #fff; }
.elgtf-card-element.is-invalid { border-color: var(--elgtf-danger); }
.elgtf-payment-note { display: flex; align-items: center; gap: 8px; margin: 9px 0 0; color: var(--elgtf-muted); font-size: 10px; }
.elgtf-payment-note .elgtf-icon { color: var(--elgtf-success); }
.elgtf-payment-unavailable { padding: 14px; border: 1px solid #ffd8d3; border-radius: 11px; background: #fff3f1; color: var(--elgtf-danger); font-size: 12px; }
.elgtf-check { display: flex !important; flex-direction: row !important; align-items: start; gap: 9px !important; }
.elgtf-check input { width: 17px !important; min-height: 17px !important; height: 17px; margin: 2px 0 0; padding: 0; accent-color: var(--elgtf-blue); }
.elgtf-check span { color: var(--elgtf-muted); font-size: 11px; }
.elgtf-check a { color: var(--elgtf-blue) !important; text-decoration: underline; }
.elgtf-check.is-terms { margin: 19px 0; }
.elgtf-form-message { min-height: 20px; margin: 10px 0; color: var(--elgtf-danger); font-size: 12px; }
.elgtf-form-message.is-success { color: var(--elgtf-success); }
.elgtf-checkout-form > .elgtf-btn { width: 100%; }
.elgtf-checkout-summary { padding: 28px; border-left: 1px solid var(--elgtf-line); background: var(--elgtf-cloud); }
.elgtf-checkout-mini { display: grid; grid-template-columns: 52px 1fr auto; gap: 9px; align-items: center; padding: 9px 0; border-bottom: 1px solid var(--elgtf-line); }
.elgtf-checkout-mini img { width: 52px; height: 52px; object-fit: contain; border-radius: 8px; background: #fff; }
.elgtf-checkout-mini strong { display: block; overflow: hidden; font-size: 11px; line-height: 1.3; text-overflow: ellipsis; white-space: nowrap; }
.elgtf-checkout-mini small { color: var(--elgtf-muted); font-size: 9px; }
.elgtf-checkout-mini > b { font-size: 11px; white-space: nowrap; }
.elgtf-toast { position: fixed; z-index: 1000010; right: 22px; bottom: 22px; max-width: min(380px, calc(100vw - 44px)); padding: 13px 17px; border-radius: 999px; background: var(--elgtf-ink); color: #fff; box-shadow: var(--elgtf-shadow); font-size: 12px; font-weight: 750; opacity: 0; pointer-events: none; transform: translateY(18px); transition: opacity .2s, transform .2s; }
.elgtf-toast.is-show { opacity: 1; transform: none; }
.elgtf-toast.is-error { background: var(--elgtf-danger); }

/* Account */
.elgtf-account,
.elgtf-dashboard { position: relative; left: 50%; width: min(1120px, calc(100vw - 28px)); margin: 40px 0 70px; transform: translateX(-50%); }
.elgtf-account { display: grid; overflow: hidden; grid-template-columns: .9fr 1.1fr; border: 1px solid var(--elgtf-line); border-radius: 27px; background: #fff; box-shadow: var(--elgtf-shadow); }
.elgtf-account__intro { padding: clamp(32px, 6vw, 70px); background: linear-gradient(145deg, var(--elgtf-ink), #0b4d65); color: #fff; }
.elgtf-account__intro .elgtf-eyebrow { color: var(--elgtf-cyan); }
.elgtf-account__intro h1 { margin: 0; color: #fff; font-size: clamp(36px, 5vw, 58px); font-weight: 850; letter-spacing: -.04em; line-height: 1; }
.elgtf-account__intro p { color: #c7dce3; }
.elgtf-account__intro ul { display: grid; gap: 10px; margin: 32px 0 0; padding: 0; list-style: none; }
.elgtf-account__intro li::before { margin-right: 9px; color: var(--elgtf-mint); content: "✓"; }
.elgtf-auth-card { padding: clamp(30px, 6vw, 70px); }
.elgtf-auth-tabs { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 30px; padding: 5px; border-radius: 999px; background: var(--elgtf-cloud); }
.elgtf-auth-tabs a { padding: 10px; border-radius: 999px; color: var(--elgtf-muted); font-size: 13px; font-weight: 800; text-align: center; text-decoration: none; }
.elgtf-auth-tabs a.is-active { background: #fff; color: var(--elgtf-ink); box-shadow: 0 5px 18px rgba(7, 21, 34, .08); }
.elgtf-form { display: grid; gap: 15px; }
.elgtf-form h2 { margin: 0 0 7px; color: var(--elgtf-ink); font-size: 30px; font-weight: 850; letter-spacing: -.03em; }
.elgtf-form .elgtf-btn { width: 100%; margin-top: 4px; }
.elgtf-text-link { color: var(--elgtf-blue); font-size: 12px; font-weight: 750; text-align: center; }
.elgtf-dashboard { overflow: hidden; border: 1px solid var(--elgtf-line); border-radius: 26px; background: #fff; box-shadow: var(--elgtf-shadow); }
.elgtf-dashboard__head { display: grid; grid-template-columns: auto 1fr auto; gap: 18px; align-items: center; padding: 28px; background: var(--elgtf-cloud); }
.elgtf-avatar { border-radius: 50%; }
.elgtf-dashboard__head h1 { margin: 0; font-size: 28px; }
.elgtf-dashboard__head p { margin: 2px 0 0; color: var(--elgtf-muted); }
.elgtf-dashboard__bar { display: flex; align-items: center; justify-content: space-between; padding: 25px 28px; border-bottom: 1px solid var(--elgtf-line); }
.elgtf-dashboard__bar h2 { margin: 0; font-size: 22px; }
.elgtf-dashboard__bar a { color: var(--elgtf-blue); font-size: 12px; font-weight: 800; }
.elgtf-orders { display: grid; gap: 12px; padding: 20px 28px 30px; }
.elgtf-order { display: grid; grid-template-columns: .7fr 1fr 1.25fr .8fr; gap: 18px; padding: 18px; border: 1px solid var(--elgtf-line); border-radius: 15px; }
.elgtf-order > div { display: flex; flex-direction: column; }
.elgtf-order > div > span { color: var(--elgtf-muted); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.elgtf-order > div > strong { margin-top: 5px; font-size: 13px; }
.elgtf-order ul { grid-column: 1 / -1; margin: 0; padding: 12px 0 0 18px; border-top: 1px solid var(--elgtf-line); color: var(--elgtf-muted); font-size: 11px; }
.elgtf-status { width: fit-content; padding: 5px 8px; border-radius: 999px; background: #eef2f3; }
.elgtf-status--paid,
.elgtf-status--completed { background: #e2f7ee; color: var(--elgtf-success); }
.elgtf-status--paid_stock_review { background: #fff3d7; color: #8a5b00; }
.elgtf-status--payment_error,
.elgtf-status--cancelled { background: #fff0ee; color: var(--elgtf-danger); }

@media (max-width: 1180px) {
  .elgtf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .elgtf-hero__trust { display: none; }
  .elgtf-product { grid-template-columns: minmax(0, 1fr) minmax(350px, .9fr); }
}

@media (max-width: 900px) {
  .elgtf-shop { width: min(100%, calc(100vw - 20px)); }
  .elgtf-hero { min-height: 0; border-radius: 23px; }
  .elgtf-hero__panel { max-width: none; }
  .elgtf-tools { grid-template-columns: 1fr 1fr; }
  .elgtf-search { grid-column: 1 / -1; }
  .elgtf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elgtf-product { grid-template-columns: 1fr; }
  .elgtf-product__info { position: static; }
  .elgtf-checkout__grid { grid-template-columns: 1fr; }
  .elgtf-checkout-summary { border-top: 1px solid var(--elgtf-line); border-left: 0; }
  .elgtf-account { grid-template-columns: 1fr; }
  .elgtf-procurement { grid-template-columns: 1fr; }
  .elgtf-account__intro { padding-block: 42px; }
}

@media (max-width: 620px) {
  .elgtf-shop { width: calc(100vw - 14px); margin-bottom: 48px; }
  .elgtf-hero { padding: 32px 22px; border-radius: 19px; }
  .elgtf-hero h1 { font-size: clamp(36px, 12vw, 52px); }
  .elgtf-hero__content > p { font-size: 16px; }
  .elgtf-hero__actions { flex-direction: column; align-items: stretch; }
  .elgtf-hero__panel { grid-template-columns: 1fr; margin-top: 30px; }
  .elgtf-hero__panel > div { min-height: 74px; }
  .elgtf-catalogue { padding-top: 38px; }
  .elgtf-catalogue__head { align-items: start; flex-direction: column; gap: 8px; }
  .elgtf-tools { grid-template-columns: 1fr; }
  .elgtf-search { grid-column: auto; }
  .elgtf-select { min-width: 0; }
  .elgtf-cart-launch { min-height: 48px; }
  .elgtf-grid { grid-template-columns: 1fr; gap: 14px; }
  .elgtf-card { display: grid; grid-template-columns: 124px minmax(0, 1fr); border-radius: 17px; }
  .elgtf-card__media { height: 100%; min-height: 190px; aspect-ratio: auto; padding: 10px; }
  .elgtf-card > .elgtf-wish { top: 8px; right: 8px; width: 34px; height: 34px; }
  .elgtf-card__body { min-width: 0; padding: 15px 12px; }
  .elgtf-card__meta { padding-right: 28px; }
  .elgtf-card h3 { min-height: 0; font-size: 16px; }
  .elgtf-card__desc { min-height: 0; margin: 7px 0 12px; -webkit-line-clamp: 2; font-size: 11px; }
  .elgtf-card__footer { align-items: center; }
  .elgtf-card__footer strong { font-size: 20px; }
  .elgtf-card__footer button span { display: none; }
  .elgtf-card__footer button { width: 40px; height: 40px; justify-content: center; padding: 0; }
  .elgtf-card__badges b { padding: 4px 6px; font-size: 7px; }
  .elgtf-product-page { padding-top: 7px; }
  .elgtf-product { gap: 24px; padding: 14px; border-radius: 19px; }
  .elgtf-gallery__main { border-radius: 14px; }
  .elgtf-product__info h1 { font-size: 34px; }
  .elgtf-product__buy { grid-template-columns: 74px 1fr 44px; }
  .elgtf-product__buy .elgtf-btn { min-width: 0; padding-inline: 11px; font-size: 12px; }
  .elgtf-trust-list { grid-template-columns: 1fr; }
  .elgtf-cart > header,
  .elgtf-checkout > header { padding: 17px; }
  .elgtf-checkout { width: 100vw; max-height: 100dvh; border-radius: 0; }
  .elgtf-checkout-form,
  .elgtf-checkout-summary { padding: 20px 16px; }
  .elgtf-fields { grid-template-columns: 1fr; }
  .elgtf-fields .is-wide { grid-column: auto; }
  .elgtf-account,
  .elgtf-dashboard { width: calc(100vw - 14px); margin-top: 14px; }
  .elgtf-auth-card { padding: 28px 20px; }
  .elgtf-dashboard__head { grid-template-columns: auto 1fr; padding: 20px; }
  .elgtf-dashboard__head .elgtf-btn { grid-column: 1 / -1; }
  .elgtf-dashboard__bar { padding: 20px; }
  .elgtf-orders { padding: 15px; }
  .elgtf-procurement { padding: 28px 20px; border-radius: 19px; }
  .elgtf-procurement__copy > div { flex-direction: column; }
  .elgtf-order { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 390px) {
  .elgtf-card { grid-template-columns: 108px minmax(0, 1fr); }
  .elgtf-card__media { min-height: 176px; }
  .elgtf-card__body { padding: 12px 10px; }
  .elgtf-product__buy { grid-template-columns: 64px 1fr 42px; gap: 6px; }
  .elgtf-product__buy .elgtf-btn .elgtf-icon { display: none; }
  .elgtf-cart-line { grid-template-columns: 66px minmax(0, 1fr) auto; }
  .elgtf-cart-line__image { width: 66px; height: 66px; }
}

@media (prefers-reduced-motion: reduce) {
  .elgtf-shop *,
  .elgtf-cart,
  .elgtf-toast { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; }
}

/* ==========================================================
   ELGATEC Tienda 4.3 · cabecera con promociones y filtros
   ========================================================== */
.elgtf-hero {
  min-height: 560px;
  padding: 0;
  background: #06131e;
}
.elgtf-hero::before,
.elgtf-hero::after { display: none; }
.elgtf-hero__media,
.elgtf-hero__shade { position: absolute; inset: 0; }
.elgtf-hero__media { z-index: -3; overflow: hidden; background: linear-gradient(135deg, #071522, #0c516b); }
.elgtf-hero__slide {
  position: absolute;
  inset: -2%;
  opacity: 0;
  background-color: #0c3449;
  background-image: var(--elgtf-hero-image, linear-gradient(135deg, #071522, #0c516b));
  background-position: center;
  background-size: cover;
  transform: scale(1.045);
  transition: opacity .85s ease, transform 7.5s ease;
}
.elgtf-hero__slide:nth-child(2) { background-color: #163848; }
.elgtf-hero__slide:nth-child(3) { background-color: #123d58; }
.elgtf-hero__slide:nth-child(4) { background-color: #163f4e; }
.elgtf-hero__slide.is-active { opacity: 1; transform: scale(1); }
.elgtf-hero__shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 13, 21, .90) 0%, rgba(3, 15, 24, .76) 43%, rgba(4, 20, 31, .30) 73%, rgba(4, 17, 27, .48) 100%),
    linear-gradient(0deg, rgba(3, 13, 21, .58), transparent 58%);
}
.elgtf-hero__stage {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 560px;
  grid-template-rows: auto 1fr;
  padding: 26px clamp(28px, 4.5vw, 66px) 30px;
}
.elgtf-hero__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin: 0;
  color: rgba(224, 240, 246, .72);
  font-size: 12px;
  font-weight: 750;
}
.elgtf-hero__breadcrumbs a:hover { color: #fff; }
.elgtf-hero__breadcrumbs strong { color: #fff; }
.elgtf-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
  padding: 28px 0 30px;
}
.elgtf-hero__content { max-width: 760px; }
.elgtf-hero h1 { font-size: clamp(43px, 5.7vw, 76px); }
.elgtf-hero__content > p { max-width: 650px; margin-top: 20px; color: #d7e9ef; font-size: clamp(16px, 1.7vw, 20px); }
.elgtf-hero__actions { margin-top: 25px; }
.elgtf-hero__promo-viewport {
  min-width: 0;
  padding: 18px;
  margin: -18px;
  overflow: visible;
}
.elgtf-hero__promos { position: relative; min-height: 292px; }
.elgtf-hero__promo {
  position: absolute;
  inset: 0;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(25px, 3.3vw, 39px);
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 23px;
  opacity: 0;
  background: rgba(5, 22, 33, .68);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(18px);
  pointer-events: none;
  transform: scale(.975);
  transition: opacity .42s ease, transform .42s ease;
}
.elgtf-hero__promo.is-active { opacity: 1; pointer-events: auto; transform: scale(1); }
.elgtf-hero__promo > span {
  color: var(--elgtf-cyan);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.elgtf-hero__promo h2 {
  margin: 12px 0 12px;
  color: #fff;
  font-size: clamp(26px, 3vw, 39px);
  font-weight: 850;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.elgtf-hero__promo p { margin: 0; color: #c4d9e1; font-size: 14px; }
.elgtf-hero__promo a {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 15px;
  margin-top: 23px;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, .48);
  color: #fff !important;
  font-size: 13px;
  font-weight: 850;
}
.elgtf-hero__promo a:hover { border-color: var(--elgtf-cyan); color: var(--elgtf-cyan) !important; }
.elgtf-hero__promo a b { font-size: 20px; line-height: 1; }
.elgtf-hero__controls { display: flex; align-items: center; justify-content: flex-end; gap: 11px; margin-top: 18px; }
.elgtf-hero__controls > button {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(5, 22, 33, .48);
  color: #fff;
  font-size: 24px;
  line-height: 1;
}
.elgtf-hero__controls > button:hover { border-color: #fff; background: rgba(5, 22, 33, .8); }
.elgtf-hero__dots { display: flex; align-items: center; gap: 6px; }
.elgtf-hero__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  transition: width .25s ease, background .25s ease;
}
.elgtf-hero__dots button.is-active { width: 27px; background: var(--elgtf-cyan); }
.elgtf-hero__bar {
  display: grid;
  overflow: hidden;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 17px;
  background: rgba(2, 14, 22, .52);
  backdrop-filter: blur(15px);
}
.elgtf-hero__bar > div { min-width: 0; padding: 14px 18px; border-right: 1px solid rgba(255, 255, 255, .12); }
.elgtf-hero__bar > div:last-child { border-right: 0; }
.elgtf-hero__bar strong { display: flex; align-items: center; gap: 8px; color: #fff; font-size: 15px; font-weight: 850; }
.elgtf-hero__bar strong .elgtf-icon { color: var(--elgtf-mint); }
.elgtf-hero__bar span { display: block; overflow: hidden; margin-top: 3px; color: #a9c1cb; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }

.elgtf-catalogue { padding-top: clamp(30px, 4vw, 54px); }
.elgtf-catalogue__head { margin-bottom: 22px; }
.elgtf-toolbar {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(225px, auto) auto;
  gap: 11px;
  align-items: stretch;
  padding: 12px;
  border: 1px solid var(--elgtf-line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 12px 42px rgba(7, 21, 34, .06);
}
.elgtf-toolbar .elgtf-search { min-height: 54px; }
.elgtf-filterbox { position: relative; min-width: 225px; }
.elgtf-filterbox > summary {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 13px;
  border: 1px solid var(--elgtf-line);
  border-radius: 13px;
  background: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.elgtf-filterbox > summary::-webkit-details-marker { display: none; }
.elgtf-filterbox > summary::after { content: "⌄"; color: var(--elgtf-blue); font-size: 20px; font-weight: 800; transition: transform .2s ease; }
.elgtf-filterbox[open] > summary { border-color: #9dc5d3; box-shadow: 0 0 0 3px rgba(8, 126, 165, .08); }
.elgtf-filterbox[open] > summary::after { transform: rotate(180deg); }
.elgtf-filterbox__label { display: flex; min-width: 0; align-items: center; gap: 10px; }
.elgtf-filterbox__label .elgtf-icon { color: var(--elgtf-blue); }
.elgtf-filterbox__label > span { display: grid; min-width: 0; line-height: 1.15; }
.elgtf-filterbox__label strong { color: var(--elgtf-ink); font-size: 13px; }
.elgtf-filterbox__label small { overflow: hidden; margin-top: 4px; color: var(--elgtf-muted); font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.elgtf-filterbox__state { flex: 0 0 auto; padding: 4px 7px; border-radius: 999px; background: var(--elgtf-cloud); color: var(--elgtf-blue); font-size: 9px; font-weight: 850; }
.elgtf-filterbox__panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  width: min(690px, calc(100vw - 38px));
  padding: 21px;
  border: 1px solid var(--elgtf-line);
  border-radius: 19px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(7, 21, 34, .18);
}
.elgtf-filterbox__top { display: flex; align-items: end; justify-content: space-between; gap: 20px; }
.elgtf-filterbox__top .elgtf-eyebrow { margin-bottom: 3px; font-size: 9px; }
.elgtf-filterbox__top h3 { margin: 0; color: var(--elgtf-ink); font-size: 24px; }
.elgtf-filterbox__top .elgtf-select { min-width: 230px; }
.elgtf-filterbox__panel .elgtf-chips {
  flex-wrap: wrap;
  overflow: visible;
  max-height: 210px;
  margin: 19px 0 0;
  padding: 0 2px 4px;
}
.elgtf-filterbox__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 17px;
  padding-top: 15px;
  border-top: 1px solid var(--elgtf-line);
}
.elgtf-filterbox__footer p { margin: 0; color: var(--elgtf-muted); font-size: 12px; }
.elgtf-filterbox__footer strong { color: var(--elgtf-ink); }
.elgtf-filterbox__footer button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid var(--elgtf-line);
  border-radius: 999px;
  background: var(--elgtf-cloud);
  color: var(--elgtf-blue);
  font-size: 12px;
  font-weight: 850;
}
.elgtf-filterbox__footer button:hover { border-color: var(--elgtf-blue); background: #fff; }
.elgtf-toolbar .elgtf-cart-launch { min-height: 54px; }
.elgtf-results { flex-wrap: wrap; gap: 5px 18px; }
.elgtf-results > span { color: #80919a; font-size: 11px; }
.elgtf-grid { grid-auto-rows: 1fr; }
.elgtf-card { height: 100%; isolation: isolate; }

@media (max-width: 980px) {
  .elgtf-hero { min-height: 640px; }
  .elgtf-hero__stage { min-height: 640px; }
  .elgtf-hero__layout { grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr); gap: 28px; }
  .elgtf-hero__bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .elgtf-hero__bar > div:nth-child(2) { border-right: 0; }
  .elgtf-hero__bar > div:nth-child(-n+2) { border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .elgtf-toolbar { grid-template-columns: minmax(0, 1fr) auto; }
  .elgtf-toolbar .elgtf-search { grid-column: 1 / -1; }
  .elgtf-filterbox { min-width: 260px; }
}

@media (max-width: 720px) {
  .elgtf-hero { min-height: 780px; border-radius: 22px; }
  .elgtf-hero__shade { background: linear-gradient(0deg, rgba(3, 13, 21, .98) 0%, rgba(3, 15, 24, .9) 72%, rgba(3, 15, 24, .65) 100%); }
  .elgtf-hero__stage { min-height: 780px; padding: 20px 20px 22px; }
  .elgtf-hero__layout { grid-template-columns: 1fr; gap: 26px; padding: 23px 0; }
  .elgtf-hero h1 { font-size: clamp(38px, 10vw, 56px); }
  .elgtf-hero__content > p { margin-top: 15px; font-size: 15px; }
  .elgtf-hero__actions { margin-top: 20px; }
  .elgtf-hero__promos { min-height: 245px; }
  .elgtf-hero__promo { padding: 24px; border-radius: 19px; }
  .elgtf-hero__promo h2 { font-size: clamp(25px, 7vw, 34px); }
  .elgtf-hero__controls { margin-top: 12px; }
  .elgtf-hero__bar > div { padding: 11px 12px; }
  .elgtf-hero__bar strong { font-size: 12px; }
  .elgtf-hero__bar span { font-size: 9px; }
}

@media (max-width: 620px) {
  .elgtf-shop { width: calc(100vw - 12px); }
  .elgtf-hero { min-height: 800px; border-radius: 18px; }
  .elgtf-hero__stage { min-height: 800px; padding: 17px 15px 17px; }
  .elgtf-hero__breadcrumbs { font-size: 10px; }
  .elgtf-hero__content .elgtf-eyebrow { margin-bottom: 7px; font-size: 9px; }
  .elgtf-hero__actions { align-items: stretch; }
  .elgtf-hero__actions .elgtf-btn { min-height: 44px; }
  .elgtf-hero__promo-viewport { padding: 10px; margin: -10px; }
  .elgtf-hero__promo p { font-size: 12px; }
  .elgtf-hero__promo a { margin-top: 17px; }
  .elgtf-hero__controls { justify-content: center; }
  .elgtf-catalogue { padding-top: 28px; }
  .elgtf-toolbar { grid-template-columns: minmax(0, 1fr) auto; gap: 8px; padding: 9px; }
  .elgtf-toolbar .elgtf-search { grid-column: 1 / -1; min-height: 50px; }
  .elgtf-filterbox { position: static; min-width: 0; }
  .elgtf-filterbox > summary { min-height: 48px; padding-inline: 11px; }
  .elgtf-filterbox__state { display: none; }
  .elgtf-filterbox__panel { top: calc(100% + 8px); right: 0; left: 0; width: auto; padding: 17px; }
  .elgtf-filterbox__top { align-items: stretch; flex-direction: column; gap: 13px; }
  .elgtf-filterbox__top .elgtf-select { min-width: 0; }
  .elgtf-filterbox__panel .elgtf-chips { flex-wrap: nowrap; overflow-x: auto; max-height: none; padding-bottom: 9px; }
  .elgtf-filterbox__footer { align-items: stretch; flex-direction: column; }
  .elgtf-filterbox__footer button { width: 100%; }
  .elgtf-toolbar .elgtf-cart-launch { min-width: 104px; min-height: 48px; padding-inline: 12px; }
  .elgtf-results { align-items: flex-start; flex-direction: column; margin-top: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  .elgtf-hero__slide,
  .elgtf-hero__promo,
  .elgtf-hero__dots button { transition: none !important; }
}


/* ==========================================================
   ELGATEC Tienda 4.3.1 · ajuste visual puntual
   ========================================================== */
body.elgtf-store-page #elgatec-calendar-float,
body.elgtf-store-page .mobile-call,
body.elgtf-store-page #elgatec-phone-float,
body.elgtf-store-page #elgatec-call-float,
body.elgtf-store-page [data-elgatec-phone-float],
body.elgtf-store-page [data-elgatec-calendar-float] {
  display: none !important;
}

@media (max-width: 980px) {
  .elgtf-hero,
  .elgtf-hero__stage { min-height: 610px; }
}

@media (max-width: 720px) {
  .elgtf-hero,
  .elgtf-hero__stage { min-height: 710px; }
  .elgtf-hero__shade {
    background:
      linear-gradient(0deg, rgba(3, 13, 21, .96) 0%, rgba(3, 15, 24, .76) 67%, rgba(3, 15, 24, .48) 100%),
      linear-gradient(90deg, rgba(3, 13, 21, .74), rgba(3, 13, 21, .28));
  }
}

@media (max-width: 620px) {
  .elgtf-hero,
  .elgtf-hero__stage { min-height: 730px; }
  .elgtf-card__feature-badges span { font-size: 8px; }
}


/* ==========================================================
   ELGATEC Tienda 4.3.2 · reparación exacta solicitada
   - una única cabecera: el slider con imágenes
   - familias dentro del desplegable
   - navegación global siempre visible
   ========================================================== */
.elgtf-catalogue {
  scroll-margin-top: 112px;
  padding-top: clamp(22px, 3vw, 36px);
}
.elgtf-catalogue > .elgtf-toolbar:first-child { margin-top: 0; }

/* ==========================================================
   ELGATEC Tienda 4.3.3
   La cabecera original conserva su sitio y proporciones.
   El slider usa ese único espacio; no existe una segunda cabecera.
   ========================================================== */

/* Repara cualquier clase residual de 4.3.1 sin alterar el menú. */
body.elgtf-store-page .site-header.elgtf-store-floating-hidden,
body.elgtf-store-page [data-site-header].elgtf-store-floating-hidden {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
body.elgtf-store-page .utility-bar.elgtf-store-floating-hidden {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Solo en el catálogo: la cabecera estática del tema cede SU MISMO SITIO
   al slider. El menú global no se toca. */
body.elgtf-store-catalogue .portal-page > .page-hero {
  display: none !important;
}
body.elgtf-store-catalogue .portal-page > .section.section--light {
  overflow: visible;
  padding: 0 0 clamp(62px, 8vw, 98px) !important;
}
body.elgtf-store-catalogue .portal-page > .section.section--light > .site-shell.shortcode-shell {
  width: 100% !important;
  max-width: none !important;
  min-height: 0;
  margin: 0 !important;
}
body.elgtf-store-catalogue .elgtf-shop {
  left: auto;
  width: 100%;
  margin: 0;
  transform: none;
}

/* Un único hero, a ancho completo y con la altura visual de la cabecera anterior. */
body.elgtf-store-catalogue .elgtf-hero--original-position {
  min-height: 430px;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__stage {
  width: min(1180px, calc(100vw - 40px));
  min-height: 430px;
  margin-inline: auto;
  padding: 34px 0 34px;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, .88fr);
  gap: clamp(34px, 5vw, 72px);
  padding: 24px 0 14px;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__content {
  max-width: 620px;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__kicker {
  margin-bottom: 22px;
  color: #bfefff;
}
body.elgtf-store-catalogue .elgtf-hero--original-position h1 {
  max-width: 620px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 5vw, 66px);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.02;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__content > p {
  max-width: 590px;
  margin: 22px 0 0;
  color: #c3d3dc;
  font-size: 17px;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__shade {
  background:
    linear-gradient(90deg, rgba(3, 14, 23, .93) 0%, rgba(4, 18, 29, .78) 46%, rgba(5, 22, 34, .40) 72%, rgba(5, 22, 34, .50) 100%),
    linear-gradient(0deg, rgba(3, 13, 21, .46), transparent 62%);
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promo-viewport {
  padding: 14px;
  margin: -14px;
  overflow: visible;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promos {
  min-height: 238px;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promo {
  padding: 28px 31px;
  border-radius: 22px;
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promo h2 {
  font-size: clamp(27px, 3vw, 38px);
}
body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__controls {
  margin-top: 14px;
}

/* El catálogo conserva su ancho y empieza sin una segunda cabecera ni hueco grande. */
body.elgtf-store-catalogue .elgtf-catalogue,
body.elgtf-store-catalogue .elgtf-procurement,
body.elgtf-store-catalogue .elgtf-related {
  width: min(1480px, calc(100vw - 28px));
  margin-inline: auto;
}
body.elgtf-store-catalogue .elgtf-catalogue {
  padding-top: clamp(24px, 3.5vw, 42px);
}

/* Familias dentro del desplegable; seleccionada en azul claro. */
.elgtf-filterbox__panel .elgtf-chips a.is-active {
  border-color: #78c6de;
  background: #dff4fa;
  color: #075f7d !important;
  box-shadow: inset 0 0 0 1px rgba(8, 126, 165, .08);
}
.elgtf-filterbox__panel .elgtf-chips a.is-active small { color: #075f7d; }

/* Oculta solo widgets flotantes de llamada/calendario, nunca menú ni cabecera. */
body.elgtf-store-page .elgtf-store-widget-hidden,
body.elgtf-store-page #elgatec-calendar-float,
body.elgtf-store-page .mobile-call,
body.elgtf-store-page #elgatec-phone-float,
body.elgtf-store-page #elgatec-call-float,
body.elgtf-store-page [data-elgatec-phone-float],
body.elgtf-store-page [data-elgatec-calendar-float] {
  display: none !important;
}

@media (max-width: 980px) {
  body.elgtf-store-catalogue .elgtf-hero--original-position,
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__stage {
    min-height: 560px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
    gap: 28px;
  }
}

@media (max-width: 720px) {
  body.elgtf-store-catalogue .elgtf-hero--original-position,
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__stage {
    min-height: 680px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__stage {
    width: min(100% - 28px, 1180px);
    padding-block: 20px 22px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__layout {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 22px 0 12px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position h1 {
    font-size: clamp(39px, 10vw, 54px);
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__content > p {
    margin-top: 15px;
    font-size: 15px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promos {
    min-height: 218px;
  }
}

@media (max-width: 520px) {
  body.elgtf-store-catalogue .elgtf-hero--original-position,
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__stage {
    min-height: 710px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promo {
    padding: 23px;
  }
  body.elgtf-store-catalogue .elgtf-hero--original-position .elgtf-hero__promo h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
}
