/* ============================================================
   Electro City — design uplift layer
   Loads after style.css; pure CSS, no template overrides.
   System: ink #1D2129 / body #4A5264 / line #E7EAF0 /
           ground #F6F7F9 / accent #FFBF00 / radius 14px cards, 12px controls
   ============================================================ */
:root {
  --ec-ink: #1d2129;
  --ec-body: #4a5264;
  --ec-muted: #8a93a6;
  --ec-line: #e7eaf0;
  --ec-ground: #f6f7f9;
  --ec-accent: #ffbf00;
  --ec-accent-strong: #f0ae00;
  --ec-radius: 14px;
  --ec-radius-sm: 12px;
  --ec-shadow: 0 1px 2px rgba(29, 33, 41, 0.04), 0 8px 24px -12px rgba(29, 33, 41, 0.12);
  --ec-shadow-hover: 0 2px 4px rgba(29, 33, 41, 0.05), 0 18px 36px -14px rgba(29, 33, 41, 0.22);
}

/* ---------- Typography rhythm ---------- */
h1, h2, h3, h4, .elementor-heading-title, .product_title {
  letter-spacing: -0.015em;
  text-wrap: balance;
}

/* ---------- Buttons: one system everywhere ---------- */
.elementor-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.single_add_to_cart_button,
.wpforms-submit,
.wpc-filters-apply-button,
.woocommerce .wc-block-components-button {
  border-radius: var(--ec-radius-sm) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease !important;
  border: none !important;
}
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.button.alt,
.woocommerce a.button.alt,
.single_add_to_cart_button,
.wpc-filters-apply-button,
.wpforms-submit {
  background-color: var(--ec-accent) !important;
  color: var(--ec-ink) !important;
}
.elementor-button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.button.alt:hover,
.woocommerce a.button.alt:hover,
.single_add_to_cart_button:hover,
.wpc-filters-apply-button:hover,
.wpforms-submit:hover {
  background-color: var(--ec-accent-strong) !important;
  color: var(--ec-ink) !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -10px rgba(240, 174, 0, 0.65);
}
.elementor-button:focus-visible,
.woocommerce .button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--ec-accent) !important;
  outline-offset: 2px;
}

/* ---------- Inputs ---------- */
.woocommerce-page input[type="text"],
.woocommerce-page input[type="email"],
.woocommerce-page input[type="tel"],
.woocommerce-page input[type="password"],
.woocommerce-page input[type="number"],
.woocommerce-page textarea,
.woocommerce-page select,
.wpforms-container input:not([type="checkbox"]):not([type="radio"]):not([type="submit"]),
.wpforms-container textarea,
.wpc-filters-range-inputs input {
  border: 1px solid var(--ec-line) !important;
  border-radius: 10px !important;
  padding: 0.6em 0.9em !important;
  background: #fff !important;
  color: var(--ec-ink) !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.woocommerce-page input:focus,
.woocommerce-page textarea:focus,
.woocommerce-page select:focus,
.wpforms-container input:focus,
.wpforms-container textarea:focus {
  border-color: var(--ec-accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.25) !important;
  outline: none !important;
}

/* ---------- Product cards (shop grid, related, home carousel) ---------- */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1.25rem !important;
  margin: 0 0 2rem !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product {
  width: auto !important;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 0.9rem 0.9rem 1.1rem !important;
  box-shadow: var(--ec-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  position: relative;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--ec-shadow-hover);
  border-color: #d9dee8;
}
.woocommerce ul.products li.product img {
  aspect-ratio: 1 / 1;
  width: 100%;
  object-fit: contain;
  border-radius: 10px;
  background: var(--ec-ground);
  margin-bottom: 0.85rem !important;
  padding: 6%;
  box-sizing: border-box;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-size: 0.95rem !important;
  line-height: 1.35 !important;
  font-weight: 600;
  color: var(--ec-ink);
  padding: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(2 * 1.35em);
}
.woocommerce ul.products li.product .price {
  color: var(--ec-ink) !important;
  font-size: 1.05rem !important;
  font-weight: 700;
  margin: 0.35rem 0 0.75rem !important;
}
.woocommerce ul.products li.product .price del {
  color: var(--ec-muted);
  font-weight: 500;
  font-size: 0.85em;
  margin-right: 0.4em;
}
.woocommerce ul.products li.product .price ins { text-decoration: none; }
.woocommerce ul.products li.product .button {
  margin-top: auto !important;
  text-align: center;
  padding: 0.65em 1em !important;
}
/* sale / badge */
.woocommerce span.onsale {
  background: var(--ec-ink) !important;
  color: var(--ec-accent) !important;
  border-radius: 999px !important;
  font-weight: 700;
  font-size: 0.72rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1 !important;
  padding: 0.55em 0.9em !important;
  min-height: 0 !important;
  min-width: 0 !important;
  top: 1.2rem !important;
  left: 1.2rem !important;
  z-index: 2;
}

/* ---------- Shop toolbar ---------- */
.woocommerce-result-count { color: var(--ec-muted); }
.woocommerce-ordering select {
  border: 1px solid var(--ec-line);
  border-radius: 10px;
  padding: 0.5em 2em 0.5em 0.9em;
  background: #fff;
  font-weight: 500;
  color: var(--ec-ink);
}

/* ---------- Pagination ---------- */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  gap: 0.4rem;
  justify-content: center;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
  overflow: visible;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--ec-line);
  color: var(--ec-body) !important;
  font-weight: 600;
  background: #fff;
  transition: all 0.15s ease;
}
.woocommerce nav.woocommerce-pagination ul li a:hover {
  border-color: var(--ec-accent);
  background: #fff8e1;
  color: var(--ec-ink) !important;
}
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--ec-ink);
  border-color: var(--ec-ink);
  color: #fff !important;
}

