/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Energard
Description: Energard dark theme child.
Version: 3.0.0
*/

/* ═══ ENERGARD DARK THEME ═══ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --gold:          #ffbf2f;
  --gold-light:    #ffd060;
  --gold-deep:     #f0b800;
  --blue:          #1B4FC4;
  --blue-light:    #4A90E8;
  --bg:            #09090D;
  --bg2:           #0E0E16;
  --surface:       #13131F;
  --surface2:      #1C1C2E;
  --border:        rgba(255,255,255,0.07);
  --text:          #F4F4F6;
  --muted:         rgba(244,244,246,0.45);
  --nav-bg:        rgba(9,9,13,0.85);
  --grid-line:     rgba(255,255,255,0.025);
  --hover-bg:      rgba(255,255,255,0.04);
  --card-shadow:   0 24px 60px rgba(0,0,0,0.5);
  --badge-neutral: rgba(255,255,255,0.08);
  --ok:            #4ADE80;
  --ok-bg:         rgba(34,197,94,0.16);
  --ok-bd:         rgba(34,197,94,0.3);
  --warn:          #FDE047;
  --warn-bg:       rgba(234,179,8,0.16);
  --warn-bd:       rgba(234,179,8,0.3);
  --font:          'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
*:focus { outline: none; }
*:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
html { scroll-behavior: smooth; accent-color: var(--gold); }
body {
  background: var(--bg) !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; margin: 0; padding: 0;
}

.site-header, .site-footer { display: none !important; }
.page-header { display: none; }
#content { padding: 0 !important; }
.site-main { padding: 0 !important; margin: 0 !important; }

/* ─── NAV ─── */
.eg-nav {
  position: sticky; top: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 68px;
  background: var(--nav-bg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.eg-nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.eg-nav-logo img { height: 36px; }
.eg-nav-logo-text {
  font-size: 18px; font-weight: 700; letter-spacing: 0.08em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eg-nav-links { display: flex; gap: 36px; list-style: none; margin: 0; padding: 0; }
.eg-nav-links a { color: var(--muted); text-decoration: none; font-size: 14px; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; }
.eg-nav-links a:hover { color: var(--text); }
.eg-nav-right { display: flex; align-items: center; gap: 14px; }

.eg-cart-btn {
  position: relative; width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); background: var(--surface2);
  color: var(--text); cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.eg-cart-btn:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-1px); }
.eg-cart-count {
  position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px;
  padding: 0 5px; border-radius: 100px; background: var(--gold);
  color: #09090D; font-size: 11px; font-weight: 700;
  display: none; align-items: center; justify-content: center; font-family: var(--font);
}
.eg-cart-count.show { display: flex; }

.eg-nav-cta {
  padding: 10px 24px; border-radius: 100px; font-size: 14px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #09090D !important; border: none; cursor: pointer; font-family: var(--font);
  text-decoration: none; display: inline-flex; align-items: center; transition: opacity 0.2s, transform 0.15s;
}
.eg-nav-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ── Mobile burger ── */
.eg-nav .eg-nav-burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface2) !important;
  color: var(--text) !important;
  cursor: pointer;
  align-items: center; justify-content: center;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s, color 0.2s;
  flex-shrink: 0;
  padding: 0;
  box-shadow: none !important;
}
.eg-nav .eg-nav-burger:hover { border-color: var(--gold); color: var(--gold) !important; }

/* ── Mobile drawer ── */
.eg-mob-menu {
  position: fixed;
  top: 68px; left: 0; right: 0;
  z-index: 9998;
  background: rgba(9,9,13,0.97);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 28px;
  display: flex; flex-direction: column;
  transform: translateY(-110%);
  transition: transform 0.28s cubic-bezier(0.4,0,0.2,1);
  pointer-events: none;
}
.eg-mob-menu.eg-open {
  transform: translateY(0);
  pointer-events: auto;
}
.eg-mob-links {
  list-style: none; margin: 0; padding: 0;
}
.eg-mob-links li { border-bottom: 1px solid var(--border); }
.eg-mob-links li:last-child { border-bottom: none; }
.eg-mob-links a {
  display: block;
  padding: 16px 4px;
  color: var(--text);
  font-size: 16px; font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
}
.eg-mob-links a:hover { color: var(--gold); }
.eg-mob-cta { margin-top: 24px; align-self: flex-start; }

/* ── Mobile overlay ── */
.eg-mob-overlay {
  display: none;
  position: fixed;
  inset: 0; top: 68px;
  z-index: 9997;
  background: rgba(0,0,0,0.5);
}
.eg-mob-overlay.eg-open { display: block; }

@media (max-width: 900px) {
  .eg-nav { padding: 0 20px; }
  .eg-nav-links { display: none; }
  .eg-nav-cta { display: none; }
  .eg-nav .eg-nav-burger { display: flex; }
}

/* ─── BUTTONS ─── */
.btn-primary {
  padding: 14px 32px; border-radius: 100px; font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #09090D; border: none; cursor: pointer; font-family: var(--font);
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 0 40px rgba(255,191,47,0.3);
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(255,191,47,0.4); color: #09090D; }
.btn-secondary {
  padding: 14px 32px; border-radius: 100px; font-size: 15px; font-weight: 500;
  background: transparent; border: 1px solid var(--border); color: var(--text);
  cursor: pointer; font-family: var(--font); transition: border-color 0.2s, background 0.2s, transform 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--muted); background: var(--hover-bg); transform: translateY(-2px); color: var(--text); }

/* ─── SHOP PAGE ─── */
.eg-shop-page { max-width: 1400px; margin: 0 auto; padding: 40px 48px 100px; }
.eg-shop-bg { background: var(--bg2); }

.eg-cat-strip { display: flex; gap: 8px; padding: 0 0 32px; flex-wrap: wrap; }
.eg-cat-btn {
  padding: 8px 20px; border-radius: 100px; font-size: 13px; font-weight: 500;
  border: 1px solid var(--border); background: transparent; color: var(--muted);
  cursor: pointer; transition: all 0.2s; font-family: var(--font); text-decoration: none; display: inline-block;
}
.eg-cat-btn:hover, .eg-cat-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(255,191,47,0.08); }

/* WC product grid */
.woocommerce ul.products, .woocommerce-page ul.products {
  display: grid !important; grid-template-columns: repeat(3,1fr) !important;
  gap: 24px !important; margin: 0 !important; padding: 0 !important;
  list-style: none !important; float: none !important; width: 100% !important;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  background: var(--surface) !important; border: 1px solid var(--border) !important;
  border-radius: 20px !important; overflow: hidden !important;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s !important;
  width: auto !important; float: none !important; margin: 0 !important; padding: 0 !important;
}
.woocommerce ul.products li.product:hover, .woocommerce-page ul.products li.product:hover {
  transform: translateY(-6px) !important;
  border-color: rgba(255,191,47,0.35) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5),0 0 0 1px rgba(255,191,47,0.18) !important;
}

/* ─── PRODUCT CARD ─── */
.woocommerce ul.products li.product.eg-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
  padding: 0 !important; margin: 0 !important;
}
.woocommerce ul.products li.product.eg-card:hover { border-color: rgba(255,191,47,0.35); transform: translateY(-2px); }

/* Thumbnail */
.eg-card-thumb {
  display: block; position: relative; aspect-ratio: 4/3;
  background: var(--surface2); overflow: hidden; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
}
.eg-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; margin: 0 !important; }
.eg-card-brand-wm {
  font-size: 15px; font-weight: 700; letter-spacing: 0.12em;
  color: rgba(244,244,246,0.12); text-transform: uppercase; user-select: none;
}

/* Badge */
.eg-card-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 100px; z-index: 1;
}
.eg-card-badge--ok  { background: rgba(34,197,94,0.15); color: #008b33; border: 1px solid rgba(2,147,56,0.25); }
.eg-card-badge--warn{ background: var(--warn-bg);  color: var(--warn); border: 1px solid var(--warn-bd); }

/* Body */
.eg-card-body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.eg-card-cat {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px; display: block;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 16px !important; font-weight: 600 !important; color: var(--text) !important;
  margin: 0 0 10px !important; padding: 0 !important; line-height: 1.35 !important;
  font-family: var(--font) !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: var(--text) !important; text-decoration: none !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover { color: var(--gold) !important; }

/* Spec chips */
.eg-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.eg-card-chip {
  padding: 3px 9px; border-radius: 6px; font-size: 11px; font-weight: 500;
  background: var(--surface2); color: var(--muted); border: 1px solid var(--border);
}

/* Footer: price + actions */
.eg-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px; margin-top: auto; flex-wrap: wrap;
}
.eg-card-price { display: flex; align-items: baseline; gap: 4px; }

/* Price — white, large */
.eg-card-price .woocommerce-Price-amount,
.eg-card-price .price,
.woocommerce ul.products li.product.eg-card .price {
  font-size: 22px !important; font-weight: 700 !important;
  color: var(--text) !important; font-family: var(--font) !important;
  margin: 0 !important; line-height: 1 !important;
}
.woocommerce ul.products li.product.eg-card .price bdi { color: var(--text) !important; }
.woocommerce ul.products li.product.eg-card .price .woocommerce-Price-currencySymbol {
  font-size: 14px !important; color: var(--muted) !important; font-weight: 500 !important;
}
.woocommerce ul.products li.product.eg-card .price del { display: none !important; }
.woocommerce ul.products li.product.eg-card .price ins {
  text-decoration: none !important; background: none !important;
}
.eg-price-request { font-size: 14px; color: var(--gold); font-weight: 600; }

/* Action buttons */
.eg-card-actions { display: flex; align-items: center; gap: 8px; }
.eg-card-cart-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); cursor: pointer; transition: all 0.2s; text-decoration: none;
}
.eg-card-cart-btn:hover { background: var(--gold); border-color: var(--gold); color: #000; }
.eg-card-cart-btn.added { background: var(--ok-bg); border-color: var(--ok-bd); color: var(--ok); }
.eg-card-detail-btn {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 10px; font-size: 13px; font-weight: 600;
  background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); text-decoration: none; transition: all 0.2s; white-space: nowrap;
  font-family: var(--font);
}
.eg-card-detail-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Keep old helpers alive (used elsewhere) */
.eg-stock-ok  { display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; background: var(--ok-bg);   color: var(--ok);   border: 1px solid var(--ok-bd);   }
.eg-stock-warn{ display: inline-flex; align-items: center; gap: 5px; padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; background: var(--warn-bg); color: var(--warn); border: 1px solid var(--warn-bd); }
.eg-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.eg-tag  { padding: 3px 10px; border-radius: 100px; font-size: 11px; font-weight: 500; background: var(--badge-neutral); color: var(--muted); border: 1px solid var(--border); }

