/* ============================================================
   LS PEPTIDES — motion and shop styling
   Loaded after style.css. Everything here either belongs to the shop
   (which Elementor styles generically) or is a movement Elementor has no
   control for. Kept apart from style.css so the token layer stays readable.
   ============================================================ */

/* ============================================================
   ANNOUNCEMENT TICKER
   A real marquee rather than a static line. The track holds two identical
   groups and slides exactly half its width, so the loop is seamless.
   ============================================================ */
.ls-ticker{
  overflow: hidden;
  position: relative;
  --ls-ticker-speed: 38s;
}
.ls-ticker__track{
  display: flex;
  width: max-content;
  animation: ls-ticker-slide var(--ls-ticker-speed) linear infinite;
}
.ls-ticker__group{ display: flex; flex: none; }
.ls-ticker__item{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 26px;
  white-space: nowrap;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #DCEBFB;
}
.ls-ticker__item::after{
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(220, 235, 251, .55);
}
@keyframes ls-ticker-slide{ to{ transform: translateX(-50%); } }
.ls-ticker:hover .ls-ticker__track{ animation-play-state: paused; }

/* ============================================================
   MOLECULAR FIELD
   Sits behind the hero. Canvas rather than SVG because it is generative
   and redraws every frame.
   ============================================================ */
.ls-molecules{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
}
.ls-hero-band{ position: relative; overflow: hidden; }
.ls-hero-band > *{ position: relative; z-index: 1; }

/* the vial plate breathes, and its lower edge fades into the page */
.ls-hero-image img{
  animation: ls-float 9s ease-in-out infinite;
  -webkit-mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 84%, transparent 100%);
}
@keyframes ls-float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-12px); }
}

/* ============================================================
   CHROMATOGRAM
   The trace draws itself once, when it first reaches the viewport.
   ============================================================ */
.ls-chromo{
  border: 1px solid var(--ls-line);
  background: linear-gradient(180deg, var(--ls-surface-2), var(--ls-ink-2));
  border-radius: 3px;
  padding: 22px 22px 16px;
}
.ls-chromo__head{
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.ls-chromo__head .t{ color: var(--ls-sky); }
.ls-chromo__head .v{ color: var(--ls-faint); }
.ls-chromo svg{ width: 100%; height: auto; display: block; }
.ls-chromo .axis{ stroke: var(--ls-line); stroke-width: 1; }
.ls-chromo .label{
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  fill: var(--ls-faint);
  letter-spacing: .08em;
}
.ls-chromo .trace{
  fill: none;
  stroke: var(--ls-azure);
  stroke-width: 1.6;
  stroke-linejoin: round;
  stroke-linecap: round;
  filter: drop-shadow(0 0 6px rgba(70, 166, 245, .45));
}
.ls-chromo .trace.is-drawing{
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: ls-draw 2.4s cubic-bezier(.22,.61,.36,1) forwards;
}
@keyframes ls-draw{ to{ stroke-dashoffset: 0; } }
.ls-chromo__foot{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--ls-line-soft);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ls-faint);
}
.ls-chromo__foot b{ color: var(--ls-ok); font-weight: 500; }

/* ============================================================
   SHOP
   Elementor styles the product grid generically; the cap-colour system is
   what makes it this brand's grid rather than any WooCommerce grid.
   ============================================================ */
.woocommerce ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
}
/* WooCommerce puts a clearfix on this list. In a grid container those
   pseudo-elements become grid items and eat the first and last cells,
   which left an empty slot before the first product. */