/* ---------- Filter sidebar (Filter Everything) ---------- */
.wpc-filters-section {
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 1rem 1.1rem;
  margin-bottom: 1rem !important;
  box-shadow: var(--ec-shadow);
}
.wpc-filter-title {
  font-weight: 700;
  color: var(--ec-ink);
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}
.wpc-filter-content ul.wpc-filters-ul-list {
  max-height: 300px;
  overflow-y: auto;
  padding-right: 0.4rem;
  scrollbar-width: thin;
}
.wpc-filters-ul-list li { padding: 0.15rem 0; }
.wpc-filter-link { color: var(--ec-body) !important; font-size: 0.92rem; }
.wpc-filter-link:hover { color: var(--ec-ink) !important; }
.wpc-terms-count { color: var(--ec-muted); font-size: 0.8em; }
.wpc-filters-section input[type="checkbox"] { accent-color: var(--ec-accent); width: 1rem; height: 1rem; }

/* ---------- Single product ---------- */
.woocommerce div.product div.images.woocommerce-product-gallery {
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  overflow: hidden;
  background: var(--ec-ground);
  box-shadow: var(--ec-shadow);
}
.woocommerce div.product .woocommerce-product-gallery__image img { object-fit: contain; }
.woocommerce div.product .product_title { font-size: 1.9rem; font-weight: 700; color: var(--ec-ink); }
.woocommerce div.product p.price {
  color: var(--ec-ink) !important;
  font-size: 1.7rem !important;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.woocommerce div.product p.price ins { text-decoration: none; }
.woocommerce div.product p.price del { color: var(--ec-muted); font-size: 0.7em; }
.woocommerce div.product p.stock.in-stock {
  display: inline-block;
  background: #e8f7ee;
  color: #157347 !important;
  border-radius: 999px;
  padding: 0.3em 0.9em;
  font-size: 0.82rem;
  font-weight: 600;
}
.woocommerce div.product form.cart { display: flex; gap: 0.6rem; align-items: stretch; flex-wrap: wrap; }
.woocommerce div.product form.cart div.quantity .qty {
  height: 100%;
  min-height: 2.9rem;
  width: 4.2rem;
  border: 1px solid var(--ec-line);
  border-radius: 10px;
  font-weight: 600;
}
.woocommerce div.product form.cart .single_add_to_cart_button { padding: 0.8em 2.2em !important; font-size: 1rem !important; }
/* tabs -> underline style */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0 !important;
  margin: 0 0 1.5rem !important;
  border-bottom: 1px solid var(--ec-line);
  display: flex;
  gap: 0.25rem;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before { border-bottom: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.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 ul.tabs li a {
  display: inline-block;
  padding: 0.7rem 1.1rem !important;
  font-weight: 600 !important;
  color: var(--ec-muted) !important;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  color: var(--ec-ink) !important;
  border-bottom-color: var(--ec-accent);
}
.woocommerce-Tabs-panel h2:first-of-type { font-size: 1.25rem; }
.woocommerce div.product .woocommerce-Tabs-panel { color: var(--ec-body); line-height: 1.7; }

/* ---------- Cart & checkout ---------- */
.woocommerce table.shop_table {
  border: 1px solid var(--ec-line) !important;
  border-radius: var(--ec-radius) !important;
  border-collapse: separate !important;
  border-spacing: 0;
  overflow: hidden;
  box-shadow: var(--ec-shadow);
}
.woocommerce table.shop_table th {
  background: var(--ec-ground);
  color: var(--ec-ink);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.woocommerce table.shop_table td { border-top: 1px solid var(--ec-line) !important; }
.woocommerce-cart table.cart img { width: 64px; border-radius: 8px; background: var(--ec-ground); }
.cart_totals h2, #order_review_heading { font-size: 1.25rem; }
.woocommerce-checkout #payment {
  background: var(--ec-ground) !important;
  border-radius: var(--ec-radius);
}
.woocommerce form .form-row label { font-weight: 600; color: var(--ec-ink); font-size: 0.9rem; }

/* ---------- Notices ---------- */
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  border-radius: var(--ec-radius-sm);
  border-top-width: 2px !important;
  box-shadow: var(--ec-shadow);
}
.woocommerce-message { border-top-color: var(--ec-accent) !important; }
.woocommerce-message::before { color: var(--ec-accent-strong); }

/* ---------- Homepage specifics ---------- */
/* hero: readability panel behind copy */
.elementor-element-1947f41 { position: relative; }
.elementor-element-1947f41::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(250, 250, 252, 0.93) 0%, rgba(250, 250, 252, 0.72) 38%, rgba(250, 250, 252, 0) 68%);
  pointer-events: none;
  z-index: 0;
}
.elementor-element-1947f41 > .elementor-element { position: relative; z-index: 1; }
/* category tiles */
.elementor-widget-wc-categories .product-category {
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  padding: 1rem 1rem 1.2rem !important;
  box-shadow: var(--ec-shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  text-align: center;
}
.elementor-widget-wc-categories .product-category:hover {
  transform: translateY(-4px);
  box-shadow: var(--ec-shadow-hover);
}
.elementor-widget-wc-categories .product-category img {
  aspect-ratio: 4 / 3;
  object-fit: contain;
  background: var(--ec-ground);
  border-radius: 10px;
  padding: 6%;
  box-sizing: border-box;
  margin-bottom: 0.75rem !important;
}
.elementor-widget-wc-categories .woocommerce-loop-category__title {
  font-size: 1rem !important;
  font-weight: 600;
  color: var(--ec-ink);
}
.elementor-widget-wc-categories .woocommerce-loop-category__title .count {
  background: none;
  color: var(--ec-muted);
  font-weight: 500;
  font-size: 0.85em;
}

/* ---------- Footer ---------- */
.elementor-location-footer a { transition: color 0.15s ease; }
.elementor-location-footer a:hover { color: var(--ec-accent-strong) !important; }

/* ---------- Mobile ---------- */
@media (max-width: 767px) {
  /* USP row -> 2x2 grid */
  .elementor-element-32621ce {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  .woocommerce ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 0.75rem !important; }
  .woocommerce ul.products li.product { padding: 0.6rem 0.6rem 0.8rem !important; }
  .woocommerce div.product .product_title { font-size: 1.45rem; }
  .woocommerce div.product form.cart .single_add_to_cart_button { flex: 1; }
}

/* ---------- Iteration 2: card alignment + wc-block grid ---------- */
.woocommerce ul.products li.product { display: flex !important; }
.woocommerce ul.products li.product .woocommerce-loop-product__link {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.woocommerce ul.products li.product .woocommerce-loop-product__link .price { margin-top: auto !important; }
.woocommerce ul.products li.product > .button {
  font-size: 0.9rem !important;
  line-height: 1.4 !important;
  padding: 0.65em 1em !important;
}

/* Gutenberg Woo product grid (cart "New in store", etc.) */
.wc-block-grid__products {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.wc-block-grid__product {
  border: 1px solid var(--ec-line) !important;
  border-radius: var(--ec-radius);
  background: #fff;
  padding: 0.9rem 0.9rem 1.1rem !important;
  box-shadow: var(--ec-shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.wc-block-grid__product:hover { transform: translateY(-4px); box-shadow: var(--ec-shadow-hover); }
.wc-block-grid__product-image img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: var(--ec-ground);
  border-radius: 10px;
  padding: 6%;
  box-sizing: border-box;
}
.wc-block-grid__product-title {
  color: var(--ec-ink) !important;
  font-weight: 600 !important;
  font-size: 0.95rem !important;
}
.wc-block-grid__product-price { color: var(--ec-ink) !important; font-weight: 700; }
.wc-block-grid__product-add-to-cart { margin-top: auto !important; }
.wc-block-grid__product-add-to-cart .wp-block-button__link {
  background: var(--ec-accent) !important;
  color: var(--ec-ink) !important;
  border-radius: var(--ec-radius-sm) !important;
  font-weight: 600 !important;
  width: 100%;
}
.wc-block-grid__product-add-to-cart .wp-block-button__link:hover { background: var(--ec-accent-strong) !important; }

/* empty-cart smiley block spacing */
.cart-empty.woocommerce-info { border: none; background: none; box-shadow: none; }

/* ---------- Iteration 3 ---------- */
.woocommerce ul.products li.product { flex-direction: column !important; }
/* category tiles: balanced 3-up on desktop */
@media (min-width: 768px) {
  .elementor-widget-wc-categories ul.products { grid-template-columns: repeat(3, 1fr) !important; }
}

/* ============================================================
   V2 — heavier redesign
   ============================================================ */

/* ---------- Sticky glass header ---------- */
.elementor-location-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--ec-line);
}
.elementor-location-header nav a { transition: color 0.15s ease; }

/* ---------- Dark cinematic hero ---------- */
.elementor-element-1947f41::before {
  background: linear-gradient(88deg, rgba(17, 20, 27, 0.92) 0%, rgba(17, 20, 27, 0.78) 34%, rgba(17, 20, 27, 0.28) 62%, rgba(17, 20, 27, 0.05) 82%) !important;
}
.elementor-element-1947f41 .elementor-heading-title { color: #fff !important; }
.elementor-element-1947f41 h1.elementor-heading-title,
.elementor-element-1947f41 .elementor-widget-heading:nth-of-type(2) .elementor-heading-title {
  font-size: clamp(2.4rem, 4.6vw, 4rem) !important;
  line-height: 1.06 !important;
}
.elementor-element-1947f41 .elementor-widget-text-editor { color: rgba(255, 255, 255, 0.82) !important; }
/* badge chip */
.elementor-element-1947f41 .elementor-widget-heading:first-of-type .elementor-heading-title {
  display: inline-block;
  font-size: 0.78rem !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-accent) !important;
  background: rgba(255, 191, 0, 0.12);
  border: 1px solid rgba(255, 191, 0, 0.4);
  border-radius: 999px;
  padding: 0.5em 1.1em;
}
.elementor-element-1947f41 .elementor-button {
  background: var(--ec-accent) !important;
  color: var(--ec-ink) !important;
  border-radius: 999px !important;
  padding: 1em 2.4em !important;
  font-size: 1rem !important;
}

/* ---------- Archive / search header ---------- */
.ec-archive-head {
  width: 100%;
  padding: 0.4rem 0 1.4rem;
  margin-bottom: 1.4rem;
  border-bottom: 1px solid var(--ec-line);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.ec-archive-head h1 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--ec-ink);
  margin: 0;
  line-height: 1.1;
}
.ec-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ec-accent-strong);
}
.ec-count {
  align-self: flex-start;
  background: var(--ec-ground);
  border: 1px solid var(--ec-line);
  border-radius: 999px;
  padding: 0.3em 0.95em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ec-body);
}