/* Pagination */
.woocommerce nav.woocommerce-pagination ul { display: flex; gap: 8px; justify-content: center; list-style: none; padding: 40px 0; margin: 0; border: none !important; }
.woocommerce nav.woocommerce-pagination ul li { border: none !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span { padding: 8px 16px; border-radius: 100px; font-size: 14px; border: 1px solid var(--border) !important; color: var(--muted) !important; background: var(--surface); font-family: var(--font); transition: all 0.2s; }
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover { border-color: var(--gold) !important; color: var(--gold) !important; background: rgba(255,191,47,0.08) !important; }

.woocommerce-result-count { color: var(--muted) !important; font-family: var(--font) !important; font-size: 13px !important; }
.woocommerce-ordering select { background: var(--surface) !important; border: 1px solid var(--border) !important; color: var(--text) !important; border-radius: 8px !important; padding: 6px 12px !important; font-family: var(--font) !important; }
.woocommerce-breadcrumb { display: none !important; }

/* ─── SINGLE PRODUCT ─── */
.single-product .woocommerce { max-width: 1400px; margin: 0 auto; padding: 60px 48px; }
.woocommerce div.product .product_title { font-size: clamp(24px,3vw,40px) !important; font-weight: 700 !important; color: var(--text) !important; letter-spacing: -0.02em !important; font-family: var(--font) !important; }
.woocommerce div.product p.price, .woocommerce div.product span.price { font-size: 32px !important; font-weight: 700 !important; color: var(--gold-light) !important; font-family: var(--font) !important; }
.woocommerce div.product .woocommerce-product-details__short-description { color: var(--muted) !important; font-size: 15px !important; line-height: 1.7 !important; }
.woocommerce #respond input#submit, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce div.product form.cart .button {
  background: linear-gradient(135deg,var(--gold),var(--gold-deep)) !important; color: #09090D !important; border: none !important;
  border-radius: 100px !important; font-family: var(--font) !important; font-weight: 600 !important; padding: 14px 32px !important; font-size: 15px !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs { background: transparent !important; padding: 0 !important; border-bottom: 1px solid var(--border) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li { background: transparent !important; border: none !important; border-radius: 0 !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: var(--muted) !important; font-family: var(--font) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--text) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs .panel { background: var(--surface) !important; border: 1px solid var(--border) !important; border-radius: 16px !important; padding: 32px !important; color: var(--muted) !important; font-family: var(--font) !important; line-height: 1.7 !important; }

/* ─── CART & CHECKOUT SHARED ─── */
/* ─── WC NOTICES AS TOAST ─── */
.woocommerce-message, .woocommerce-info {
  position: fixed !important;
  top: 82px !important; right: 24px !important;
  z-index: 100000 !important;
  max-width: 320px !important; width: auto !important;
  background: var(--surface) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  border-radius: 16px !important;
  padding: 14px 16px !important;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55) !important;
  list-style: none !important;
  margin: 0 !important;
  animation: eg-toast-in 0.3s ease;
}
.woocommerce-message::before, .woocommerce-message li::before { display: none !important; }
.woocommerce-message a.button, .woocommerce-info a.button { display: none !important; }
/* Hide "View cart" button that appears on product cards after AJAX add-to-cart */
a.added_to_cart.wc-forward { display: none !important; }

/* ── Add-to-cart toast inner layout ── */
.eg-atc-toast { display: flex; align-items: center; gap: 12px; }
.eg-atc-icon {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(255,191,47,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.eg-atc-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 3px;
}
.eg-atc-name { font-size: 13px; color: var(--muted); font-weight: 400; line-height: 1.35; }
.woocommerce-error {
  position: fixed !important;
  top: 82px !important; right: 24px !important;
  z-index: 100000 !important;
  max-width: 360px !important;
  background: var(--surface2) !important;
  border: 1px solid rgba(229,72,77,0.4) !important;
  border-left: 3px solid #E5484D !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  border-radius: 12px !important;
  padding: 14px 18px !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5) !important;
  list-style: none !important;
  margin: 0 !important;
}
@keyframes eg-toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.eg-toast-fade { animation: eg-toast-out 0.4s ease forwards !important; }
@keyframes eg-toast-out {
  to { opacity: 0; transform: translateX(20px); }
}

/* ── Checkout: hide WC top notice block, use only per-field inline errors ── */
.eg-checkout-wrap .woocommerce-NoticeGroup-checkout { display: none !important; }
/* Per-field inline error (injected by WC JS as .checkout-inline-error-message) */
.eg-checkout-wrap .checkout-inline-error-message {
  font-size: 14px !important;
  margin-top: 7px !important;
  color: #ed1152 !important;
  font-family: var(--font) !important;
  margin-bottom: 0 !important;
}

/* ─── CART PAGE ─── */
.eg-cart-wrap { max-width: 1200px; margin: 0 auto; padding: 60px 48px 100px; }
.eg-cart-title { font-size: clamp(26px,3vw,40px); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 40px; }
.woocommerce table.shop_table {
  background: var(--surface) !important; border: 1px solid var(--border) !important;
  border-radius: 20px !important; color: var(--text) !important; font-family: var(--font) !important;
  border-collapse: separate !important; border-spacing: 0 !important; width: 100% !important; overflow: hidden !important;
}
.woocommerce table.shop_table th {
  font-size: 11px !important; font-weight: 600 !important; letter-spacing: 0.12em !important;
  text-transform: uppercase !important; color: var(--muted) !important;
  border-bottom: 1px solid var(--border) !important; background: transparent !important; padding: 16px 20px !important;
}
.woocommerce table.shop_table td { color: var(--text) !important; border-top: 1px solid var(--border) !important; padding: 16px 20px !important; font-family: var(--font) !important; vertical-align: middle !important; }
.woocommerce table.shop_table a { color: var(--gold) !important; text-decoration: none !important; }
.woocommerce table.cart .product-thumbnail img { border-radius: 10px !important; width: 72px !important; height: 72px !important; object-fit: cover !important; }
.woocommerce table.cart td.product-name { font-size: 15px !important; font-weight: 600 !important; }
.woocommerce table.cart td.product-name .variation { font-size: 12px !important; color: var(--muted) !important; font-weight: 400 !important; }
.woocommerce table.cart input.qty {
  background: var(--surface2) !important; border: 1px solid var(--border) !important;
  color: var(--text) !important; border-radius: 8px !important; font-family: var(--font) !important;
  padding: 8px 12px !important; width: 64px !important; text-align: center !important; font-size: 14px !important;
}
.woocommerce table.cart .remove { color: var(--muted) !important; font-size: 18px !important; }
.woocommerce table.cart .remove:hover { color: #E5484D !important; background: transparent !important; }
.woocommerce .cart-collaterals { margin-top: 32px !important; }
.woocommerce .cart-collaterals .cart_totals {
  background: var(--surface) !important; border: 1px solid var(--border) !important;
  border-radius: 20px !important; padding: 28px !important; float: right !important; width: 42% !important;
}
.woocommerce .cart-collaterals .cart_totals h2 { font-size: 18px !important; font-weight: 700 !important; color: var(--text) !important; font-family: var(--font) !important; margin-bottom: 20px !important; }
.woocommerce .cart-collaterals .cart_totals table { border: none !important; background: transparent !important; border-radius: 0 !important; }
.woocommerce .cart-collaterals .cart_totals table th, .woocommerce .cart-collaterals .cart_totals table td { border: none !important; border-bottom: 1px solid var(--border) !important; padding: 10px 0 !important; }
.woocommerce .cart-collaterals .cart_totals table tr:last-child th, .woocommerce .cart-collaterals .cart_totals table tr:last-child td { border-bottom: none !important; padding-top: 16px !important; }
.woocommerce .cart-collaterals .cart_totals table .order-total th, .woocommerce .cart-collaterals .cart_totals table .order-total td { font-size: 20px !important; font-weight: 700 !important; color: var(--text) !important; }
.woocommerce .coupon input.input-text {
  background: var(--surface2) !important; border: 1px solid var(--border) !important;
  color: var(--text) !important; border-radius: 10px !important; font-family: var(--font) !important;
  padding: 10px 14px !important; font-size: 14px !important;
}
.woocommerce button[name="apply_coupon"], .woocommerce button[name="update_cart"] {
  background: transparent !important; border: 1px solid var(--border) !important;
  color: var(--muted) !important; border-radius: 100px !important; font-family: var(--font) !important;
  padding: 10px 20px !important; font-size: 13px !important; font-weight: 600 !important; cursor: pointer !important;
  transition: all 0.2s !important;
}
.woocommerce button[name="apply_coupon"]:hover, .woocommerce button[name="update_cart"]:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.woocommerce a.checkout-button, .woocommerce .wc-proceed-to-checkout a.checkout-button {
  display: block !important; padding: 16px !important; border-radius: 100px !important;
  font-size: 15px !important; font-weight: 600 !important; text-align: center !important;
  background: linear-gradient(135deg,var(--gold),var(--gold-deep)) !important;
  color: #09090D !important; border: none !important; font-family: var(--font) !important;
  text-decoration: none !important; margin-top: 20px !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 8px 28px rgba(255,191,47,0.28) !important;
}
.woocommerce a.checkout-button:hover { transform: translateY(-2px) !important; box-shadow: 0 12px 36px rgba(255,191,47,0.38) !important; }

/* ═══ CHECKOUT PAGE ═══ */

/* Override hello-elementor site-main constraint so our checkout wrap can center itself */
.woocommerce-checkout .site-main,
.woocommerce-cart .site-main {
    max-width: none !important;
    width: 100% !important;
    padding-inline-start: 0 !important;
    padding-inline-end: 0 !important;
}
/* Hide default hello-elementor page title on checkout/cart (we render our own) */
.woocommerce-checkout .page-header,
.woocommerce-cart .page-header { display: none !important; }

/* Wrapper + header */
.woocommerce-checkout .eg-shop-page,
.woocommerce-cart .eg-shop-page { padding: 0 !important; }
.eg-checkout-wrap { max-width: 1140px; margin: 0 auto !important; padding: 40px 48px 100px; }
.eg-checkout-wrap .optional { display: none !important; }
.eg-checkout-head { margin-bottom: 36px; }
.eg-checkout-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.eg-checkout-title { font-size: clamp(30px,4vw,46px); font-weight: 700; letter-spacing: -0.02em; }

/* Two-column grid: form overrides need to be flat — template handles structure */
.eg-checkout-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }

/* ── Form cards ── */
.eg-form-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 32px; margin-bottom: 24px;
}
.eg-form-card h2 {
  font-size: 18px; font-weight: 700; margin-bottom: 4px;
  display: flex; align-items: center; gap: 10px; color: var(--text); font-family: var(--font);
}
.eg-step-n {
  width: 26px; height: 26px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0B0B0F; font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.eg-form-card-sub { font-size: 13px; color: var(--muted); margin: 0 0 22px 36px; }

/* Field grid (2-col inside card) */
.eg-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }

/* WC form-row resets inside our cards */
.eg-checkout-wrap .form-row { margin-bottom: 14px !important; float: none !important; clear: none !important; width: 100% !important; }
.eg-checkout-wrap .form-row label {
  color: var(--muted) !important; font-size: 13px !important; font-family: var(--font) !important;
  font-weight: 500 !important; display: block !important; margin-bottom: 6px !important;
}
.eg-checkout-wrap .form-row label .required { color: var(--gold) !important; }
.eg-checkout-wrap .form-row input.input-text,
.eg-checkout-wrap .form-row textarea,
.eg-checkout-wrap .form-row select {
  background: var(--surface2) !important; border: 1px solid var(--border) !important;
  color: var(--text) !important; border-radius: 12px !important; font-family: var(--font) !important;
  padding: 13px 16px !important; font-size: 14px !important; width: 100% !important;
  outline: none !important; transition: border-color 0.2s, box-shadow 0.2s !important; box-sizing: border-box !important;
}
.eg-checkout-wrap .form-row input.input-text:focus,
.eg-checkout-wrap .form-row textarea:focus {
  border-color: var(--gold) !important; box-shadow: 0 0 0 3px rgba(255,191,47,0.12) !important;
}
.eg-checkout-wrap .form-row.woocommerce-invalid input,
.eg-checkout-wrap .form-row.woocommerce-invalid select { border-color: #E5484D !important; }
.eg-checkout-wrap .form-row textarea { min-height: 90px !important; resize: vertical !important; }

/* ── Delivery / Payment option rows (eg-opt) ── */
.eg-opt-group { display: flex; flex-direction: column; gap: 10px; }
.eg-opt {
  display: flex; align-items: flex-start; gap: 12px; padding: 14px 16px;
  border: 1px solid var(--border); border-radius: 14px; cursor: pointer;
  transition: border-color 0.2s, background 0.2s; position: relative;
}
.eg-opt:hover { border-color: var(--muted); }
.eg-opt.eg-sel { border-color: var(--gold); background: rgba(255,191,47,0.06); }
.eg-opt-radio {
  flex-shrink: 0; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid var(--border); margin-top: 2px; position: relative; transition: border-color 0.2s;
}
.eg-opt.eg-sel .eg-opt-radio { border-color: var(--gold); }
.eg-opt.eg-sel .eg-opt-radio::after { content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--gold); }
.eg-opt-body { flex: 1; min-width: 0; }
.eg-opt-title { display: block; font-size: 14px; font-weight: 600; color: var(--text); }
.eg-opt-sub { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.eg-opt-meta { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--muted); white-space: nowrap; padding-left: 12px; }

/* ── Order review: hide WC payment list (Card 3 is our custom PHP render) ── */
.eg-sum-order-review .woocommerce-checkout-review-order-table { display: none !important; }
.eg-sum-order-review #payment { background: transparent !important; border: none !important; padding: 0 !important; }
.eg-sum-order-review #payment ul.payment_methods { display: none !important; }
.eg-sum-order-review #payment .payment_box { display: none !important; }

/* ── Summary (right column, sticky) ── */
.eg-summary {
  position: sticky; top: 92px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 28px;
}
.eg-summary-title { font-size: 17px; font-weight: 700; margin-bottom: 20px; color: var(--text); font-family: var(--font); }