.woocommerce ul.products::before,
.woocommerce ul.products::after{
  display: none !important;
}
@media (max-width: 1024px){ .woocommerce ul.products{ grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px){ .woocommerce ul.products{ grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; } }

.woocommerce ul.products li.product{
  --ls-accent: var(--ls-blue);
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  padding: 0;
  background: var(--ls-surface);
  border: 1px solid var(--ls-line-soft);
  border-radius: 3px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .45s var(--ls-ease), border-color .45s var(--ls-ease), box-shadow .45s var(--ls-ease);
}
.woocommerce ul.products li.product:hover{
  transform: translateY(-6px);
  border-color: var(--ls-line);
  box-shadow: 0 26px 50px rgba(0, 0, 0, .5);
}

/* accent hairline wipes across the top edge on hover */
.woocommerce ul.products li.product::before{
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 2px;
  background: var(--ls-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ls-ease);
  z-index: 3;
}
.woocommerce ul.products li.product:hover::before{ transform: scaleX(1); }

.woocommerce ul.products li.product a img{
  margin: 0;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform .7s var(--ls-ease);
}
.woocommerce ul.products li.product:hover a img{ transform: scale(1.06); }

.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-family: "Archivo", sans-serif !important;
  font-weight: 700;
  font-size: 17px !important;
  text-transform: uppercase;
  letter-spacing: .01em;
  color: #fff;
  padding: 16px 18px 0 !important;
  margin: 0;
}
.woocommerce ul.products li.product .price{
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: #fff !important;
  padding: 8px 18px 0;
  font-variant-numeric: tabular-nums;
  display: block;
}
.woocommerce ul.products li.product .price del{ color: var(--ls-faint); font-weight: 400; }