/* ---------- Product cards v2 ---------- */
.ec-card-cat {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ec-muted);
  margin-bottom: 0.3rem;
}
.woocommerce ul.products li.product { overflow: hidden; }
.woocommerce ul.products li.product img { transition: transform 0.3s ease; }
.woocommerce ul.products li.product:hover img { transform: scale(1.045); }

/* ---------- Star ratings ---------- */
.woocommerce .star-rating span::before, .woocommerce .star-rating::before { color: var(--ec-accent) !important; }

/* ---------- Sticky filter sidebar & product summary ---------- */
@media (min-width: 1025px) {
  .elementor-widget-filter-everything-filters { position: sticky; top: 96px; align-self: start; }
  .woocommerce div.product .entry-summary,
  .elementor-widget-woocommerce-product-data-tabs ~ * {}
}

/* ---------- Dark footer ---------- */
.elementor-location-footer > .e-con,
.elementor-location-footer .e-con-boxed {
  background-color: #14171e !important;
}
.elementor-location-footer,
.elementor-location-footer p,
.elementor-location-footer .elementor-widget-text-editor,
.elementor-location-footer li,
.elementor-location-footer a { color: #a7afc0 !important; }
.elementor-location-footer h2, .elementor-location-footer h3,
.elementor-location-footer h4, .elementor-location-footer .elementor-heading-title { color: #fff !important; }
.elementor-location-footer a:hover { color: var(--ec-accent) !important; }
.elementor-location-footer img { filter: brightness(0) invert(1) opacity(0.92); }
.elementor-location-footer .elementor-icon,
.elementor-location-footer .elementor-social-icon { border-color: #2a2f3a !important; }
.elementor-location-footer .elementor-social-icon i,
.elementor-location-footer .elementor-social-icon svg { color: #a7afc0 !important; fill: #a7afc0 !important; }
.elementor-location-footer .elementor-icon-list-icon i { color: var(--ec-accent) !important; }

/* ---------- Mobile bottom nav ---------- */
.ec-bottom-nav {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 300;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--ec-line);
  padding: 0.4rem 0.5rem calc(0.4rem + env(safe-area-inset-bottom));
}
.ec-bottom-nav a {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 0.66rem;
  font-weight: 600;
  color: var(--ec-body);
  position: relative;
}
.ec-bottom-nav a svg { width: 22px; height: 22px; }
.ec-bn-badge {
  position: absolute;
  top: -4px;
  right: calc(50% - 20px);
  background: var(--ec-accent);
  color: var(--ec-ink);
  border-radius: 999px;
  font-size: 0.62rem;
  min-width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}
@media (max-width: 767px) {
  .ec-bottom-nav { display: flex; }
  body { padding-bottom: 64px; }
  .elementor-element-1947f41 .elementor-heading-title { font-size: clamp(2rem, 9vw, 2.6rem) !important; }
}

/* ---------- My account ---------- */
.woocommerce-MyAccount-navigation ul { display: flex; flex-direction: column; gap: 0.3rem; padding: 0; }
.woocommerce-MyAccount-navigation li { list-style: none; }
.woocommerce-MyAccount-navigation li a {
  display: block;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  color: var(--ec-body);
}
.woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-MyAccount-navigation li a:hover { background: var(--ec-ground); color: var(--ec-ink); }
.woocommerce-form-login, .woocommerce-form-register {
  border: 1px solid var(--ec-line) !important;
  border-radius: var(--ec-radius) !important;
  box-shadow: var(--ec-shadow);
  padding: 1.6rem !important;
}

/* archive toolbar alignment */
.woocommerce-result-count { margin-top: 0.4rem !important; }

/* v2 fixes */
.elementor-element-1947f41 .elementor-widget-heading:first-of-type .elementor-heading-title {
  background: rgba(255, 191, 0, 0.14) !important;
  color: var(--ec-accent) !important;
}
.woocommerce-result-count { display: none !important; }
.elementor-element-1947f41 .elementor-widget-heading:first-of-type,
.elementor-element-1947f41 .elementor-widget-heading:first-of-type .elementor-widget-container { background: transparent !important; }

/* archive container: full-width products when the filter sidebar is absent or empty
   (the real grid is the boxed container's .e-con-inner) */
.elementor-element-b92cdad:not(:has(.wpc-filters-section)),
.elementor-element-b92cdad:not(:has(.wpc-filters-section)) > .e-con-inner {
  grid-template-columns: 1fr !important;
}
.elementor-element-b92cdad:not(:has(.wpc-filters-section)) .elementor-widget-filter-everything-filters { display: none; }

/* ============================================================
   V3 — trust layer, 404, checkout blocks, spec list, WhatsApp
   ============================================================ */

/* brand strip */
.ec-brands-section .elementor-heading-title {
  font-size: 0.78rem !important;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ec-muted) !important;
  font-weight: 700 !important;
}
.ec-brandstrip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 2.6rem;
  padding-top: 0.9rem;
}
.ec-brandstrip span {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #c3c9d5;
  transition: color 0.2s ease;
  cursor: default;
}
.ec-brandstrip span:hover { color: var(--ec-ink); }

/* showroom */
.ec-showroom-section { gap: 2.5rem; align-items: center; }
.ec-showroom-sub { color: var(--ec-body); margin-bottom: 1rem !important; }
.ec-showroom-list { list-style: none; padding: 0; margin: 0 0 1.4rem; }
.ec-showroom-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--ec-line);
  color: var(--ec-body);
}
.ec-showroom-list li strong {
  display: inline-block;
  min-width: 92px;
  color: var(--ec-ink);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ec-showroom-section iframe { border-radius: var(--ec-radius); box-shadow: var(--ec-shadow); }

/* spec-style description lists (single product) */
.woocommerce-Tabs-panel--description p { padding: 0.45rem 0; margin: 0 !important; border-bottom: 1px solid var(--ec-ground); }
.woocommerce-Tabs-panel--description p strong {
  display: inline-block;
  min-width: 190px;
  color: var(--ec-ink);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
/* sticky summary column */
@media (min-width: 1025px) {
  .elementor-element-26c5ce3 { position: sticky; top: 110px; }
}
/* related products heading */
.related.products > h2, section.related > h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ec-ink);
  margin-bottom: 1.2rem;
}