.eg-sum-items { display: flex; flex-direction: column; gap: 14px; max-height: 300px; overflow-y: auto; margin-bottom: 20px; scrollbar-width: thin; scrollbar-color: rgba(255,191,47,0.35) transparent; }
.eg-sum-items::-webkit-scrollbar { width: 4px; }
.eg-sum-items::-webkit-scrollbar-track { background: transparent; border-radius: 4px; }
.eg-sum-items::-webkit-scrollbar-thumb { background: rgba(255,191,47,0.35); border-radius: 4px; }
.eg-sum-items::-webkit-scrollbar-thumb:hover { background: rgba(255,191,47,0.65); }
.eg-si { display: flex; gap: 12px; align-items: flex-start; }
.eg-si-img {
  flex-shrink: 0; width: 52px; height: 52px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-size: 9px; font-weight: 700; letter-spacing: 0.05em; color: var(--muted);
  border: 1px solid var(--border); background: var(--surface2); text-align: center; overflow: hidden;
}
.eg-si-body { flex: 1; min-width: 0; }
.eg-si-name { font-size: 13px; font-weight: 600; line-height: 1.3; color: var(--text); }
.eg-si-meta { font-size: 12px; color: var(--muted); margin-top: 3px; }
.eg-si-price { font-size: 13px; font-weight: 700; white-space: nowrap; color: var(--text); }
.eg-si-price.eg-si-req { color: var(--gold); font-weight: 600; }
/* compact qty controls in checkout items (inside eg-si-body) */
.eg-si-qty { gap: 6px; margin-top: 8px; }
.eg-si-qty .eg-sp-qty-btn { width: 28px; height: 28px; font-size: 15px; border-radius: 7px; }
.eg-si-qty .eg-sp-qty-display { min-width: 18px; font-size: 13px; }

/* ── WC Blocks Cart: quantity selector ── */
.wc-block-components-quantity-selector {
  display: flex !important; align-items: center !important; gap: 8px !important;
  background: transparent !important; border: none !important; padding: 0 !important;
}
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--minus,
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--plus {
  width: 38px !important; height: 38px !important; flex-shrink: 0 !important;
  background: var(--surface2) !important; border: 1px solid rgba(255,191,47,0.35) !important;
  border-radius: 9px !important; color: var(--gold) !important; font-size: 20px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  cursor: pointer !important; transition: border-color .2s, background .2s !important;
  padding: 0 !important; line-height: 1 !important; min-width: unset !important;
}
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--minus:hover,
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--plus:hover {
  border-color: var(--gold) !important; background: rgba(255,191,47,0.10) !important;
}
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--minus:disabled,
.wc-block-components-quantity-selector > .wc-block-components-quantity-selector__button--plus:disabled {
  opacity: .3 !important; cursor: default !important; border-color: var(--border) !important; color: var(--muted) !important;
}
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
  width: 36px !important; min-width: 36px !important; text-align: center !important;
  font-size: 18px !important; font-weight: 600 !important; color: var(--text) !important;
  background: transparent !important; border: none !important; box-shadow: none !important;
  font-family: var(--font) !important; padding: 0 !important;
  -moz-appearance: textfield !important;
}
.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input:focus {
  outline: none !important; box-shadow: none !important;
}
.eg-si-remove {
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; margin-top: 2px;
  font-size: 16px; line-height: 1; color: var(--muted);
  background: transparent; border: none; cursor: pointer;
  border-radius: 6px; text-decoration: none; transition: color 0.15s, background 0.15s;
}
.eg-si-remove:hover { color: #E5484D; background: rgba(229,72,77,0.12); }

.eg-sum-line { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; color: var(--muted); }
.eg-sum-line b, .eg-sum-line .woocommerce-Price-amount { color: var(--text); font-weight: 600; }
.eg-sum-divider { height: 1px; background: var(--border); margin: 12px 0; }
.eg-sum-total { display: flex; justify-content: space-between; align-items: baseline; margin: 6px 0 4px; }
.eg-sum-total-l { font-size: 15px; font-weight: 600; color: var(--text); }
.eg-sum-total-v { font-size: 28px; font-weight: 700; letter-spacing: -0.02em; color: var(--text); }
.eg-sum-total-v .woocommerce-Price-amount { font-size: 28px; font-weight: 700; color: var(--text); }
.eg-sum-note { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 10px 0 18px; }

/* place_order button inside summary */
.eg-sum-place-order { }
.eg-sum-place-order #payment { background: transparent !important; border: none !important; padding: 0 !important; }
.eg-sum-place-order .payment_methods { display: none !important; }
.eg-sum-place-order .place-order { padding: 0 !important; }
.eg-sum-place-order #place_order {
  width: 100% !important; padding: 16px !important; border-radius: 100px !important;
  font-size: 15px !important; font-weight: 600 !important;
  background: linear-gradient(135deg,var(--gold),var(--gold-deep)) !important;
  color: #09090D !important; border: none !important; cursor: pointer !important; font-family: var(--font) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 8px 28px rgba(255,191,47,0.28) !important;
}
.eg-sum-place-order #place_order:hover { transform: translateY(-2px) !important; box-shadow: 0 12px 36px rgba(255,191,47,0.38) !important; }

/* Trust badges */
.eg-checkout-trust { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.eg-checkout-trust div { font-size: 12px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.eg-checkout-trust svg { color: var(--gold); flex-shrink: 0; }

/* ── ORDER RECEIVED ── */
.eg-order-wrap { max-width: 640px; margin: 0 auto; padding: 80px 24px 100px; text-align: center; }
.eg-order-icon { width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; background: var(--ok-bg); border: 1px solid var(--ok-bd); color: var(--ok); }
.woocommerce-order h2 { font-size: 30px !important; font-weight: 700 !important; letter-spacing: -0.02em !important; color: var(--text) !important; font-family: var(--font) !important; margin-bottom: 12px !important; }
.woocommerce-order p.woocommerce-thankyou-order-received { font-size: 16px !important; color: var(--muted) !important; font-family: var(--font) !important; line-height: 1.6 !important; }
.woocommerce-order ul.woocommerce-order-overview { list-style: none !important; padding: 0 !important; display: flex !important; flex-wrap: wrap !important; gap: 12px !important; justify-content: center !important; margin: 24px 0 40px !important; }
.woocommerce-order ul.woocommerce-order-overview li { background: var(--surface) !important; border: 1px solid var(--border) !important; border-radius: 14px !important; padding: 12px 20px !important; font-family: var(--font) !important; color: var(--muted) !important; font-size: 13px !important; }
.woocommerce-order ul.woocommerce-order-overview li strong { color: var(--text) !important; display: block !important; font-size: 15px !important; font-weight: 700 !important; }
.woocommerce-order .woocommerce-order-details, .woocommerce-order .woocommerce-customer-details { text-align: left !important; }
.woocommerce-order .woocommerce-order-details h2, .woocommerce-order .woocommerce-customer-details h2 { font-size: 18px !important; font-weight: 700 !important; margin-bottom: 16px !important; }

/* Mobile checkout */
@media (max-width: 920px) {
  .eg-checkout-wrap { padding: 32px 20px 80px; }
  .eg-checkout-grid { grid-template-columns: 1fr; }
  .eg-summary { position: static; }
}
@media (max-width: 560px) {
  .eg-field-grid { grid-template-columns: 1fr; }
}

/* Cart page mobile */
@media (max-width: 900px) {
  .eg-cart-wrap { padding: 40px 20px 80px; }
  .woocommerce .cart-collaterals .cart_totals { float: none !important; width: 100% !important; }
}

/* ═══ CART DRAWER ═══ */

body.eg-body-lock { overflow: hidden !important; }

#eg-drawer-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(8,8,12,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
#eg-drawer-overlay.eg-open { opacity: 1; pointer-events: all; }

#eg-cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 9999;
  width: 420px; max-width: 92vw;
  background: var(--surface); border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(0,0,0,0.45);
  transform: translateX(102%); transition: transform 0.36s cubic-bezier(.4,0,.1,1);
  display: flex; flex-direction: column; font-family: var(--font);
}
#eg-cart-drawer.eg-open { transform: translateX(0); }

/* Drawer head */
.eg-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px; border-bottom: 1px solid var(--border); flex-shrink: 0;
}
.eg-drawer-head h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.01em; color: var(--text); margin: 0; }
.eg-drawer-cnt { color: var(--muted); font-weight: 400; font-size: 14px; }
#eg-drawer-close {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface2); color: var(--text); cursor: pointer; font-size: 15px;
  display: flex; align-items: center; justify-content: center; transition: all 0.2s; padding: 0;
  font-family: var(--font);
}
#eg-drawer-close:hover { border-color: var(--gold); color: var(--gold); }

/* Items list */
.eg-drawer-items {
  flex: 1; overflow-y: auto; padding: 14px 18px;
  display: flex; flex-direction: column; gap: 12px;
}

/* Empty state */
.eg-drawer-empty {
  text-align: center; color: var(--muted); padding: 60px 24px;
}
.eg-drawer-empty-ic { margin-bottom: 14px; opacity: 0.5; }
.eg-drawer-empty a { color: var(--gold); text-decoration: none; font-weight: 600; }

/* Cart item */
.eg-drawer-ci {
  display: flex; gap: 14px; padding: 14px; border-radius: 16px;
  background: var(--bg); border: 1px solid var(--border);
}
.eg-drawer-ci-img {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; color: var(--muted);
  border: 1px solid var(--border); background: var(--surface2); overflow: hidden;
  text-align: center;
}
.eg-drawer-ci-body { flex: 1; min-width: 0; }
.eg-drawer-ci-cat { font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.eg-drawer-ci-name { font-size: 14px; font-weight: 600; line-height: 1.3; margin-bottom: 8px; }
.eg-drawer-ci-name a { color: var(--text); text-decoration: none; }
.eg-drawer-ci-name a:hover { color: var(--gold); }
.eg-drawer-ci-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.eg-drawer-ci-qty { font-size: 12px; color: var(--muted); }
.eg-drawer-ci-price { font-size: 15px; font-weight: 700; text-align: right; }
.eg-drawer-ci-price small { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }
.eg-drawer-ci-price .woocommerce-Price-amount { font-size: 15px; font-weight: 700; }
.eg-drawer-ci-req { font-size: 12px; color: var(--gold); font-weight: 600; }
.eg-drawer-ci-qty-wrap.eg-sp-qty-wrap { margin: 0; }
.eg-drawer-ci-qty-wrap .eg-sp-qty-btn { width: 28px; height: 28px; font-size: 15px; border-radius: 7px; }
.eg-drawer-ci-qty-wrap .eg-sp-qty-display { font-size: 14px; min-width: 18px; }
.eg-drawer-ci-del {
  display: inline-block; background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 12px; padding: 0; transition: color 0.2s;
  margin-top: 6px; text-decoration: none; font-family: var(--font);
}
.eg-drawer-ci-del:hover { color: #E5484D; }

/* Footer */
.eg-drawer-foot {
  border-top: 1px solid var(--border); padding: 20px 24px 24px; flex-shrink: 0;
  background: var(--surface);
}
.eg-drawer-sum { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.eg-drawer-sum-lbl { font-size: 14px; color: var(--muted); }
.eg-drawer-sum-amt { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; }
.eg-drawer-sum-amt .woocommerce-Price-amount { font-size: 26px; font-weight: 700; }
.eg-drawer-checkout {
  display: block; width: 100%; text-align: center; padding: 15px;
  border-radius: 100px; font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0B0B0F !important; border: none; cursor: pointer; font-family: var(--font);
  text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 8px 26px rgba(255,191,47,0.25);
}
.eg-drawer-checkout:hover { transform: translateY(-2px); box-shadow: 0 12px 34px rgba(255,191,47,0.35); color: #0B0B0F !important; }
.eg-drawer-clear {
  display: block; width: 100%; text-align: center; margin-top: 10px;
  background: none; border: none; color: var(--muted);
  cursor: pointer; font-size: 13px; font-family: var(--font);
  padding: 6px; transition: color 0.2s; text-decoration: none;
}
.eg-drawer-clear:hover { color: var(--text); }

/* ─── FOOTER ─── */
.eg-footer { padding: 60px 48px 0; border-top: 1px solid var(--border); background: var(--bg); }
.eg-footer-inner { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 64px; align-items: start; }
.eg-footer-logo-link { display: inline-block; }
.eg-footer-logo-img { height: 90px; width: auto; display: block; }
.eg-footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-top: 20px; max-width: 320px; }
.eg-footer-logo-text { font-size: 17px; font-weight: 700; letter-spacing: 0.08em; background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--blue-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eg-footer-col h4 { font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.eg-footer-col a,
.eg-footer-col span { display: block; font-size: 14px; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.eg-footer-col a:hover { color: var(--text); }
.eg-footer-bottom { max-width: 1400px; margin: 48px auto 0; padding: 24px 0; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--muted); }
.eg-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.eg-social-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.eg-footer-social a,
.eg-social-icons a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; color: var(--muted); background: var(--surface); border: 1px solid var(--border); transition: color .2s, border-color .2s, background .2s; text-decoration: none; flex-shrink: 0; }
.eg-footer-social a:hover,
.eg-social-icons a:hover { color: var(--gold); border-color: rgba(255,191,47,0.35); background: rgba(255,191,47,0.06); }

@media (max-width: 900px) {
  .eg-footer { padding: 48px 20px 0; }
  .eg-footer-inner { grid-template-columns: 1fr; text-align: center; }
  .eg-footer-brand p { max-width: 100%; }
  .eg-footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .eg-shop-page { padding: 32px 20px 80px; }
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2,1fr) !important; }
}
@media (max-width: 600px) {
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: 1fr !important; }
}

/* ═══ HOMEPAGE ═══ */

/* ─── HERO ─── */
.eg-hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px 80px; position: relative; overflow: hidden;
}
.eg-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(27,79,196,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 50% 60%, rgba(255,191,47,0.10) 0%, transparent 60%);
}
.eg-hero-grid {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 80%);
}
.eg-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 100px; font-size: 12px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,191,47,0.35); background: rgba(255,191,47,0.08);
  color: var(--gold-light); margin-bottom: 32px; position: relative; z-index: 1;
}
.eg-hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: eg-pulse 2s infinite; }
@keyframes eg-pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.8)} }