.woocommerce ul.products li.product .button{
  margin: 14px 18px 18px;
  padding: 11px 18px;
  background: transparent;
  border: 1px solid var(--ls-line);
  border-radius: 2px;
  color: var(--ls-text);
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .3s var(--ls-ease), border-color .3s var(--ls-ease), color .3s var(--ls-ease);
}
.woocommerce ul.products li.product:hover .button{
  background: var(--ls-accent);
  border-color: var(--ls-accent);
  color: #fff;
}
.woocommerce ul.products li.product .added_to_cart{
  margin: 0 18px 16px;
  color: var(--ls-ok);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* per-compound cap colour, emitted as a body/li class by the theme */
.ls-cap-ghkcu       { --ls-accent: var(--ls-cap-ghkcu) !important; }
.ls-cap-motsc       { --ls-accent: var(--ls-cap-motsc) !important; }
.ls-cap-somatropin  { --ls-accent: var(--ls-cap-somatropin) !important; }
.ls-cap-nad         { --ls-accent: var(--ls-cap-nad) !important; }
.ls-cap-retatrutide { --ls-accent: var(--ls-cap-retatrutide) !important; }
.ls-cap-glowblend   { --ls-accent: var(--ls-cap-glowblend) !important; }
.ls-cap-melanotan   { --ls-accent: var(--ls-cap-melanotan) !important; }
.ls-cap-dsip        { --ls-accent: var(--ls-cap-dsip) !important; }

/* a mono spec line under each card title */
.ls-loop-spec{
  padding: 7px 18px 0;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--ls-faint);
  display: flex;
  gap: 8px;
  align-items: center;
}
.ls-loop-spec .coa{ color: var(--ls-ok); }

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering select{
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--ls-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.woocommerce .woocommerce-ordering select{
  background: var(--ls-ink);
  border: 1px solid var(--ls-line);
  color: var(--ls-text);
  padding: 9px 12px;
  border-radius: 2px;
}

/* ============================================================
   SINGLE PRODUCT
   ============================================================ */
.single-product div.product .product_title{
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -.01em;
  color: #fff;
}
.single-product div.product p.price{
  font-family: "Archivo", sans-serif;
  font-weight: 800;
  font-size: 30px;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.single-product div.product .woocommerce-product-details__short-description{
  color: var(--ls-mute);
}
.single-product div.product form.cart .button{
  background: var(--ls-blue);
  color: #fff;
  border-radius: 2px;
  padding: 16px 32px;
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .3s var(--ls-ease), transform .3s var(--ls-ease);
}
.single-product div.product form.cart .button:hover{
  background: var(--ls-azure);
  transform: translateY(-2px);
}
.single-product .woocommerce-tabs ul.tabs li{
  background: var(--ls-surface);
  border-color: var(--ls-line);
}
.single-product .woocommerce-tabs ul.tabs li a{
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ls-mute);
}
.single-product .woocommerce-tabs ul.tabs li.active a{ color: var(--ls-azure); }
.single-product .woocommerce-Tabs-panel{ color: var(--ls-mute); }
.single-product .woocommerce-Tabs-panel h3{
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  font-size: 15px;
  letter-spacing: .02em;
}
.single-product .woocommerce-Tabs-panel table{
  width: 100%;
  border-collapse: collapse;
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
}
.single-product .woocommerce-Tabs-panel table td{
  padding: 11px 12px;
  border-bottom: 1px solid var(--ls-line-soft);
}
.single-product .woocommerce-Tabs-panel table td:first-child{
  color: var(--ls-faint);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .1em;
  width: 40%;
}
.single-product .woocommerce-Tabs-panel table td:last-child{ color: var(--ls-text); }

/* WooCommerce notices, on brand rather than default green */
.woocommerce-message,
.woocommerce-info{
  background: var(--ls-surface);
  border-top-color: var(--ls-azure);
  color: var(--ls-text);
}
.woocommerce-error{
  background: var(--ls-surface);
  border-top-color: var(--ls-stop);
  color: var(--ls-text);
}

/* ============================================================
   SCROLL REVEAL
   The resting state is VISIBLE. Only elements below the fold at load are
   hidden, so the first painted frame is never blank and a JS failure or a
   crawler still sees the whole page.
   ============================================================ */
.ls-will-reveal{ opacity: 0; transform: translateY(24px); }
.ls-revealed{
  opacity: 1;
  transform: none;
  transition: opacity .7s var(--ls-ease), transform .7s var(--ls-ease);
}

@media (prefers-reduced-motion: reduce){
  .ls-ticker__track{ animation: none; }
  .ls-hero-image img{ animation: none; }
  .ls-chromo .trace.is-drawing{ animation: none; stroke-dashoffset: 0; }
  .ls-will-reveal{ opacity: 1; transform: none; }
  .woocommerce ul.products li.product:hover{ transform: none; }
}

/* ============================================================
   2026-09-05 DESIGN PASS
   Hero lighting, section furniture, fused strips, button sheen,
   wholesale wash and the mobile refinements from the 43-item
   design review. Ordered after every base rule on purpose: equal
   specificity resolves by file order.
   ============================================================ */

/* ---- hero lighting (source .hero / .hero-art::after) ---- */
.ls-hero-band{
  background-image:
    radial-gradient(120% 80% at 78% 42%, rgba(30,111,217,.20), transparent 62%),
    radial-gradient(80% 60% at 8% 0%, rgba(70,166,245,.10), transparent 60%);
  border-bottom: 1px solid var(--ls-line-soft);
}
.ls-hero-image{ position: relative; }
.ls-hero-image::after{
  content: "";
  position: absolute;
  left: 8%; right: 8%; bottom: -6px;
  height: 56px;
  background: radial-gradient(ellipse at center, rgba(30,111,217,.42), transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}
.ls-hero-image img{ border-radius: 3px; }

/* ---- eyebrow tick: the 26px azure dash from the source design ---- */
.ls-eyebrow .elementor-heading-title{ display: flex; align-items: center; gap: 10px; }
.ls-eyebrow .elementor-heading-title::before{
  content: ""; width: 26px; height: 1px; background: var(--ls-azure); flex: none;
}
.ls-eyebrow--center .elementor-heading-title{ justify-content: center; }
.ls-eyebrow--center .elementor-heading-title::after{
  content: ""; width: 26px; height: 1px; background: var(--ls-azure); flex: none;
}

/* ---- luminous baseline seam ---- */
.ls-baseline{
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg, transparent, rgba(70,166,245,.5) 30%, rgba(70,166,245,.5) 70%, transparent);
}

/* ---- panel: luminous top hairline + quiet lift ---- */
.ls-panel{ position: relative; }
.ls-panel::before{
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(70,166,245,.35), transparent);
  pointer-events: none;
}
.e-con.ls-panel{
  transition: border-color .35s var(--ls-ease), transform .35s var(--ls-ease);
}
.e-con.ls-panel:hover{
  border-color: var(--ls-line);
  transform: translateY(-3px);
}