/* breadcrumbs */
.woocommerce-breadcrumb { font-size: 0.85rem !important; color: var(--ec-muted) !important; }
.woocommerce-breadcrumb a { color: var(--ec-body) !important; }
.woocommerce-breadcrumb a:hover { color: var(--ec-ink) !important; }

/* ---------- WooCommerce blocks (cart & checkout) branding ---------- */
.wc-block-components-checkout-place-order-button,
.wc-block-cart__submit-button,
.wc-block-components-button:not(.is-link) {
  background: var(--ec-accent) !important;
  color: var(--ec-ink) !important;
  border-radius: var(--ec-radius-sm) !important;
  border: none !important;
  outline: none !important;
  font-weight: 700 !important;
  box-shadow: none !important;
}
.wc-block-components-checkout-place-order-button:hover,
.wc-block-cart__submit-button:hover { background: var(--ec-accent-strong) !important; }
.wp-block-woocommerce-checkout a, .wp-block-woocommerce-cart a,
.wc-block-components-checkout-return-to-cart-button { color: var(--ec-accent-strong) !important; }
.wc-block-components-text-input input:focus,
.wc-block-components-checkout-step input:focus,
.wc-block-components-form input:focus {
  border-color: var(--ec-accent) !important;
  box-shadow: 0 0 0 3px rgba(255, 191, 0, 0.25) !important;
}
.wc-block-components-checkbox__input:checked { background: var(--ec-accent) !important; border-color: var(--ec-accent) !important; }
.wc-block-components-checkbox__mark { color: var(--ec-ink) !important; }
.wc-block-components-radio-control__option::before { border-color: var(--ec-line) !important; }
.wc-block-components-sidebar .wc-block-components-panel,
.wc-block-components-sidebar {
  border-radius: var(--ec-radius);
}
.wp-block-woocommerce-checkout-order-summary-block {
  border: 1px solid var(--ec-line) !important;
  border-radius: var(--ec-radius) !important;
  box-shadow: var(--ec-shadow);
}