.eg-hero-title {
  font-size: clamp(52px,7vw,110px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.0;
  position: relative; z-index: 1; margin: 0 0 8px;
}
.eg-gold { background: linear-gradient(135deg,var(--gold-light) 0%,var(--gold) 50%,var(--gold-deep) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eg-blue { background: linear-gradient(135deg,var(--blue) 0%,var(--blue-light) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.eg-hero-tagline {
  font-size: clamp(14px,2vw,18px); font-weight: 400; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 32px; position: relative; z-index: 1;
}
.eg-hero-desc {
  font-size: clamp(16px,2vw,20px); font-weight: 300; color: var(--muted);
  max-width: 560px; line-height: 1.65; margin: 0 auto 48px; position: relative; z-index: 1;
}
.eg-hero-actions { display: flex; gap: 16px; justify-content: center; position: relative; z-index: 1; flex-wrap: wrap; }
.eg-btn-primary {
  padding: 16px 36px; border-radius: 100px; font-size: 15px; font-weight: 600;
  background: linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);
  color: #09090D !important; border: none; cursor: pointer; font-family: var(--font);
  text-decoration: none; display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s; box-shadow: 0 0 40px rgba(255,191,47,0.3);
}
.eg-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 50px rgba(255,191,47,0.4); }
.eg-btn-secondary {
  padding: 16px 36px; border-radius: 100px; font-size: 15px; font-weight: 500;
  background: transparent; border: 1px solid var(--border); color: var(--text) !important;
  cursor: pointer; font-family: var(--font); text-decoration: none; display: inline-block;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.eg-btn-secondary:hover { border-color: var(--muted); background: var(--hover-bg); transform: translateY(-2px); }
.eg-hero-logo-visual { margin-top: 64px; position: relative; z-index: 1; display: flex; justify-content: center; }
.eg-hero-logo-visual img {
  width: min(280px,50vw);
  filter: drop-shadow(0 0 60px rgba(27,79,196,0.5)) drop-shadow(0 0 30px rgba(255,191,47,0.3));
  animation: eg-float 5s ease-in-out infinite;
}
@keyframes eg-float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }

/* ─── STATS ─── */
.eg-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.eg-stat-item { padding: 48px 32px; text-align: center; border-right: 1px solid var(--border); transition: background 0.3s; }
.eg-stat-item:last-child { border-right: none; }
.eg-stat-item:hover { background: var(--hover-bg); }
.eg-stat-num {
  font-size: clamp(36px,4vw,56px); font-weight: 700; letter-spacing: -0.03em;
  background: linear-gradient(135deg,var(--gold-light),var(--blue-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.eg-stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; letter-spacing: 0.05em; }

/* ─── SECTION COMMONS ─── */
.eg-section { padding: 120px 48px; }
.eg-section-label { font-size: 12px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.eg-section-title { font-size: clamp(32px,4vw,56px); font-weight: 700; letter-spacing: -0.025em; line-height: 1.1; margin-bottom: 20px; }
.eg-section-sub { font-size: 18px; color: var(--muted); font-weight: 300; max-width: 520px; line-height: 1.6; }

/* ─── FEATURES ─── */
.eg-features-header { max-width: 1200px; margin: 0 auto 80px; }
.eg-features-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1px; max-width: 1200px; margin: 0 auto;
  background: var(--border); border: 1px solid var(--border); border-radius: 24px; overflow: hidden;
}
.eg-feature-card { background: var(--surface); padding: 48px 40px; transition: background 0.3s; position: relative; overflow: hidden; }
.eg-feature-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg,rgba(255,191,47,0.05),transparent); opacity: 0; transition: opacity 0.4s; }
.eg-feature-card:hover { background: var(--bg2); }
.eg-feature-card:hover::before { opacity: 1; }
.eg-feature-icon { width: 52px; height: 52px; border-radius: 14px; margin-bottom: 28px; display: flex; align-items: center; justify-content: center; font-size: 24px; background: linear-gradient(135deg,rgba(255,191,47,0.15),rgba(27,79,196,0.15)); border: 1px solid rgba(255,191,47,0.2); }
.eg-feature-title { font-size: 20px; font-weight: 600; margin-bottom: 12px; color: var(--text); }
.eg-feature-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ─── CATALOG PREVIEW (home page) ─── */
.eg-catalog-section {
  position: relative; overflow: hidden;
  padding: 100px 24px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(27,79,196,0.10) 0%, transparent 60%), var(--bg);
}
.eg-catalog-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eg-catalog-section .eg-catalog-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
  padding: 0; border-bottom: none; background: none; text-align: left;
}

/* ─── Homepage category grid ─── */
.eg-cat-grid { display: flex; flex-wrap: wrap; gap: 22px; justify-content: center; }
.eg-cat-card {
  position: relative; flex: 1 1 290px; max-width: 340px; perspective: 900px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  text-decoration: none; color: var(--text);
  background: var(--surface); border: 1px solid var(--border); border-radius: 22px;
  padding: 28px 24px 26px; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), border-color .35s, box-shadow .35s;
}
.eg-cat-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity .4s;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(255,191,47,0.12) 0%, transparent 60%);
}
.eg-cat-card:hover { transform: translateY(-7px); border-color: rgba(255,191,47,0.30); box-shadow: 0 28px 64px rgba(0,0,0,0.55); }
.eg-cat-card:hover::before { opacity: 1; }