/* ---- fused strips: shared frame, hairline cell dividers ---- */
.ls-strip > .e-con,
.ls-process > .e-con{
  border-right: 1px solid var(--ls-line-soft);
  transition: background-color .3s var(--ls-ease);
}
.ls-strip > .e-con:last-child,
.ls-process > .e-con:last-child{ border-right: 0; }
.ls-strip > .e-con:hover,
.ls-process > .e-con:hover{ background-color: var(--ls-surface-2); }
@media (min-width: 768px) and (max-width: 1024px){
  .ls-strip > .e-con,
  .ls-process > .e-con{ border-right: 0; border-bottom: 1px solid var(--ls-line-soft); }
  .ls-strip > .e-con:nth-child(odd),
  .ls-process > .e-con:nth-child(odd){ border-right: 1px solid var(--ls-line-soft); }
  .ls-strip > .e-con:last-child,
  .ls-process > .e-con:last-child{ border-bottom: 0; border-right: 0; }
}
/* process becomes a horizontal snap rail on phones: stage 2 peeks in */
@media (max-width: 767px){
  .e-con.ls-process{
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .e-con.ls-process::-webkit-scrollbar{ display: none; }
  .e-con.ls-process > .e-con{
    flex: 0 0 76% !important;
    max-width: 76% !important;
    scroll-snap-align: start;
    border-right: 1px solid var(--ls-line-soft);
    border-bottom: 0;
  }
  .e-con.ls-strip > .e-con{
    border-right: 0;
    border-bottom: 1px solid var(--ls-line-soft);
  }
  .e-con.ls-strip > .e-con:last-child{ border-bottom: 0; }
}

/* ---- buttons: diagonal sheen + lift (source .btn) ---- */
.elementor-button{
  position: relative;
  overflow: hidden;
  transition: background .3s var(--ls-ease), border-color .3s var(--ls-ease),
              color .3s var(--ls-ease), transform .3s var(--ls-ease);
}
.elementor-button::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform .7s var(--ls-ease);
  pointer-events: none;
}
.elementor-button:hover{ transform: translateY(-2px); }
.elementor-button:hover::after{ transform: translateX(130%); }

/* ---- wholesale card: blue bloom over a vertical fade ----
   Four classes so this outranks Elementor's three-class element rule,
   which carries the fallback linear gradient from the container settings. */
.e-flex.e-con.ls-wholesale.ls-reveal{
  background:
    radial-gradient(90% 130% at 88% 50%, rgba(30,111,217,.26), transparent 62%),
    linear-gradient(180deg, var(--ls-surface-2), var(--ls-ink-2));
}
.ls-tiers tr td{ transition: background .3s var(--ls-ease); }
.ls-tiers tr:hover td{ background: var(--ls-surface) !important; }

/* ---- homepage catalogue: cap-colour hairline visible at rest ---- */
.ls-home-catalogue ul.products li.product::before{
  transform: scaleX(1);
  opacity: .55;
}
.ls-home-catalogue ul.products li.product:hover::before{ opacity: 1; }

/* ---- reveal cascade for fused strips ---- */
.e-con.ls-reveal-cards.ls-will-reveal{ opacity: 1; transform: none; }
.e-con.ls-reveal-cards.ls-will-reveal > .e-con{ opacity: 0; transform: translateY(24px); }
.e-con.ls-reveal-cards.ls-revealed > .e-con{ opacity: 1; transform: none; }
.e-con.ls-reveal-cards > .e-con:nth-child(1){ transition: opacity .6s var(--ls-ease) .05s, transform .6s var(--ls-ease) .05s; }
.e-con.ls-reveal-cards > .e-con:nth-child(2){ transition: opacity .6s var(--ls-ease) .15s, transform .6s var(--ls-ease) .15s; }
.e-con.ls-reveal-cards > .e-con:nth-child(3){ transition: opacity .6s var(--ls-ease) .25s, transform .6s var(--ls-ease) .25s; }
.e-con.ls-reveal-cards > .e-con:nth-child(4){ transition: opacity .6s var(--ls-ease) .35s, transform .6s var(--ls-ease) .35s; }
.e-con.ls-reveal-cards > .e-con:nth-child(5){ transition: opacity .6s var(--ls-ease) .45s, transform .6s var(--ls-ease) .45s; }