/* ---------- 404 ---------- */
.ec-404 {
  max-width: 640px;
  margin: 0 auto;
  padding: 5rem 1.5rem 6rem;
  text-align: center;
}
.ec-404-code {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--ec-accent);
  display: block;
}
.ec-404 h1 { font-size: 2rem; color: var(--ec-ink); margin: 0.6rem 0; }
.ec-404 p { color: var(--ec-body); margin-bottom: 1.6rem; }
.ec-404-search { display: flex; gap: 0.5rem; max-width: 430px; margin: 0 auto 1.6rem; }
.ec-404-search input[type="search"] {
  flex: 1;
  border: 1px solid var(--ec-line);
  border-radius: 999px;
  padding: 0.7em 1.3em;
}
.ec-404-search button {
  background: var(--ec-accent);
  border: none;
  border-radius: 999px;
  padding: 0.7em 1.6em;
  font-weight: 700;
  color: var(--ec-ink);
  cursor: pointer;
}
.ec-404-links { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.ec-404-links a {
  border: 1px solid var(--ec-line);
  border-radius: 999px;
  padding: 0.45em 1.1em;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ec-body);
  transition: all 0.15s ease;
}
.ec-404-links a:hover { border-color: var(--ec-accent); color: var(--ec-ink); background: #fff8e1; }
.ec-404-cta {
  display: inline-block;
  background: var(--ec-ink);
  color: #fff !important;
  border-radius: var(--ec-radius-sm);
  padding: 0.8em 2em;
  font-weight: 700;
}

/* ---------- WhatsApp float ---------- */
.ec-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 290;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37, 211, 102, 0.55);
  transition: transform 0.15s ease;
}
.ec-whatsapp:hover { transform: scale(1.08); }
.ec-whatsapp svg { width: 30px; height: 30px; }
@media (max-width: 767px) { .ec-whatsapp { bottom: 80px; right: 14px; width: 48px; height: 48px; } }