.eg-cat-model {
  height: 150px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.eg-cat-card:hover .eg-cat-model { transform: translateY(-3px) rotateX(7deg) rotateY(-13deg); }
.eg-cat-model svg { height: 140px; width: auto; overflow: visible; animation: egcFloat 5.5s ease-in-out infinite; }
@keyframes egcFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.eg-cat-grid .eg-cat-card:nth-child(2) .eg-cat-model svg { animation-delay: .7s; }
.eg-cat-grid .eg-cat-card:nth-child(3) .eg-cat-model svg { animation-delay: 1.4s; }
.eg-cat-grid .eg-cat-card:nth-child(4) .eg-cat-model svg { animation-delay: .4s; }
.eg-cat-grid .eg-cat-card:nth-child(5) .eg-cat-model svg { animation-delay: 1.1s; }

.eg-cat-name { font-size: 18px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.eg-cat-count { font-size: 13px; color: var(--muted); margin-top: 5px; }
.eg-cat-info { display: flex; flex-direction: column; }
.eg-cat-arrow {
  position: absolute; top: 20px; right: 20px; width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  background: rgba(255,191,47,0.10); border: 1px solid rgba(255,191,47,0.22);
  transition: transform .3s, background .3s, color .3s;
}
.eg-cat-card:hover .eg-cat-arrow {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #09090D; transform: translateX(3px);
}

/* SVG model shared classes */
.egc-f { fill: url(#egcF); } .egc-t { fill: url(#egcT); } .egc-s { fill: url(#egcS); }
.egc-edge { fill: none; stroke: rgba(255,191,47,0.16); stroke-width: 1; }
.egc-scr { fill: #0a0a10; stroke: rgba(255,191,47,0.22); }
.egc-bar { fill: var(--gold); }
.egc-led { fill: var(--gold); filter: drop-shadow(0 0 3px rgba(255,191,47,.7)); }
.egc-led-b { fill: var(--blue-light); filter: drop-shadow(0 0 3px rgba(74,144,232,.7)); }
.egc-led-dim { fill: rgba(255,191,47,0.22); }
.egc-blink { animation: egcBlink 1.7s ease-in-out infinite; }
@keyframes egcBlink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
.egc-sine {
  fill: none; stroke: var(--blue-light); stroke-width: 2.2; stroke-linecap: round;
  stroke-dasharray: 5 7; filter: drop-shadow(0 0 3px rgba(74,144,232,.7));
  animation: egcDash 0.9s linear infinite;
}
@keyframes egcDash { to { stroke-dashoffset: -12; } }
.egc-charge { fill: url(#egcCharge); }
.egc-cap { fill: #ffe0a0; filter: drop-shadow(0 0 5px rgba(255,191,47,.8)); }
.egc-gear { transform-box: fill-box; transform-origin: center; }
.egc-panelg { fill: #14253f; stroke: var(--blue-light); stroke-width: 1; }
.egc-pline { stroke: var(--blue-light); stroke-width: .9; opacity: .55; }
.egc-sun { fill: url(#egcSun); }
.egc-ray { stroke: var(--gold); stroke-width: 2.4; stroke-linecap: round; }
.egc-conn { fill: #1a2740; stroke: var(--blue-light); stroke-width: 1; }
@media (prefers-reduced-motion: reduce) { .eg-cat-model svg, .egc-sine, .egc-blink { animation: none; } }

/* Legacy preview card (used elsewhere) */
.eg-catalog-preview-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1200px; margin: 0 auto; }
.eg-preview-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
  text-decoration: none; display: block; color: inherit;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.eg-preview-card:hover { transform: translateY(-6px); border-color: rgba(255,191,47,0.35); box-shadow: var(--card-shadow),0 0 0 1px rgba(255,191,47,0.18); }
.eg-preview-title { font-size: 17px; font-weight: 600; margin: 0 0 8px; color: var(--text); line-height: 1.35; }

/* ─── WHY ─── */
.eg-why-section { background: var(--bg); }
.eg-why-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.eg-why-visual {
  aspect-ratio: 1; border-radius: 28px; background: var(--surface); border: 1px solid var(--border);
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.eg-why-visual-inner {
  width: 65%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle,rgba(27,79,196,0.25) 0%,rgba(255,191,47,0.12) 60%,transparent 100%);
  display: flex; align-items: center; justify-content: center;
  animation: eg-rotatePulse 8s linear infinite;
}
@keyframes eg-rotatePulse {
  0%{box-shadow:0 0 60px rgba(27,79,196,0.3),0 0 20px rgba(255,191,47,0.2)}
  50%{box-shadow:0 0 80px rgba(255,191,47,0.3),0 0 30px rgba(27,79,196,0.2)}
  100%{box-shadow:0 0 60px rgba(27,79,196,0.3),0 0 20px rgba(255,191,47,0.2)}
}
.eg-why-visual-inner img { width: 52%; filter: drop-shadow(0 0 40px rgba(74,144,232,0.4)); }
.eg-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.06); animation: eg-spin linear infinite; }
.eg-orbit-1 { width: 78%; aspect-ratio:1; top:11%; left:11%; animation-duration: 20s; }
.eg-orbit-2 { width: 90%; aspect-ratio:1; top:5%; left:5%; animation-duration: 35s; animation-direction: reverse; }
@keyframes eg-spin { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }
.eg-orbit-dot { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); top: -4px; left: calc(50% - 4px); box-shadow: 0 0 12px var(--gold); }
.eg-orbit-dot-blue { position: absolute; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); bottom: -3px; right: calc(50% - 3px); box-shadow: 0 0 10px var(--blue-light); }
.eg-why-list { display: flex; flex-direction: column; gap: 32px; margin-top: 48px; }
.eg-why-item { display: flex; gap: 20px; }
.eg-why-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg,rgba(255,191,47,0.12),rgba(27,79,196,0.12)); border: 1px solid rgba(255,191,47,0.2); display: flex; align-items: center; justify-content: center; font-size: 18px; }
.eg-why-item-title { font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--text); }
.eg-why-item-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── CTA BAND ─── */
.eg-cta-band {
  background: linear-gradient(135deg,rgba(27,79,196,0.15) 0%,rgba(255,191,47,0.10) 100%);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 100px 48px; text-align: center;
}
.eg-cta-band h2 { font-size: clamp(32px,4vw,60px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 20px; line-height: 1.15; }
.eg-cta-band p { font-size: 18px; color: var(--muted); margin-bottom: 40px; font-weight: 300; }
.eg-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 900px) {
  .eg-hero { padding: 100px 20px 60px; }
  .eg-stats { grid-template-columns: repeat(2,1fr); }
  .eg-section { padding: 80px 24px; }
  .eg-catalog-section { padding: 70px 16px; }
  .eg-catalog-inner { padding: 0 20px; }
  .eg-features-grid { grid-template-columns: 1fr; }
  .eg-catalog-preview-grid { grid-template-columns: 1fr 1fr; }
  .eg-why-inner { grid-template-columns: 1fr; }
  .eg-why-content { order: -1; }
  .eg-why-visual { order: 0; }
  .eg-cta-band { padding: 80px 24px; }
}
@media (max-width: 600px) {
  .eg-cat-card { flex-basis: 100%; max-width: 100%; }
  .eg-catalog-preview-grid { grid-template-columns: 1fr; }
  .eg-catalog-section .eg-catalog-header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 32px; }
}

/* ─── Shop page catalog variant ─── */
.eg-shop-page--catalog { padding: 0 !important; max-width: none !important; }

/* ═══ CATALOG SIDEBAR ═══ */

/* Page header band */
.eg-catalog-header {
  padding: 64px 48px 52px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 60% 100% at 50% 50%, rgba(27,79,196,0.10) 0%, transparent 70%);
  text-align: center;
}
.eg-catalog-header-inner { max-width: 1400px; margin: 0 auto; }
.eg-catalog-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.eg-catalog-title {
  font-size: clamp(28px,4vw,52px); font-weight: 700;
  letter-spacing: -0.03em; margin-bottom: 10px; line-height: 1.15;
  color: var(--text);
}
.eg-catalog-sub {
  font-size: 16px; color: var(--muted); font-weight: 300;
}

/* Two-column layout wrapper */
.eg-catalog-layout {
  max-width: 1400px; margin: 0 auto;
  padding: 0 48px 100px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* SIDEBAR */
.eg-sidebar {
  position: sticky;
  top: 88px;
  padding-top: 36px;
}
.eg-sidebar-section { margin-bottom: 36px; }
.eg-sidebar-title {
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}

/* Category items */
.eg-cat-item {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 10px 14px; border-radius: 10px;
  font-size: 14px; font-weight: 500;
  border: 1px solid transparent; background: transparent;
  color: var(--muted); text-decoration: none;
  transition: all 0.2s; margin-bottom: 4px;
}
.eg-cat-item:hover { color: var(--text); background: var(--hover-bg); }
.eg-cat-item.eg-active {
  color: var(--gold);
  background: rgba(255,191,47,0.08);
  border-color: rgba(255,191,47,0.2);
}
.eg-cat-item-name { flex: 1; }
.eg-cat-count {
  font-size: 11px; color: var(--muted);
  background: var(--surface); padding: 2px 7px;
  border-radius: 100px; margin-left: 8px; flex-shrink: 0;
}
.eg-cat-item.eg-active .eg-cat-count {
  background: rgba(255,191,47,0.15); color: var(--gold);
}

/* Brand chips */
.eg-brand-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.eg-brand-chip {
  display: inline-flex; padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 500;
  border: 1px solid var(--border); background: transparent;
  color: var(--muted); text-decoration: none;
  transition: all 0.2s;
}
.eg-brand-chip:hover { color: var(--text); border-color: var(--muted); }
.eg-brand-chip.eg-active {
  color: var(--blue-light);
  border-color: rgba(74,144,232,0.5);
  background: rgba(74,144,232,0.1);
}

/* Category icon */
.eg-cat-item-icon {
  display: flex; align-items: center; justify-content: center;
  width: 20px; flex-shrink: 0; margin-right: 6px; color: var(--muted);
  transition: color 0.2s;
}
.eg-cat-item.eg-active .eg-cat-item-icon { color: var(--gold); }
.eg-cat-item:hover .eg-cat-item-icon { color: var(--text); }

/* Reset filters button */
.eg-sidebar-reset { margin-bottom: 20px !important; }
.eg-reset-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 500; color: var(--muted);
  text-decoration: none; padding: 6px 12px;
  border: 1px solid var(--border); border-radius: 100px;
  transition: all 0.2s;
}
.eg-reset-btn:hover { color: var(--text); border-color: var(--muted); }

/* Price filter */
.eg-price-form { margin-top: 4px; }
.eg-price-inputs {
  display: flex; align-items: center; gap: 6px;
}
.eg-price-field {
  flex: 1; display: flex; align-items: center;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px; padding: 0 8px; gap: 5px;
  transition: border-color 0.2s;
}
.eg-price-field:focus-within { border-color: rgba(255,191,47,0.35); }
.eg-price-label { font-size: 11px; color: var(--muted); white-space: nowrap; }
.eg-price-input {
  flex: 1; min-width: 0; border: none; background: transparent;
  color: var(--text); font-size: 13px; font-family: var(--font);
  outline: none; padding: 8px 0;
}
.eg-price-input::placeholder { color: var(--muted); }
.eg-price-input::-webkit-inner-spin-button,
.eg-price-input::-webkit-outer-spin-button { -webkit-appearance: none; }
.eg-price-sep { font-size: 12px; color: var(--muted); flex-shrink: 0; }
.eg-price-btn {
  padding: 8px 12px; background: var(--surface2);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 8px;
  color: var(--muted); font-size: 13px; cursor: pointer;
  transition: all 0.2s; flex-shrink: 0; line-height: 1;
}
.eg-price-btn:hover { color: var(--gold); border-color: rgba(255,191,47,0.3); }

/* Attribute filter chips (phases, kW ranges, kWh, Wp, panel type) */
.eg-attr-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.eg-attr-chip {
  display: inline-block; padding: 5px 10px;
  background: var(--surface2); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; color: var(--muted); font-size: 12px;
  text-decoration: none; white-space: nowrap; transition: all 0.2s;
}
.eg-attr-chip:hover { color: var(--text); border-color: var(--muted); }
.eg-attr-chip.eg-active {
  background: rgba(255,191,47,0.12); border-color: rgba(255,191,47,0.5);
  color: var(--gold);
}

/* Availability toggle */
.eg-avail-toggle {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; margin-top: 8px;
}
.eg-toggle-track {
  width: 36px; height: 20px; border-radius: 100px;
  background: var(--surface2); border: 1px solid var(--border);
  position: relative; transition: background 0.2s; flex-shrink: 0;
}
.eg-toggle-track.eg-on {
  background: rgba(255,191,47,0.3);
  border-color: rgba(255,191,47,0.4);
}
.eg-toggle-thumb {
  position: absolute; width: 14px; height: 14px;
  border-radius: 50%; background: var(--muted);
  top: 2px; left: 2px; transition: all 0.2s;
}
.eg-toggle-track.eg-on .eg-toggle-thumb {
  left: 18px; background: var(--gold);
}
.eg-toggle-label { font-size: 13px; color: var(--muted); }

/* Main column */
.eg-catalog-main { padding-top: 36px; min-width: 0; }

/* Toolbar */
.eg-toolbar {
  display: flex; gap: 12px; margin-bottom: 28px; align-items: center;
}
.eg-search-wrap {
  position: relative; flex: 1; display: flex; align-items: center;
}
.eg-search-icon {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%); color: var(--muted);
  pointer-events: none; z-index: 1;
  display: flex; align-items: center;
}
.eg-search-input {
  width: 100%; padding: 11px 16px 11px 46px;
  background: var(--surface); border: 1px solid rgba(255,255,255,0.05);
  border-radius: 999px; color: var(--text); font-size: 14px;
  font-family: var(--font); outline: none; transition: border-color 0.2s;
}
.eg-search-input:focus { border-color: rgba(255,191,47,0.35); }
.eg-search-input::placeholder { color: var(--muted); }
.eg-ordering-wrap .woocommerce-ordering { margin: 0 !important; }
.eg-ordering-wrap select,
.eg-ordering-wrap .woocommerce-ordering select {
  padding: 11px 20px !important; background: var(--surface) !important;
  border: 1px solid rgba(255,255,255,0.05) !important; border-radius: 999px !important;
  color: var(--text) !important; font-size: 14px !important;
  font-family: var(--font) !important; outline: none !important;
  cursor: pointer !important; white-space: nowrap; appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 4l4 4 4-4' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}

/* Result count muted */
.woocommerce-result-count {
  font-size: 13px !important; color: var(--muted) !important;
  margin-bottom: 16px !important; display: block;
}

/* Mobile: sidebar stacks above grid */
@media (max-width: 900px) {
  .eg-catalog-header { padding: 36px 20px 28px; }
  .eg-catalog-layout {
    grid-template-columns: 1fr;
    padding: 0 20px 80px;
    gap: 24px;
  }
  .eg-sidebar {
    position: static;
    padding-top: 24px;
  }
  .eg-catalog-main { padding-top: 0; }
  .eg-toolbar { flex-wrap: wrap; }
}

/* ─── SINGLE PRODUCT ─── */

.eg-sp-bg {
  min-height: 100vh;
  background: var(--bg);
  padding: 0 0 80px;
}

.eg-sp-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ── Breadcrumb ── */
.eg-sp-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 28px 0 32px;
  font-size: 13px;
  color: var(--muted);
}
.eg-sp-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.eg-sp-breadcrumb a:hover { color: var(--text); }
.eg-sp-bc-sep { color: var(--muted); opacity: 0.5; margin: 0 2px; }
.eg-sp-bc-current { color: var(--text); }

/* ── Main 2-col grid ── */
.eg-sp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── LEFT: Image card ── */
.eg-sp-image-col { display: flex; flex-direction: column; gap: 20px; }

.eg-sp-image-card {
  background: var(--surface2);
  border-radius: 16px;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eg-sp-stock-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(34,197,94,0.15);
  color: var(--ok);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  z-index: 2;
}
.eg-sp-stock-badge--warn {
  background: var(--warn-bg);
  color: var(--warn);
  border-color: var(--warn-bd);
}

.eg-sp-img-wrap {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.eg-sp-main-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.eg-sp-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 40px;
}
.eg-sp-placeholder-brand {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--muted);
  text-transform: uppercase;
}

/* ── Attributes table ── */
.eg-sp-attrs-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.eg-sp-attrs-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  padding: 16px 16px 12px;
}
.eg-sp-attrs-table { display: flex; flex-direction: column; }
.eg-sp-attr-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  gap: 12px;
}
.eg-sp-attr-row--even { background: var(--surface2); }
.eg-sp-attr-name { font-size: 13px; color: var(--muted); flex-shrink: 0; }
.eg-sp-attr-value { font-size: 13px; font-weight: 600; color: var(--text); text-align: right; }

/* ── RIGHT: Info column ── */
.eg-sp-info-col { display: flex; flex-direction: column; gap: 20px; padding-top: 4px; }

.eg-sp-cat-label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(255,191,47,0.4);
  background: rgba(255,191,47,0.08);
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 4px 10px;
  width: fit-content;
}

.eg-sp-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0;
}

.eg-sp-stock-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ok);
}
.eg-sp-stock-dot { color: var(--ok); flex-shrink: 0; }
.eg-sp-stock-dot--warn { color: var(--warn); }
.eg-sp-stock-row:has(.eg-sp-stock-dot--warn) { color: var(--warn); }

/* ── Spec chips ── */
.eg-sp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.eg-sp-chip {
  display: inline-flex;
  align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 12px;
  color: var(--text);
}
.eg-sp-chip--labeled {
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 10px;
}
.eg-sp-chip-label {
  font-style: normal;
  font-size: 10px;
  color: var(--muted);
  line-height: 1.3;
}
.eg-sp-chip-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

/* ── Price card ── */
.eg-sp-price-card {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 12px;
  padding: 20px 24px;
}
.eg-sp-price-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.eg-sp-price-side { display: flex; flex-direction: column; gap: 6px; }
.eg-sp-price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 12px;
}
.eg-sp-price-main {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.eg-sp-price-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.eg-sp-price-request {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* ── Buttons ── */
.eg-sp-buttons {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.eg-sp-cart-form { flex: 1; min-width: 0; }

/* ── Qty ± group ── */
.eg-sp-qty-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.eg-sp-qty-btn {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--surface2);
  border: 1px solid rgba(255,191,47,0.35);
  border-radius: 10px;
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  font-family: var(--font);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
  line-height: 1;
  padding: 0;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}
.eg-sp-qty-btn:hover:not(:disabled) {
  border-color: var(--gold);
  background: rgba(255,191,47,0.10);
  box-shadow: 0 0 0 1px rgba(255,191,47,0.15);
}
.eg-sp-qty-btn:active:not(:disabled) { background: rgba(255,191,47,0.18); }
.eg-sp-qty-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.eg-sp-qty-btn:disabled { opacity: .3; cursor: default; border-color: var(--border); color: var(--muted); }
.eg-sp-qty-display {
  min-width: 36px;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font);
  user-select: none;
}


.eg-sp-btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 100%;
  padding: 14px 14px 14px 20px;
  background: var(--gold);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.1s;
  white-space: nowrap;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.eg-sp-btn-cart:hover { background: #4A90E8; color: #fff; }
.eg-sp-btn-cart:active { transform: scale(0.98); }
.eg-sp-btn-cart:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.eg-sp-btn-buynow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.1s;
  white-space: nowrap;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}
.eg-sp-btn-buynow:hover {
  border-color: rgba(255,191,47,0.4);
  background: rgba(255,191,47,0.06);
}
.eg-sp-btn-buynow:active { transform: scale(0.98); }
.eg-sp-btn-buynow:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ── Trust badges ── */
.eg-sp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.eg-sp-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
}
.eg-sp-trust-icon {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  flex-shrink: 0;
}
.eg-sp-trust-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.eg-sp-trust-sub {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.3;
}