/* ---- hero stats on phones: two-up with a rule above the second row ---- */
@media (max-width: 767px){
  .ls-stats > .e-con:nth-child(n+3){
    border-top: 1px solid var(--ls-line-soft);
    padding-top: 14px;
  }
}

/* ---- framed plates ---- */
.ls-plate-img img{ display: block; width: 100%; border-radius: 2px; }

/* ---- chromatogram on phones: contained horizontal scroll ---- */
@media (max-width: 600px){
  .ls-chromo{ padding: 14px 10px 10px; overflow-x: auto; }
  .ls-chromo svg{ min-width: 560px; }
  .ls-chromo__head{ font-size: 10px; }
}

/* ---- shop cards on phones: two-up needs tighter type ---- */
@media (max-width: 600px){
  .woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size: 14px !important;
    padding: 12px 12px 0 !important;
  }
  .woocommerce ul.products li.product .price{ font-size: 16px; padding: 6px 12px 0; }
  .woocommerce ul.products li.product .button{
    margin: 10px 12px 14px;
    padding: 9px 10px;
    font-size: 11px;
    letter-spacing: .06em;
  }
  .woocommerce ul.products li.product .added_to_cart{ margin: 0 12px 12px; }
  .ls-loop-spec{ padding: 5px 12px 0; font-size: 10px; flex-wrap: wrap; row-gap: 2px; }
}

/* ---- five more cap colours so every compound owns its accent ---- */
.ls-cap-tesamorelin { --ls-accent: var(--ls-cap-tesamorelin) !important; }
.ls-cap-pt141       { --ls-accent: var(--ls-cap-pt141) !important; }
.ls-cap-ipamorelin  { --ls-accent: var(--ls-cap-ipamorelin) !important; }
.ls-cap-oxytocin    { --ls-accent: var(--ls-cap-oxytocin) !important; }
.ls-cap-kpv         { --ls-accent: var(--ls-cap-kpv) !important; }

@media (prefers-reduced-motion: reduce){
  .elementor-button, .elementor-button:hover{ transform: none; }
  .elementor-button::after{ display: none; }
  .e-con.ls-panel:hover{ transform: none; }
  .e-con.ls-reveal-cards.ls-will-reveal > .e-con{ opacity: 1; transform: none; }
}

/* The canvas is a direct child of the band, so the child-lifting rule above
   (.ls-hero-band > *) beat .ls-molecules on file order and turned the canvas
   into a 1600px block. Re-assert with higher specificity. */
.ls-hero-band > .ls-molecules{
  position: absolute;
  inset: 0;
  height: 100%;
  z-index: 0;
}

/* ---- header actions: bare thin glyphs, no boxes ---- */
.ls-header-actions .ls-account-icon a.elementor-icon,
.ls-header-actions .elementor-menu-cart__toggle .elementor-button{
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--ls-text);
  transition: color .25s var(--ls-ease), transform .25s var(--ls-ease);
}
.ls-account-icon .elementor-icon-wrapper{ line-height: 1; }
.ls-account-icon a.elementor-icon{
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  font-size: 19px;
}
.ls-account-icon a.elementor-icon svg{ height: 19px; width: auto; fill: currentColor; }
.ls-account-icon a.elementor-icon:hover,
.ls-header-actions .elementor-menu-cart__toggle .elementor-button:hover{
  color: var(--ls-azure);
  transform: translateY(-1px);
}
.ls-header-actions .elementor-menu-cart__toggle .elementor-button svg{
  fill: currentColor;
  height: 20px;
  width: auto;
}
/* the sheen/lift written for page buttons has no place on a bare glyph */
.ls-header-actions .elementor-button{ overflow: visible; }
.ls-header-actions .elementor-button::after{ display: none; }