@media (max-width: 900px) {
  .ec-showroom-section { flex-direction: column !important; }
  .ec-showroom-section > .e-con { width: 100% !important; }
}

/* showroom widgets: self-contained styling (Elementor's conditional widget CSS
   doesn't load for widgets injected outside the editor) */
.ec-showroom-section .elementor-button {
  display: inline-flex;
  align-items: center;
  background: var(--ec-ink) !important;
  color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  padding: 0.8em 1.9em !important;
  border-radius: var(--ec-radius-sm) !important;
  line-height: 1.4;
}
.ec-showroom-section .elementor-button:hover { background: #2a2f3a !important; transform: translateY(-1px); }
.ec-showroom-section .elementor-custom-embed,
.ec-showroom-section .elementor-widget-google_maps,
.ec-showroom-section .elementor-widget-google_maps .elementor-widget-container { width: 100%; }
.ec-showroom-section iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}
.ec-showroom-section .elementor-heading-title { font-size: 1.75rem !important; }

/* deals row */
.ec-deals-head { display: flex; flex-direction: column; gap: 0.3rem; margin-bottom: 1.2rem; }
.ec-deals-head h2 { margin: 0; font-size: 1.6rem; color: var(--ec-ink); }
.ec-deals .products { margin-top: 0 !important; }