/* ── Sections below grid ── */
.eg-sp-section { margin-top: 48px; }

.eg-sp-section-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
  display: block;
}

/* Description */
.eg-sp-desc-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
}
.eg-sp-desc-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text);
}
.eg-sp-desc-body p { margin: 0 0 12px; }
.eg-sp-desc-body p:last-child { margin-bottom: 0; }
.eg-sp-desc-body ul,
.eg-sp-desc-body ol {
  padding-left: 0;
  margin: 0 0 12px;
  list-style: none;
}
.eg-sp-desc-body ul li::before {
  content: '\2713';
  color: var(--gold);
  font-weight: 700;
  margin-right: 8px;
}
.eg-sp-desc-body a { color: var(--gold-light); }

/* Related products */
.eg-sp-related-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.eg-sp-related-all {
  font-size: 13px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.eg-sp-related-all:hover { color: var(--gold-light); }

.eg-sp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 1100px) {
  .eg-sp-related-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── Mobile ── */
@media (max-width: 900px) {
  .eg-sp-wrap { padding: 0 20px; }
  .eg-sp-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .eg-sp-image-card { aspect-ratio: 16/9; }
  .eg-sp-chips { flex-wrap: wrap; }
  .eg-sp-buttons {
    flex-wrap: wrap;
  }
  .eg-sp-btn-buynow {
    flex: 1 0 100%;
    justify-content: center;
  }
  .eg-sp-trust {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .eg-sp-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .eg-sp-title { font-size: 22px; }
  .eg-sp-price-main { font-size: 26px; }
  .eg-sp-related-grid { grid-template-columns: 1fr; }
}

/* ═══ CONTACTS PAGE ═══ */

.eg-contacts-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 100px;
}
.eg-contacts-wrap .eg-catalog-header {
  margin-bottom: 0;
}
.eg-contacts-grid {
  padding: 48px 48px 0;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 28px;
  align-items: start;
}

.eg-contacts-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
}
.eg-contacts-card-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 28px;
  color: var(--text);
}

/* Form */
.eg-contact-form { display: flex; flex-direction: column; gap: 18px; }
.eg-cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.eg-cf-field { display: flex; flex-direction: column; gap: 7px; }
.eg-cf-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.eg-cf-field input,
.eg-cf-field textarea {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 15px;
  outline: none;
  transition: border-color .2s;
  resize: none;
  width: 100%;
}
.eg-cf-field input:focus,
.eg-cf-field textarea:focus {
  border-color: var(--gold);
}
.eg-cf-field input::placeholder,
.eg-cf-field textarea::placeholder { color: var(--muted); }

/* Honeypot — invisible to humans, visible to bots */
.eg-hp-wrap {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.eg-cf-submit {
  margin-top: 6px;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}

.eg-contacts-error {
  background: rgba(239,68,68,.12);
  border: 1px solid rgba(239,68,68,.3);
  border-radius: 10px;
  padding: 12px 16px;
  color: #f87171;
  font-size: 14px;
}

/* Success state */
.eg-contacts-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 20px 0;
}
.eg-contacts-success-icon {
  width: 64px; height: 64px;
  background: rgba(74,222,128,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.eg-contacts-success h3 { font-size: 22px; font-weight: 700; margin: 0; }
.eg-contacts-success p  { color: var(--muted); margin: 0; }

/* Info sidebar */
.eg-contacts-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.eg-ci-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.eg-ci-block:last-child { border-bottom: none; padding-bottom: 0; }
.eg-ci-block:first-child { padding-top: 0; }

.eg-ci-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,191,47,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
}
.eg-ci-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.eg-ci-val {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
}
a.eg-ci-val:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 860px) {
  .eg-contacts-grid { grid-template-columns: 1fr; padding: 28px 20px 0; }
  .eg-contacts-wrap { padding: 0 0 60px; }
}
@media (max-width: 540px) {
  .eg-cf-row { grid-template-columns: 1fr; }
  .eg-contacts-card { padding: 24px; }
}


/* ═══ NOVA POSHTA FIELDS ═══ */
.eg-np-row { position: relative; }
.eg-np-label {
  display: block; font-size: 13px; color: var(--muted);
  margin-bottom: 6px; font-weight: 500;
}
.eg-np-ac-wrap { position: relative; }
.eg-np-input {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: 12px; font-family: var(--font);
  padding: 13px 16px; font-size: 14px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s; box-sizing: border-box;
}
.eg-np-input:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,191,47,0.12);
}
.eg-np-drop {
  display: none; position: absolute; top: calc(100% + 4px); left: 0; right: 0;
  background: var(--surface); border: 1px solid rgba(255,191,47,0.2);
  border-radius: 12px; max-height: 230px; overflow-y: auto;
  z-index: 9000; box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.eg-np-drop-item {
  padding: 10px 16px; cursor: pointer; font-size: 14px; color: var(--text);
  transition: background 0.12s;
}
.eg-np-drop-item:first-child { border-radius: 12px 12px 0 0; }
.eg-np-drop-item:last-child  { border-radius: 0 0 12px 12px; }
.eg-np-drop-item:hover { background: rgba(255,191,47,0.08); color: var(--gold); }
.eg-np-select {
  width: 100%; background: var(--surface2); border: 1px solid var(--border);
  color: var(--text); border-radius: 12px; font-family: var(--font);
  padding: 13px 40px 13px 16px; font-size: 14px; outline: none;
  cursor: pointer; appearance: none; box-sizing: border-box;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 4.5L11 1' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.eg-np-select:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(255,191,47,0.12);
}
.eg-np-select option { background: var(--surface); color: var(--text); }

/* ═══ HAS-IMAGE OVERRIDES ═══ */

/* Card: white bg + soft green badge */
.eg-card--has-img .eg-card-thumb {
  background: #fff;
}
.eg-card--has-img .eg-card-thumb img {
  object-fit: contain;
  padding: 12px;
}
.eg-card--has-img .eg-card-badge--ok {
  background: rgba(34,197,94,0.15);
  color: #008b33;
  border: 1px solid rgba(2,147,56,0.25);
}

/* Single product: white image card + soft green badges */
.eg-sp-wrap--has-img .eg-sp-image-card {
  background: #fff;
  border-color: rgba(0,0,0,0.06);
}
.eg-sp-wrap--has-img .eg-sp-img-wrap img {
  object-fit: contain;
  padding: 24px;
}
.eg-sp-wrap--has-img .eg-sp-stock-badge {
  background: rgba(34,197,94,0.15) !important;
  color: #008b33 !important;
  border-color: rgba(2,147,56,0.25) !important;
}
.eg-sp-wrap--has-img .eg-sp-stock-row { color: #008b33; }
.eg-sp-wrap--has-img .eg-sp-stock-dot { color: #008b33; }

/* ── Process section ──────────────────────────────────────────────────── */
.eg-proc-section {
  position: relative; padding: 120px 24px 110px; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(27,79,196,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 45% 35% at 50% 70%, rgba(255,191,47,0.07) 0%, transparent 65%),
    var(--bg);
}
.eg-proc-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eg-section-head { text-align: center; margin-bottom: 72px; }
.eg-proc-section .eg-section-sub { margin-left: auto; margin-right: auto; }
.eg-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }

.eg-proc-flow { display: grid; grid-template-columns: repeat(4,1fr); column-gap: 0; }
.eg-proc-step {
  position: relative; padding: 0 18px; text-align: center;
  opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease;
}
.eg-proc-flow.eg-in .eg-proc-step { opacity: 1; transform: none; }
.eg-proc-flow.eg-in .eg-proc-step:nth-child(2) { transition-delay: .12s; }
.eg-proc-flow.eg-in .eg-proc-step:nth-child(3) { transition-delay: .24s; }
.eg-proc-flow.eg-in .eg-proc-step:nth-child(4) { transition-delay: .36s; }

.eg-proc-node {
  position: relative; z-index: 2; width: 72px; height: 72px; margin: 0 auto 24px;
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: rgba(255,191,47,0.09);
  border: 1px solid rgba(255,191,47,0.30);
  box-shadow: 0 0 0 6px rgba(255,191,47,0.04), 0 18px 40px rgba(0,0,0,0.45);
}
.eg-proc-node svg { width: 30px; height: 30px; }
.eg-proc-num {
  position: absolute; top: -9px; right: -9px; width: 26px; height: 26px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700;
  color: #09090D; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  box-shadow: 0 4px 14px rgba(255,191,47,0.4);
}
.eg-proc-step:not(:last-child)::after {
  content: ""; position: absolute; z-index: 1; top: 36px; left: calc(50% + 48px);
  width: calc(100% - 96px); height: 3px; transform: translateY(-50%); border-radius: 3px;
  background-color: rgba(255,255,255,0.07);
  background-image: repeating-linear-gradient(90deg, var(--gold) 0 7px, rgba(255,191,47,0) 7px 20px);
  background-size: 20px 100%; background-repeat: repeat-x;
  box-shadow: 0 0 9px rgba(255,191,47,0.35);
  animation: egFlow .7s linear infinite;
}
@keyframes egFlow { to { background-position: 20px 0; } }
.eg-proc-title { font-size: 20px; font-weight: 600; letter-spacing: -0.01em; margin: 0 0 10px; }
.eg-proc-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.65; margin: 0; max-width: 240px; margin-inline: auto; }

.eg-proc-supply {
  position: relative; overflow: hidden; margin-top: 84px; border-radius: 24px;
  padding: 40px 44px; display: flex; align-items: center; gap: 36px;
  background: linear-gradient(120deg, var(--surface2) 0%, var(--surface) 100%);
  border: 1px solid rgba(255,191,47,0.22);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.eg-proc-supply::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 120% at 100% 50%, rgba(255,191,47,0.12) 0%, transparent 60%);
}
.eg-proc-supply-ico {
  flex-shrink: 0; width: 64px; height: 64px; border-radius: 18px; position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center; color: var(--gold);
  background: rgba(255,191,47,0.10); border: 1px solid rgba(255,191,47,0.28);
}
.eg-proc-supply-ico svg { width: 32px; height: 32px; }
.eg-proc-supply-text { flex: 1; position: relative; z-index: 1; min-width: 0; }
.eg-proc-supply-kick { font-size: 12px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.eg-proc-supply-title { font-size: clamp(20px,2.2vw,26px); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 10px; line-height: 1.25; }
.eg-proc-supply-desc { font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.6; margin: 0 0 16px; }
.eg-proc-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.eg-chip { padding: 5px 12px; border-radius: 7px; font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.06); border: 1px solid var(--bd2); color: var(--muted); }
.eg-proc-supply-cta { flex-shrink: 0; position: relative; z-index: 1; }