/* hamburger: same bare treatment, same row */
.elementor-menu-toggle{
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  color: var(--ls-text);
}
.elementor-menu-toggle:hover{ color: var(--ls-azure); }
.elementor-menu-toggle svg{ fill: currentColor; }

/* menu: colour is the only motion */
.elementor-nav-menu a.elementor-item{ transition: color .25s var(--ls-ease); }

/* icon-only cart: the subtotal figure belongs on the cart page */
.ls-header-actions .elementor-menu-cart__toggle .elementor-button-text{ display: none; }

/* mobile header: logo left, then hamburger + account + cart together right */
@media (max-width: 767px){
  .e-con.ls-header-nav{
    flex-grow: 0 !important;
    width: auto !important;
    margin-left: auto !important;
  }
}

/* mobile menu panel: the dropdown escapes its fit-content parent and
   spans the viewport under the header */
@media (max-width: 767px){
  .elementor-location-header nav.elementor-nav-menu--dropdown{
    position: fixed !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: auto !important;
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    background: var(--ls-surface-2);
    border-top: 1px solid var(--ls-line);
    box-shadow: 0 30px 50px rgba(0, 0, 0, .55);
    z-index: 9999;
  }
  .elementor-location-header nav.elementor-nav-menu--dropdown a{
    padding: 15px 22px;
    font-family: "Archivo", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ls-text);
    border-bottom: 1px solid var(--ls-line-soft);
  }
  .elementor-location-header nav.elementor-nav-menu--dropdown a:hover,
  .elementor-location-header nav.elementor-nav-menu--dropdown a.elementor-item-active{
    color: var(--ls-azure);
    background: var(--ls-surface);
  }
}

/* thin-line icon set: kill Elementor's fill rule, the stroke is the icon */
svg.ls-thin, svg.ls-thin *{ fill: none !important; }
.elementor-icon svg.ls-thin{ height: auto; }

/* ---- custom hamburger: two bars folding into an X ---- */
.elementor-menu-toggle{
  position: relative;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
.elementor-menu-toggle svg,
.elementor-menu-toggle i{ display: none; }
.elementor-menu-toggle::before,
.elementor-menu-toggle::after{
  content: "";
  position: absolute;
  left: 5px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform .35s var(--ls-ease), width .35s var(--ls-ease), top .35s var(--ls-ease);
}
.elementor-menu-toggle::before{ width: 22px; top: 12px; }
.elementor-menu-toggle::after{ width: 14px; top: 19px; }
.elementor-menu-toggle:hover::after{ width: 22px; }
.elementor-menu-toggle[aria-expanded="true"]::before{
  top: 15px;
  transform: rotate(45deg);
}
.elementor-menu-toggle[aria-expanded="true"]::after{
  top: 15px;
  width: 22px;
  transform: rotate(-45deg);
}
@media (prefers-reduced-motion: reduce){
  .elementor-menu-toggle::before,
  .elementor-menu-toggle::after{ transition: none; }
}

/* ---- buttons never break to a second line ---- */
.elementor-button,
.elementor-button .elementor-button-text,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.wc-proceed-to-checkout a.checkout-button{
  white-space: nowrap;
}
@media (max-width: 767px){
  .elementor-button{ padding-left: 18px; padding-right: 18px; }
  .elementor-button .elementor-button-text{ font-size: 12px; letter-spacing: .09em; }
  .woocommerce ul.products li.product .button{
    font-size: 10.5px;
    letter-spacing: .04em;
    padding: 9px 6px;
    text-align: center;
  }
  .lsp-lookup__form button{ white-space: nowrap; }
}

/* client infographic product art: show the whole graphic, never a crop */
.woocommerce ul.products li.product a img[src*="lsp-client"]{
  object-fit: contain;
  background: #05070C;
}