/* ============================================================
   V4 — announcement bar, product CTAs, recent, top button
   ============================================================ */
.ec-topbar {
  background: var(--ec-ink);
  color: #d9deea;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 0.45rem 1rem;
  letter-spacing: 0.01em;
}
.ec-topbar a { color: var(--ec-accent) !important; font-weight: 700; white-space: nowrap; }
.ec-topbar-sep { width: 4px; height: 4px; border-radius: 999px; background: #4a5264; }
@media (max-width: 560px) { .ec-topbar span:first-child { font-size: 0.72rem; } }

/* product CTAs */
.ec-wa-product, .ec-call-product {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.72em 1.3em;
  border-radius: var(--ec-radius-sm);
  font-weight: 600;
  font-size: 0.92rem;
  line-height: 1.3;
  white-space: nowrap;
}
.ec-wa-product { background: #25d366; color: #fff !important; }
.ec-wa-product:hover { background: #1fb757; transform: translateY(-1px); }
.ec-wa-product svg { width: 19px; height: 19px; }
.ec-call-product { background: #fff; color: var(--ec-ink) !important; border: 1.5px solid var(--ec-line); }
.ec-call-product:hover { border-color: var(--ec-ink); }
.ec-delivery-note { margin-top: 0.9rem !important; color: var(--ec-muted); font-size: 0.86rem; }
.woocommerce div.product p.stock.in-stock { background: #fff4d6; color: #8a6100 !important; }
.woocommerce div.product form.cart { row-gap: 0.6rem; }

/* recently viewed */
.ec-recent { max-width: 1140px; margin: 3rem auto 1rem; padding: 0 15px; }
.ec-recent h2 { font-size: 1.5rem; color: var(--ec-ink); margin-bottom: 1.2rem; }

/* back to top */
.ec-top {
  position: fixed;
  right: 20px;
  bottom: 92px;
  z-index: 290;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--ec-line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ec-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--ec-shadow);
  transition: transform 0.15s ease;
}
.ec-top:hover { transform: translateY(-2px); }
.ec-top svg { width: 20px; height: 20px; }
@media (max-width: 767px) { .ec-top { bottom: 140px; right: 14px; } }

/* header nav dropdown (Elementor nav-menu submenu) */
.elementor-nav-menu--main .elementor-nav-menu--dropdown,
.elementor-nav-menu--main ul.sub-menu {
  background: #fff !important;
  border: 1px solid var(--ec-line) !important;
  border-radius: var(--ec-radius-sm) !important;
  box-shadow: var(--ec-shadow-hover) !important;
  padding: 0.4rem !important;
  margin-top: 0.5rem !important;
}
.elementor-nav-menu--main .elementor-nav-menu--dropdown a,
.elementor-nav-menu--main ul.sub-menu a {
  border-radius: 8px !important;
  padding: 0.55em 0.9em !important;
  font-size: 0.92rem !important;
  color: var(--ec-body) !important;
}
.elementor-nav-menu--main .elementor-nav-menu--dropdown a:hover,
.elementor-nav-menu--main ul.sub-menu a:hover {
  background: var(--ec-ground) !important;
  color: var(--ec-ink) !important;
}

/* newsletter form (footer) */
.ec-newsletter .wpforms-container { max-width: 460px; }
.ec-newsletter .wpforms-field-container { display: flex; gap: 0.5rem; }
.ec-newsletter input[type="email"] {
  flex: 1;
  background: #1e222b !important;
  border: 1px solid #2a2f3a !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.7em 1em !important;
}
.ec-newsletter input[type="email"]::placeholder { color: #7d8598; }
.ec-newsletter .wpforms-submit-container { margin-top: 0.6rem !important; }
.ec-newsletter .wpforms-submit {
  background: var(--ec-accent) !important;
  color: var(--ec-ink) !important;
  border-radius: 10px !important;
  padding: 0.7em 1.6em !important;
}
.elementor-location-footer .ec-newsletter { width: 100% !important; margin-top: 1.2rem; }
.ec-newsletter .elementor-heading-title { font-size: 1.15rem !important; }
/* dropdown: CSS hover fallback (works without Elementor's nav JS) */
.elementor-nav-menu--main li.menu-item-has-children > ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  z-index: 300;
  list-style: none;
}
.elementor-nav-menu--main li.menu-item-has-children { position: relative; }
.elementor-nav-menu--main li.menu-item-has-children:hover > ul,
.elementor-nav-menu--main li.menu-item-has-children:focus-within > ul { display: block; }
.elementor-nav-menu--main li.menu-item-has-children > ul a { display: block; white-space: nowrap; }
/* newsletter spans the footer grid */
.elementor-location-footer .ec-newsletter { grid-column: 1 / -1; }

/* ============================================================
   Live search dropdown
   ============================================================ */
.ec-ls {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 400;
  background: #fff;
  border: 1px solid var(--ec-line);
  border-radius: var(--ec-radius);
  box-shadow: var(--ec-shadow-hover);
  overflow: hidden;
  max-height: 430px;
  overflow-y: auto;
}
.ec-ls-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.55rem 0.9rem;
  transition: background 0.12s ease;
}
.ec-ls-item:hover, .ec-ls-item.is-active { background: var(--ec-ground); }
.ec-ls-item img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--ec-ground);
  flex: none;
}
.ec-ls-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.ec-ls-txt b {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ec-ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ec-ls-txt small {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ec-muted);
}
.ec-ls-price { font-weight: 700; font-size: 0.88rem; color: var(--ec-ink); white-space: nowrap; }
.ec-ls-all, .ec-ls-empty {
  display: block;
  text-align: center;
  padding: 0.7rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ec-accent-strong) !important;
  border-top: 1px solid var(--ec-line);
  background: #fffdf5;
}
.ec-ls-empty { color: var(--ec-muted) !important; background: #fff; }
.e-search-form .ec-ls { min-width: 100%; }
.ec-ls-txt b { font-size: 0.85rem; }