@media (max-width: 860px) {
  .eg-proc-inner { padding: 0 22px; }
  .eg-proc-section { padding: 80px 16px; }
  .eg-proc-flow { grid-template-columns: 1fr; row-gap: 0; }
  .eg-proc-step { display: flex; text-align: left; gap: 20px; padding: 0 0 34px 0; }
  .eg-proc-node { margin: 0; flex-shrink: 0; }
  .eg-proc-body { padding-top: 8px; }
  .eg-proc-desc { max-width: none; margin-inline: 0; }
  .eg-proc-step:not(:last-child)::after {
    top: 86px; left: 36px; width: 3px; height: calc(100% - 86px); transform: translateX(-50%);
    background-image: repeating-linear-gradient(180deg, var(--gold) 0 7px, rgba(255,191,47,0) 7px 20px);
    background-size: 100% 20px; background-repeat: repeat-y;
    animation: egFlowV .7s linear infinite;
  }
  @keyframes egFlowV { to { background-position: 0 20px; } }
}
@media (max-width: 760px) {
  .eg-proc-supply { flex-direction: column; align-items: flex-start; text-align: left; padding: 30px 24px; gap: 22px; }
  .eg-proc-supply-cta { width: 100%; }
  .eg-proc-supply-cta .eg-btn-primary { display: block; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
  .eg-proc-step:not(:last-child)::after { animation: none; }
}

/* ── Geo map section ──────────────────────────────────────────────────── */
.eg-geo-section {
  position: relative; padding: 120px 24px 110px; overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 50% 35%, rgba(27,79,196,0.14) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 50% 65%, rgba(255,191,47,0.08) 0%, transparent 65%),
    var(--bg);
}
.eg-geo-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eg-geo-section .eg-section-sub { margin-left: auto; margin-right: auto; }
.eg-geo-grid { display: grid; grid-template-columns: 1.55fr 1fr; gap: 40px; align-items: center; }
.eg-geo-map-wrap { position: relative; }
.eg-geo-map { width: 100%; height: auto; display: block; overflow: visible; }
.eg-geo-rg {
  fill: var(--rf); stroke: rgba(255,255,255,0.10); stroke-width: 0.8; cursor: pointer;
  transition: fill .22s ease, stroke .22s ease, filter .22s ease;
}
.eg-geo-rg:hover {
  fill: url(#egGold); stroke: var(--gold-light); stroke-width: 1.4;
  filter: drop-shadow(0 11px 13px rgba(0,0,0,0.6)) drop-shadow(0 0 16px rgba(255,191,47,0.55));
}
.eg-geo-rg.eg-active {
  fill: url(#egGold); stroke: var(--gold-light); stroke-width: 1.6;
  animation: egActiveFloat 2.6s ease-in-out infinite;
}
@keyframes egActiveFloat {
  0%,100% { filter: drop-shadow(0 8px 10px rgba(0,0,0,0.55)) drop-shadow(0 0 11px rgba(255,191,47,0.45)); }
  50%      { filter: drop-shadow(0 15px 18px rgba(0,0,0,0.7)) drop-shadow(0 0 24px rgba(255,191,47,0.85)); }
}
.eg-geo-dot { fill: var(--gold); pointer-events: none; }
.eg-geo-kyiv { fill: var(--gold); pointer-events: none; }
.eg-geo-kyiv-glow {
  fill: var(--gold); opacity: .25; pointer-events: none;
  transform-box: fill-box; transform-origin: center;
  animation: egPulse 2.4s ease-in-out infinite;
}
.eg-dot-pulse { transform-box: fill-box; transform-origin: center; animation: egPulse 2.6s ease-in-out infinite; }
@keyframes egPulse {
  0%,100% { opacity: .22; transform: scale(.85); }
  50%     { opacity: .55; transform: scale(1.35); }
}
.eg-geo-lbl {
  font-family: var(--font); font-weight: 600; fill: rgba(244,244,246,0.72);
  text-anchor: middle; pointer-events: none; letter-spacing: -0.01em;
  paint-order: stroke; stroke: var(--bg); stroke-width: 3.4px; stroke-linejoin: round;
  transition: fill .2s ease;
}
.eg-geo-lbl.eg-lbl-on { fill: var(--gold-light); }
.eg-geo-tip {
  position: absolute; pointer-events: none; background: var(--surface2); border: 1px solid var(--border);
  border-radius: 10px; padding: 8px 12px; font-size: 13px; font-weight: 500; color: var(--text);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55); opacity: 0; transform: translateY(4px);
  transition: opacity .15s ease, transform .15s ease; white-space: nowrap; z-index: 5;
}
.eg-geo-tip.eg-show { opacity: 1; transform: translateY(0); }
.eg-geo-tip b { color: var(--gold-light); }

.eg-geo-panel {
  background: var(--surface2); border: 1px solid var(--border); border-radius: 20px;
  padding: 34px 32px; box-shadow: 0 24px 60px rgba(0,0,0,0.5); min-height: 300px;
  display: flex; flex-direction: column; justify-content: center;
}
.eg-panel-label { font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; transition: color .2s; }
.eg-panel-name { font-size: clamp(26px,3vw,34px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 24px; min-height: 1.1em; }
.eg-panel-num {
  font-size: clamp(44px,6vw,64px); font-weight: 700; line-height: 1;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.eg-panel-numlabel { font-size: 14px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 8px; }
.eg-panel-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.eg-panel-hint { margin-top: 24px; font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.eg-panel-hint svg { color: var(--gold); flex-shrink: 0; }

.eg-geo-stats {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; margin-top: 64px;
  padding-top: 48px; border-top: 1px solid var(--border);
}
.eg-stat { text-align: center; }
.eg-stat-num { font-size: clamp(34px,5vw,56px); font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.02em; }
.eg-stat-num .eg-plus { color: var(--gold-deep); }
.eg-stat-label { font-size: 13px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 12px; }

@media (max-width: 900px) {
  .eg-geo-grid { grid-template-columns: 1fr; gap: 28px; }
  .eg-geo-inner { padding: 0 22px; }
  .eg-geo-section { padding: 80px 16px; }
}
@media (max-width: 700px) {
  .eg-geo-stats { grid-template-columns: repeat(2,1fr); gap: 32px 24px; margin-top: 44px; }
}

/* ── Storage section ─────────────────────────────────────────────────── */
.eg-stor-section {
  position: relative; overflow: hidden; padding: 120px 24px;
  background:
    radial-gradient(ellipse 50% 50% at 78% 45%, rgba(255,191,47,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 50%, rgba(27,79,196,0.10) 0%, transparent 60%),
    var(--bg2);
}
.eg-stor-inner { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.eg-stor-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.eg-stor-title { font-size: clamp(30px,3.6vw,46px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; margin: 0 0 18px; }
.eg-stor-desc { font-size: 17px; font-weight: 300; color: var(--muted); line-height: 1.65; margin: 0 0 30px; max-width: 520px; }
.eg-stor-feats { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.eg-feat { display: flex; gap: 14px; align-items: flex-start; }
.eg-feat-ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); background: rgba(255,191,47,0.10); border: 1px solid rgba(255,191,47,0.20);
}
.eg-feat-ico svg { width: 22px; height: 22px; }
.eg-feat h4 { margin: 0 0 3px; font-size: 16px; font-weight: 600; }
.eg-feat p { margin: 0; font-size: 14.5px; font-weight: 300; color: var(--muted); line-height: 1.55; }
.eg-stor-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 30px; }
.eg-stor-visual { display: flex; justify-content: center; }
.eg-stor-visual svg { width: 100%; max-width: 420px; height: auto; overflow: visible; }

.egs-front { fill: url(#egsFront); stroke: rgba(255,191,47,0.16); stroke-width: 1; }
.egs-side  { fill: url(#egsSide);  stroke: rgba(255,191,47,0.10); stroke-width: 1; }
.egs-top   { fill: url(#egsTop);   stroke: rgba(255,191,47,0.18); stroke-width: 1; }
.egs-charge { fill: url(#egsCharge); }
.egs-cap { fill: #ffe0a0; filter: drop-shadow(0 0 6px rgba(255,191,47,0.8)); }
.egs-bar { fill: var(--gold); }
.egs-led { fill: var(--gold); filter: drop-shadow(0 0 3px rgba(255,191,47,0.7)); }
.egs-led-dim { fill: rgba(255,191,47,0.22); }
.egs-status { fill: var(--gold); filter: drop-shadow(0 0 4px rgba(255,191,47,0.8)); animation: egsBlink 1.8s ease-in-out infinite; }
@keyframes egsBlink { 0%,100%{opacity:1} 50%{opacity:.25} }
.egs-cable-base { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 3; stroke-linecap: round; }
.egs-flow { fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round; stroke-dasharray: 9 16; filter: drop-shadow(0 0 4px rgba(255,191,47,0.6)); animation: egsFlow 1s linear infinite; }
@keyframes egsFlow { to { stroke-dashoffset: -25; } }
.egs-dot { fill: var(--gold-light); filter: drop-shadow(0 0 6px rgba(255,191,47,0.95)); }
.egs-badge-t { fill: var(--gold-light); font-family: var(--font); font-size: 14px; font-weight: 700; }
.egstor-unit { animation: egsFloat 5s ease-in-out infinite; }
@keyframes egsFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.egs-glow { animation: egsGlowO 5s ease-in-out infinite; }
@keyframes egsGlowO { 0%,100%{opacity:.55} 50%{opacity:.3} }

@media (max-width: 880px) {
  .eg-stor-section { padding: 80px 16px; }
  .eg-stor-inner { padding: 0 22px; }
  .eg-stor-grid { grid-template-columns: 1fr; gap: 40px; }
  .eg-stor-visual { order: -1; }
  .eg-stor-visual svg { max-width: 330px; }
}
@media (prefers-reduced-motion: reduce) {
  .egstor-unit, .egs-glow, .egs-status, .egs-flow, .egs-bar, .egs-charge, .egs-cap { animation: none; }
}

/* ── Acum / energy-flow section ──────────────────────────────────────── */
.eg-acum-section {
  position: relative; overflow: hidden; text-align: center;
  padding: 100px 24px 80px;
  background:
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(27,79,196,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 55% 45% at 50% 62%, rgba(255,191,47,0.10) 0%, transparent 62%),
    var(--bg);
}
.eg-acum-section::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(var(--grid-line,rgba(255,255,255,0.025)) 1px, transparent 1px),
                    linear-gradient(90deg, var(--grid-line,rgba(255,255,255,0.025)) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 50% 45%, #000 0%, transparent 75%);
}
.eg-acum-inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; width: 100%; }
.eg-acum-title { font-size: clamp(34px,5.5vw,62px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.04; margin: 0 0 16px; }
.eg-acum-sub { font-size: clamp(16px,1.5vw,19px); font-weight: 300; color: var(--muted); line-height: 1.6; max-width: 560px; margin: 0 auto; }
.eg-acum-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }

.eg-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid rgba(255,191,47,0.35); background: rgba(255,191,47,0.08); color: var(--gold-light); margin-bottom: 22px;
}
.eg-badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); animation: egDot 2s infinite; }
@keyframes egDot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.7)} }

.eg-flow { margin: 26px auto 14px; max-width: 880px; width: 100%; }
.eg-flow svg { width: 100%; height: auto; display: block; overflow: visible; }

.egf-cable-base { fill: none; stroke: rgba(255,255,255,0.08); stroke-width: 3; stroke-linecap: round; transition: opacity .25s ease; }
.egf-cable-flow {
  fill: none; stroke: var(--gold); stroke-width: 3; stroke-linecap: round;
  stroke-dasharray: 9 17;
  filter: drop-shadow(0 0 4px rgba(255,191,47,0.6));
  animation: egfDash 1.1s linear infinite; transition: opacity .25s ease, stroke-width .25s ease;
}
@keyframes egfDash { to { stroke-dashoffset: -26; } }
.egf-dot { fill: var(--gold-light); filter: drop-shadow(0 0 7px rgba(255,191,47,0.95)); transition: opacity .25s ease; }
.egf-card { fill: var(--surface2); stroke: rgba(255,191,47,0.22); stroke-width: 1.5; transition: stroke .25s ease, stroke-width .25s ease; }
.egf-card-hub { fill: url(#egfGold); }
.egf-ic { fill: none; stroke: var(--gold); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.egf-ic-hub { stroke: #09090D; }
.egf-lbl { fill: var(--text); font-family: var(--font); font-size: 17px; font-weight: 600; text-anchor: middle; }
.egf-ring { fill: none; stroke: var(--gold); stroke-width: 1.5; opacity: .12; animation: egfPulse 2.2s ease-in-out infinite; }
@keyframes egfPulse { 0%,100%{opacity:.10} 50%{opacity:.55} }
.egf-sun-core { fill: url(#egfSun); }
.egf-ray { stroke: var(--gold); stroke-width: 2.6; stroke-linecap: round; }

.egf-clabel { pointer-events: none; transition: opacity .25s ease; }
.egf-clabel rect { fill: #0E0E16; stroke: var(--border); }
.egf-clabel text { fill: var(--muted); font-family: var(--font); font-size: 13px; font-weight: 600; text-anchor: middle; }
.egf-clabel.egf-hot rect { stroke: rgba(255,191,47,0.55); }
.egf-clabel.egf-hot text { fill: var(--gold-light); }

.egf-node { cursor: pointer; }
.egf-node, .egf-cable-flow, .egf-cable-base { transition: opacity .25s ease, stroke-width .25s ease; }
.egf-hit { pointer-events: all; fill: transparent; }
.egf-node * { transition: opacity .25s ease; }
.egf-focused .egf-node { opacity: .32; }
.egf-focused .egf-node.egf-active { opacity: 1; }
.egf-focused .egf-cable-flow { opacity: .10; }
.egf-focused .egf-cable-flow.egf-hot { opacity: 1; stroke-width: 4.5; filter: drop-shadow(0 0 9px rgba(255,191,47,0.9)); }
.egf-focused .egf-cable-base { opacity: .35; }
.egf-focused .egf-dot { opacity: 0; }
.egf-focused .egf-clabel { opacity: .18; }
.egf-focused .egf-clabel.egf-hot { opacity: 1; }
.egf-node.egf-active .egf-card { stroke: var(--gold-light); stroke-width: 2.5; }

.eg-flow-caption {
  max-width: 560px; margin: 0 auto 26px; min-height: 46px;
  font-size: 15px; font-weight: 300; color: var(--muted); line-height: 1.55; transition: color .2s;
}
.eg-flow-caption b { color: var(--gold-light); font-weight: 600; }

@media (max-width: 600px) {
  .egf-lbl { font-size: 21px; }
  .egf-clabel text { font-size: 15px; }
  .eg-flow { margin: 14px auto; }
  .eg-acum-section { padding: 70px 16px 60px; }
}
@media (prefers-reduced-motion: reduce) {
  .egf-cable-flow, .egf-ring, .egf-ray-g { animation: none; }
  .egf-dot { display: none; }
}

/* ── FAQ section ──────────────────────────────────────────────────────── */
.eg-faq-section {
  position: relative; padding: 120px 24px 120px; overflow: hidden;
  background:
    radial-gradient(ellipse 55% 45% at 50% 0%, rgba(27,79,196,0.10) 0%, transparent 60%),
    var(--bg2);
}
.eg-faq-inner { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.eg-faq-section .eg-section-sub { margin-left: auto; margin-right: auto; text-align: center; }
.eg-faq-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.eg-faq-col { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.eg-faq-item {
  background: var(--surface); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; transition: border-color .25s ease, background .25s ease;
}
.eg-faq-item:hover { border-color: rgba(255,191,47,0.22); }
.eg-faq-item.eg-open { border-color: rgba(255,191,47,0.32); background: var(--surface2); }
.eg-faq-q {
  display: flex; align-items: center; gap: 18px; width: 100%; text-align: left;
  padding: 22px 26px; background: none; border: none; cursor: pointer; color: var(--text);
  font-family: var(--font); font-size: clamp(16px,1.2vw,18px); font-weight: 600; line-height: 1.4;
  transition: color .2s ease; white-space: normal;
}
.eg-faq-q:hover { color: var(--gold-light); background: none; }
.eg-faq-q:focus { outline: none; background: none; box-shadow: none; }
.eg-faq-q:focus-visible { outline: 2px solid rgba(255,191,47,0.5); outline-offset: -2px; }
.eg-faq-item.eg-open .eg-faq-q { color: var(--gold-light); }
.eg-faq-qtext { flex: 1; min-width: 0; overflow-wrap: break-word; }
.eg-faq-ico {
  flex-shrink: 0; width: 38px; height: 38px; border-radius: 11px;
  background: rgba(255,191,47,0.10); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s ease, transform .3s ease;
}
.eg-faq-item.eg-open .eg-faq-ico {
  background: linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);
  color: #09090D; transform: rotate(180deg);
}
.eg-faq-a { max-height: 0; overflow: hidden; transition: max-height .35s cubic-bezier(.2,.7,.2,1), opacity .3s ease; opacity: 0; }
.eg-faq-item.eg-open .eg-faq-a { opacity: 1; }
.eg-faq-a-inner {
  padding: 0 26px 24px; font-size: clamp(15px,1.5vw,16px); font-weight: 300;
  color: var(--muted); line-height: 1.7; max-width: 96%;
}
.eg-faq-a-inner b { color: var(--text); font-weight: 500; }
.eg-faq-a-inner .eg-note { color: var(--gold-light); font-weight: 400; }
.eg-faq-foot { margin-top: 44px; text-align: center; font-size: 16px; color: var(--muted); }
.eg-faq-foot a { color: var(--gold); text-decoration: none; font-weight: 600; border-bottom: 1px solid rgba(255,191,47,0.35); padding-bottom: 1px; transition: border-color .2s; }
.eg-faq-foot a:hover { border-color: var(--gold); }
@media (max-width: 860px) { .eg-faq-cols { grid-template-columns: 1fr; } }
@media (max-width: 640px) {
  .eg-faq-section { padding: 80px 14px; }
  .eg-faq-inner { padding: 0 4px; }
  .eg-faq-q { padding: 18px; gap: 12px; }
  .eg-faq-a-inner { padding: 0 18px 20px; }
}

/* ── Blackout section ────────────────────────────────────────────────── */
.eg-blk {
  position: relative; overflow: hidden; padding: 120px 24px;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(27,79,196,0.10) 0%, transparent 65%), var(--bg);
}
.eg-blk-inner { max-width: 1080px; margin: 0 auto; padding: 0 40px; }
.eg-blk-head { text-align: center; margin-bottom: 34px; }
.eg-blk-title { font-size: clamp(30px,3.8vw,48px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.07; margin: 0 0 14px; }
.eg-blk-sub { font-size: clamp(15px,1.4vw,18px); font-weight: 300; color: var(--muted); line-height: 1.6; max-width: 520px; margin: 0 auto; }

.eg-blk-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 0 auto 44px; font-size: 14px; font-weight: 600; }
.eg-blk-toggle .t-lab { color: var(--muted); transition: color .3s; }
.eg-blk.is-out .t-lab .s-on, .eg-blk:not(.is-out) .t-lab .s-out { display: none; }
.eg-blk.is-out .t-lab { color: var(--gold-light); }
.eg-switch {
  width: 64px; height: 34px; border-radius: 100px; border: 1px solid var(--border);
  background: var(--surface2); position: relative; cursor: pointer; padding: 0; flex-shrink: 0;
  transition: background .3s, border-color .3s;
}
.eg-knob {
  position: absolute; top: 3px; left: 3px; width: 26px; height: 26px; border-radius: 50%;
  background: var(--muted); transition: left .35s cubic-bezier(.2,.7,.2,1), background .3s;
}
.eg-blk.is-out .eg-switch { background: rgba(255,191,47,0.16); border-color: rgba(255,191,47,0.5); }
.eg-blk.is-out .eg-knob { left: 35px; background: linear-gradient(135deg,var(--gold),var(--gold-deep)); box-shadow: 0 0 12px rgba(255,191,47,.6); }
.eg-switch:focus { outline: none; box-shadow: none; }
.eg-switch:focus-visible { outline: 2px solid rgba(255,191,47,0.5); outline-offset: 2px; }

.eg-blk-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.eg-blk-card {
  border-radius: 20px; border: 1px solid var(--border); overflow: hidden;
  background: linear-gradient(180deg,#15151f 0%,#0c0c13 100%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5); padding: 26px 24px 22px; text-align: center; transition: border-color .4s;
}
.eg-blk-card.on-card { border-color: rgba(255,191,47,0.22); }
.eg-blk.is-out .on-card { border-color: rgba(255,191,47,0.45); box-shadow: 0 24px 70px rgba(255,191,47,0.12), 0 24px 60px rgba(0,0,0,0.5); }
.eg-blk-cardname { font-size: 15px; font-weight: 600; margin-bottom: 6px; }
.eg-blk-card svg { width: 100%; max-width: 300px; height: auto; display: block; margin: 4px auto 8px; }

.eg-body  { fill: #1a1a26; stroke: rgba(255,255,255,0.06); }
.eg-roof  { fill: #12121c; stroke: rgba(255,255,255,0.05); }
.eg-door  { fill: #0d0d15; }
.eg-win   { fill: var(--winOn,#ffd27a); filter: drop-shadow(0 0 8px rgba(255,200,90,0.6)); transition: fill .55s ease, filter .55s ease; }
.eg-pane  { stroke: rgba(0,0,0,0.35); stroke-width: 1.4; }
.eg-h-off { transition: opacity .5s ease, filter .5s ease; }
.eg-blk.is-out .eg-h-off .eg-win { fill: #1f1f2b; filter: none; }
.eg-blk.is-out .eg-h-off { filter: brightness(.72) saturate(.7); }
.eg-panel { fill: #14253f; stroke: var(--blue-light); stroke-width: 1; }
.eg-panel-line { stroke: var(--blue-light); stroke-width: .8; opacity: .6; }
.eg-batt { fill: #181824; stroke: rgba(255,191,47,0.4); }
.eg-batt-led { fill: var(--gold); transition: opacity .4s; }
.eg-batt-glow { fill: var(--gold); opacity: 0; transition: opacity .5s ease; }
.eg-blk.is-out .eg-batt-glow { opacity: .35; }
.eg-bflow {
  stroke: var(--gold); stroke-width: 2.4; fill: none; stroke-linecap: round; stroke-dasharray: 6 10;
  opacity: 0; filter: drop-shadow(0 0 4px rgba(255,191,47,.7));
  transition: opacity .4s; animation: egbFlow .7s linear infinite;
}
.eg-blk.is-out .eg-bflow { opacity: 1; }
@keyframes egbFlow { to { stroke-dashoffset: -16; } }

.eg-blk-status {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 16px;
  border-radius: 100px; font-size: 13px; font-weight: 600; margin-top: 4px;
  border: 1px solid var(--border); transition: all .4s;
}
.eg-blk-status svg { width: 15px; height: 15px; }
.eg-blk-status .s-out { display: none; }
.eg-blk.is-out .eg-blk-status .s-on { display: none; }
.eg-blk.is-out .eg-blk-status .s-out { display: inline; }
.off-card .eg-blk-status { color: var(--muted); }
.eg-blk.is-out .off-card .eg-blk-status { color: rgba(244,244,246,0.5); border-color: rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); }
.on-card .eg-blk-status { color: var(--gold-light); border-color: rgba(255,191,47,0.3); background: rgba(255,191,47,0.07); }
.eg-blk.is-out .on-card .eg-blk-status { background: rgba(255,191,47,0.14); border-color: rgba(255,191,47,0.5); }

.eg-blk-cta { margin-top: 40px; text-align: center; }
.eg-blk-cta-text { font-size: clamp(17px,1.8vw,21px); font-weight: 300; color: var(--muted); line-height: 1.5; margin: 0 auto 22px; max-width: 620px; }
.eg-blk-cta-text b { color: var(--text); font-weight: 600; }

@media (max-width: 760px) {
  .eg-blk { padding: 80px 16px; }
  .eg-blk-inner { padding: 0 18px; }
  .eg-blk-cards { grid-template-columns: 1fr; gap: 16px; }
  .eg-blk-card svg { max-width: 260px; }
}
@media (prefers-reduced-motion: reduce) { .eg-bflow { animation: none; } }

/* ── Partners section ────────────────────────────────────────────────── */
.pt {
  position: relative; padding: 96px 0; background: var(--bg); overflow: hidden;
}
.pt__orb {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; filter: blur(72px);
}
.pt__orb--a {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(255,191,47,.07) 0%, transparent 70%);
  top: -100px; left: -120px; animation: ptOrbA 22s ease-in-out infinite;
}
.pt__orb--b {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(74,144,232,.06) 0%, transparent 70%);
  bottom: -80px; right: -80px; animation: ptOrbB 28s ease-in-out infinite;
}
@keyframes ptOrbA { 0%,100%{transform:translate(0,0)} 50%{transform:translate(32px,40px)} }
@keyframes ptOrbB { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-28px,-24px)} }
.pt__wrap { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.pt__head { text-align: center; margin-bottom: 64px; }
.pt__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.pt__label::before, .pt__label::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--gold); opacity: .5;
}
.pt__title { font-size: clamp(28px,4vw,44px); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; margin-bottom: 16px; }
.pt__sub { font-size: 16px; line-height: 1.6; color: var(--muted); max-width: 520px; margin: 0 auto; }

.pt__marquee-wrap { display: flex; flex-direction: column; gap: 14px; }
.pt__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.pt__track { display: flex; gap: 14px; width: max-content; will-change: transform; }
.pt__marquee--fwd .pt__track { animation: ptMqFwd 30s linear infinite; }
.pt__marquee--rev .pt__track { animation: ptMqRev 36s linear infinite; }
.pt__marquee:hover .pt__track { animation-play-state: paused; }
@keyframes ptMqFwd { from{transform:translateX(0)} to{transform:translateX(-33.333%)} }
@keyframes ptMqRev { from{transform:translateX(-33.333%)} to{transform:translateX(0)} }

.pt__card {
  display: flex; align-items: center; justify-content: center;
  height: 68px; padding: 0 36px;
  background: var(--surface2); border: 1px solid var(--bd2); border-radius: 14px;
  font-size: 15px; font-weight: 700; letter-spacing: .05em; color: var(--muted);
  white-space: nowrap; cursor: default; user-select: none;
  transition: border-color .22s, color .22s, background .22s, box-shadow .22s;
}
.pt__card:hover {
  border-color: rgba(255,191,47,.3); color: var(--text);
  background: #1f1f30; box-shadow: 0 0 32px rgba(255,191,47,.07);
}

[data-r] { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
[data-r="0"] { transition-delay: .0s; }
[data-r="1"] { transition-delay: .08s; }
[data-r="2"] { transition-delay: .16s; }
[data-r].is-vis { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  [data-r] { opacity: 1; transform: none; transition: none; }
  .pt__track { animation: none; }
  .pt__orb { animation: none; }
}
