/*
Theme Name: Bio-Well America
Theme URI: https://bio-wellamerica.com/
Description: Tema hijo de Hello Elementor para Bio-Well America. Navbar y footer globales, estilos WooCommerce y flujo de solicitud de compra.
Author: Bio-Well America
Template: hello-elementor
Version: 1.3.0
Text Domain: bio-well-america
Requires at least: 6.0
Requires PHP: 7.4
*/

:root {
  --bw-orange: #f4813f;
  --bw-orange-deep: #ea6833;
  --bw-coral: #f1556a;
  --bw-yellow: #fba70b;
  --bw-ink: #1d1e24;
  --bw-muted: #6d7078;
  --bw-line: #ececf0;
  --bw-soft: #fff7f2;
  --bw-footer-deep: #ce4660;
}

html { scroll-behavior: smooth; }
body { font-family: Poppins, Arial, sans-serif; color: var(--bw-ink); }
body.bw-shell { margin: 0; }

.bw-skip {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.bw-skip:focus {
  z-index: 99999;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 12px 16px;
  color: #111;
  border-radius: 8px;
  box-shadow: 0 8px 30px #1112;
}

.bw-wrap {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

/* ───────────────────────────────────────────────
   Global navigation
   ─────────────────────────────────────────────── */
.bw-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(255, 255, 255, .95);
  border-bottom: 1px solid rgba(29, 30, 36, .07);
  box-shadow: 0 7px 26px rgba(31, 35, 48, .055);
  backdrop-filter: saturate(150%) blur(16px);
  -webkit-backdrop-filter: saturate(150%) blur(16px);
}
.admin-bar .bw-header { top: 32px; }
.bw-header__accent {
  height: 3px;
  background: linear-gradient(90deg, var(--bw-yellow), var(--bw-orange) 46%, var(--bw-coral));
}
.bw-header__row {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.bw-brand {
  min-width: 250px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--bw-ink);
}
.bw-brand__mark {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 22px rgba(30, 34, 49, .08);
  overflow: hidden;
}
.bw-brand__mark img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.bw-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  white-space: nowrap;
}
.bw-brand__text > span {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.35px;
}
.bw-brand__text strong { color: var(--bw-orange); }
.bw-brand__text small {
  margin-top: 6px;
  color: #8b8d94;
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.bw-nav__desktop {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: .035em;
}
.bw-nav__link,
.bw-nav__drop > summary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 11px;
  border-radius: 11px;
  color: #3d3f47;
  text-decoration: none;
  cursor: pointer;
  transition: color .18s ease, background-color .18s ease;
}
.bw-nav__link::after,
.bw-nav__drop > summary::after {
  content: '';
  position: absolute;
  left: 11px;
  right: 11px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--bw-orange), var(--bw-coral));
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .18s ease, transform .18s ease;
}
.bw-nav__link:hover,
.bw-nav__drop > summary:hover,
.bw-nav__link.is-active,
.bw-nav__drop.is-active > summary {
  color: var(--bw-orange-deep);
  background: var(--bw-soft);
}
.bw-nav__link:hover::after,
.bw-nav__drop > summary:hover::after,
.bw-nav__link.is-active::after,
.bw-nav__drop.is-active > summary::after {
  opacity: 1;
  transform: scaleX(1);
}
.bw-nav details { position: relative; }
.bw-nav summary { list-style: none; }
.bw-nav summary::-webkit-details-marker { display: none; }
.bw-nav__chevron {
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .18s ease;
}
.bw-nav__drop[open] .bw-nav__chevron { transform: rotate(225deg) translate(-1px, -1px); }

.bw-nav__submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: 0;
  z-index: 950;
  min-width: 296px;
  padding-top: 14px;
  display: none;
}
.bw-nav__submenu--right { left: auto; right: 0; }
.bw-nav__drop--wide .bw-nav__submenu { left: 50%; transform: translateX(-52%); }
.bw-nav__drop[open] > .bw-nav__submenu { display: block; }
.bw-nav__submenu-panel {
  padding: 10px;
  border: 1px solid rgba(29, 30, 36, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 22px 55px rgba(28, 32, 44, .16);
}
.bw-nav__submenu-panel--wide { width: 560px; padding: 13px; }
.bw-nav__submenu-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 6px 8px 12px;
  margin-bottom: 5px;
  border-bottom: 1px solid #f0f0f2;
}
.bw-nav__submenu-head span { font-size: 13px; font-weight: 700; color: var(--bw-ink); }
.bw-nav__submenu-head small { font-size: 10px; color: #9a9ca3; font-weight: 500; }
.bw-nav__submenu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
}
.bw-nav__submenu-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #35373e;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.bw-nav__submenu-item > span { font-size: 12px; font-weight: 650; }
.bw-nav__submenu-item small { font-size: 10px; color: #8a8d95; font-weight: 450; }
.bw-nav__submenu-item:hover,
.bw-nav__submenu-item.is-current {
  color: var(--bw-orange-deep);
  background: #fff3ed;
  transform: translateY(-1px);
}
.bw-nav__submenu-item--external { margin-top: 5px; border-top: 1px solid #f1f1f3; border-radius: 0 0 10px 10px; }

.bw-nav__shop {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 17px;
  border-radius: 13px;
  color: #fff !important;
  background: linear-gradient(115deg, var(--bw-orange), var(--bw-coral));
  box-shadow: 0 8px 24px rgba(241, 85, 106, .19);
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.bw-nav__shop svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bw-nav__shop:hover,
.bw-nav__shop.is-active { transform: translateY(-1px); box-shadow: 0 11px 30px rgba(241, 85, 106, .25); filter: saturate(1.06); }
.bw-nav__cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #fff7f2;
  color: var(--bw-orange-deep);
  text-decoration: none;
}
.bw-nav__cart svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bw-nav__cart > span {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 19px;
  height: 19px;
  padding: 0 5px;
  display: grid;
  place-items: center;
  border: 2px solid #fff;
  border-radius: 20px;
  background: var(--bw-coral);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.bw-nav__mobile { display: none; }
.bw-nav__mobile > summary {
  min-width: 92px;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 13px;
  background: linear-gradient(115deg, var(--bw-orange), var(--bw-coral));
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
}
.bw-nav__hamburger { width: 16px; display: grid; gap: 3px; }
.bw-nav__hamburger i { display: block; height: 1.5px; border-radius: 3px; background: currentColor; }
.bw-nav__mobile-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(88vw, 360px);
  max-height: calc(100vh - 110px);
  overflow: auto;
  padding: 14px;
  border: 1px solid rgba(29, 30, 36, .08);
  border-radius: 17px;
  background: rgba(255, 255, 255, .985);
  box-shadow: 0 22px 55px rgba(27, 30, 41, .22);
}
.bw-nav__mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 15px;
  padding: 8px 9px 13px;
  margin-bottom: 5px;
  border-bottom: 1px solid #efeff1;
}
.bw-nav__mobile-top span { font-size: 13px; font-weight: 700; }
.bw-nav__mobile-top small { color: #999ba1; font-size: 10px; }
.bw-nav__mobile-panel > a,
.bw-nav__mobile-section > summary,
.bw-nav__mobile-section > div > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 43px;
  padding: 8px 10px;
  border-radius: 9px;
  color: #34363d;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
}
.bw-nav__mobile-panel > a:hover,
.bw-nav__mobile-section > div > a:hover,
.bw-nav__mobile-section > div > a.is-current { background: #fff4ee; color: var(--bw-orange-deep); }
.bw-nav__mobile-section { border-top: 1px solid #f0f0f2; }
.bw-nav__mobile-section > summary { cursor: pointer; }
.bw-nav__mobile-section > summary span { color: var(--bw-orange); font-size: 18px; font-weight: 400; transition: transform .18s ease; }
.bw-nav__mobile-section[open] > summary span { transform: rotate(45deg); }
.bw-nav__mobile-section > div { padding: 0 0 8px 9px; }
.bw-nav__mobile-section > div > a { min-height: 38px; font-size: 11.5px; color: #666971; }
.bw-nav__mobile-actions { display: grid; grid-template-columns: 1fr auto; gap: 9px; margin-top: 9px; padding-top: 11px; border-top: 1px solid #f0f0f2; }
.bw-nav__mobile-actions .bw-nav__shop { min-height: 44px; }
.bw-nav__mobile-cart {
  min-width: 116px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 13px;
  background: #fff4ee;
  color: var(--bw-orange-deep);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
}
.bw-nav__mobile-cart strong { min-width: 21px; height: 21px; display: grid; place-items: center; border-radius: 20px; background: var(--bw-coral); color: #fff; }

.bw-main { min-height: 55vh; }
.bw-main .entry-title { font-family: Poppins, Arial, sans-serif; color: #292929; }

/* ───────────────────────────────────────────────
   Footer
   ─────────────────────────────────────────────── */
.bw-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 10%, rgba(255,255,255,.13), transparent 28%),
    radial-gradient(circle at 91% 92%, rgba(255,193,92,.18), transparent 29%),
    linear-gradient(118deg, #ef773c 0%, #f1556a 58%, #ce4660 100%);
}
.bw-footer::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: rgba(255,255,255,.35);
}
.bw-footer__orb { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(2px); opacity: .16; }
.bw-footer__orb--one { width: 300px; height: 300px; right: -110px; top: 120px; background: #fff; }
.bw-footer__orb--two { width: 200px; height: 200px; left: -85px; bottom: 30px; background: var(--bw-yellow); }

.bw-footer__cta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) auto;
  align-items: center;
  gap: 34px;
  margin-top: 0;
  padding: 44px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.26);
}
.bw-footer__eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: #ffe3d7;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
}
.bw-footer__cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.12;
  letter-spacing: -.025em;
}
.bw-footer__cta p {
  max-width: 680px;
  margin: 10px 0 0;
  color: rgba(255,255,255,.82);
  font-size: 13.5px;
  line-height: 1.7;
}
.bw-footer__cta-actions { display: flex; align-items: center; gap: 10px; }
.bw-footer__button {
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 100px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}
.bw-footer__button:hover { transform: translateY(-2px); }
.bw-footer__button--primary { border-color: #fff; background: #fff; color: var(--bw-coral); }
.bw-footer__button--ghost:hover { background: rgba(255,255,255,.11); color: #fff; }

.bw-footer__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(250px, 1.35fr) .72fr .8fr 1.05fr;
  gap: 42px;
  padding: 50px 0 46px;
}
.bw-footer__brand {
  display: inline-flex;
  gap: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
}
.bw-footer__brand strong { color: #ffd9ca; }
.bw-footer__tagline {
  margin: 11px 0 0;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}
.bw-footer__copy {
  max-width: 360px;
  margin: 14px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 12.5px;
  line-height: 1.75;
}
.bw-footer__english {
  display: inline-block;
  margin-top: 17px;
  color: #fff;
  text-decoration: none;
  font-size: 11.5px;
  font-weight: 650;
}
.bw-footer__english:hover { text-decoration: underline; }
.bw-footer__column h3 {
  margin: 2px 0 17px;
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.bw-footer__column ul { padding: 0; margin: 0; list-style: none; }
.bw-footer__column li { margin: 0 0 10px; }
.bw-footer__column a {
  color: rgba(255,255,255,.81);
  text-decoration: none;
  font-size: 12.5px;
  transition: color .18s ease, transform .18s ease;
}
.bw-footer__column li a:hover { color: #fff; }
.bw-footer__contact { display: flex; flex-direction: column; gap: 10px; }
.bw-footer__contact-link {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.19);
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  color: #fff !important;
}
.bw-footer__contact-link:hover { background: rgba(255,255,255,.12); }
.bw-footer__contact-link svg {
  width: 19px;
  height: 19px;
  justify-self: center;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.bw-footer__contact-link span { min-width: 0; overflow-wrap: anywhere; font-size: 11.5px; font-weight: 600; }
.bw-footer__contact-link small { display: block; margin-bottom: 1px; color: rgba(255,255,255,.6); font-size: 8.5px; font-weight: 500; text-transform: uppercase; letter-spacing: .08em; }
.bw-footer__region { color: rgba(255,255,255,.65); font-size: 10.5px; padding-left: 4px; }
.bw-footer__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 18px 0 21px;
  border-top: 1px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.7);
  font-size: 10.5px;
}
.bw-footer__bottom > div { display: flex; align-items: center; gap: 9px; }
.bw-footer__bottom a { color: rgba(255,255,255,.82); text-decoration: none; font-size: 10.5px; }
.bw-footer__bottom a:hover { color: #fff; }

/* Evita duplicar el header/footer que se construyeron inicialmente dentro de Home. */
.home .elementor-element-a1000001,
.home .elementor-element-a8000001 { display: none !important; }

/* Contact Form 7 */
.bw-contact-form { font-family: Poppins, Arial, sans-serif; }
.bw-contact-form label { display: block; color: #454545; font-size: 13px; font-weight: 600; margin: 0 0 19px; }
.bw-contact-form input[type=text],
.bw-contact-form input[type=email],
.bw-contact-form input[type=tel],
.bw-contact-form textarea {
  width: 100%;
  margin: 9px 0 0;
  padding: 16px 17px;
  border: 1px solid #e9e9e9;
  border-radius: 7px;
  background: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.bw-contact-form input:focus,
.bw-contact-form textarea:focus { border-color: var(--bw-orange); box-shadow: 0 0 0 3px #f4813f22; }
.bw-contact-form textarea { min-height: 165px; resize: vertical; }
.bw-contact-form .bw-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.bw-contact-form .bw-consent { font-size: 12px; color: #777; line-height: 1.7; }
.bw-contact-form input[type=submit] {
  border: 0;
  border-radius: 28px;
  padding: 14px 27px;
  background: linear-gradient(100deg, var(--bw-orange), var(--bw-coral));
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  letter-spacing: .5px;
  cursor: pointer;
}

/* WooCommerce */
body.woocommerce,
body.woocommerce-page { font-family: Poppins, Arial, sans-serif; }

body.woocommerce .site-main {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

body.woocommerce .woocommerce-breadcrumb {
  color: #8b8b8b;
  font-size: 12px;
  margin-bottom: 24px;
}

body.woocommerce div.product { padding: 56px 0 76px; }
body.woocommerce div.product .product_title { font-weight: 700; color: #282828; line-height: 1.18; }
body.woocommerce div.product p.price,
body.woocommerce div.product span.price { color: var(--bw-orange-deep); font-weight: 700; }
body.woocommerce div.product .woocommerce-product-details__short-description { color: #666; line-height: 1.75; }

body.woocommerce .quantity .qty,
body.woocommerce form .form-row input.input-text,
body.woocommerce form .form-row textarea,
body.woocommerce form .form-row select {
  border: 1px solid #e8e8eb;
  border-radius: 10px;
  padding: 13px 14px;
  background: #fff;
}

body.woocommerce a.button,
body.woocommerce button.button,
body.woocommerce input.button,
body.woocommerce #respond input#submit,
body.woocommerce #payment #place_order {
  border: 0;
  border-radius: 30px;
  padding: 13px 22px;
  background: linear-gradient(110deg, var(--bw-orange), var(--bw-coral));
  color: #fff;
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
}

body.woocommerce a.button:hover,
body.woocommerce button.button:hover,
body.woocommerce input.button:hover,
body.woocommerce #payment #place_order:hover {
  background: linear-gradient(110deg, #e97236, #e44d62);
  color: #fff;
}

body.woocommerce .woocommerce-message,
body.woocommerce .woocommerce-info { border-top-color: var(--bw-orange); background: #fff8f4; }
body.woocommerce .woocommerce-message::before,
body.woocommerce .woocommerce-info::before { color: var(--bw-orange); }
body.woocommerce table.shop_table { border-color: #eee; border-radius: 12px; overflow: hidden; }
body.woocommerce-checkout #payment { background: #fff7f2; border-radius: 14px; }

/* Product archive */
body.post-type-archive-product {
  background:
    radial-gradient(circle at 8% 13%, rgba(251,167,11,.08), transparent 24rem),
    radial-gradient(circle at 92% 18%, rgba(241,85,106,.07), transparent 27rem),
    #fbfbfc;
}

body.post-type-archive-product .site-main {
  padding: 48px 0 92px;
}

body.post-type-archive-product .woocommerce-breadcrumb { display: none; }

body.post-type-archive-product .woocommerce-products-header {
  position: relative;
  overflow: hidden;
  margin: 0 0 26px;
  padding: 40px 44px 38px;
  border: 1px solid rgba(29,30,36,.07);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 22%, rgba(241,85,106,.12), transparent 18rem),
    radial-gradient(circle at 72% 90%, rgba(251,167,11,.13), transparent 16rem),
    #fff;
  box-shadow: 0 22px 65px rgba(31,35,48,.07);
}

body.post-type-archive-product .woocommerce-products-header::after {
  content: '';
  position: absolute;
  right: -42px;
  top: -56px;
  width: 190px;
  height: 190px;
  border: 34px solid rgba(244,129,63,.08);
  border-radius: 50%;
  pointer-events: none;
}

body.post-type-archive-product .woocommerce-products-header__title {
  position: relative;
  z-index: 1;
  margin: 0;
  max-width: 720px;
  color: var(--bw-ink);
  font-size: clamp(42px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.045em;
  font-weight: 800;
}

.bw-shop-intro {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-top: 20px;
}

.bw-shop-intro__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 12px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--bw-soft);
  color: var(--bw-orange-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.bw-shop-intro p {
  margin: 0;
  max-width: 700px;
  color: #666973;
  font-size: 14px;
  line-height: 1.75;
}

.bw-shop-intro__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.bw-shop-intro__meta span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #eeeef1;
  border-radius: 999px;
  background: #fff;
  color: #555862;
  font-size: 11px;
  font-weight: 600;
}

.bw-shop-intro__meta span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--bw-orange), var(--bw-coral));
}

.bw-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid #ececf0;
  border-radius: 16px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 10px 32px rgba(31,35,48,.04);
}

.bw-shop-count {
  margin: 0;
  color: #7b7d85;
  font-size: 12px;
}

.bw-shop-count strong {
  color: var(--bw-ink);
  font-size: 13px;
}

body.post-type-archive-product .woocommerce-ordering {
  float: none;
  margin: 0;
}

body.post-type-archive-product .woocommerce-ordering select {
  min-width: 220px;
  height: 42px;
  padding: 0 40px 0 14px;
  border: 1px solid #e6e6ea;
  border-radius: 11px;
  background-color: #fff;
  color: #383a42;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
}

body.post-type-archive-product ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  clear: both;
  margin: 0 !important;
}

body.post-type-archive-product ul.products::before,
body.post-type-archive-product ul.products::after { display: none !important; }

body.post-type-archive-product ul.products li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 0 18px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid #ececf0;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 10px 34px rgba(31,35,48,.045);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

body.post-type-archive-product ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: rgba(244,129,63,.23);
  box-shadow: 0 20px 48px rgba(31,35,48,.10);
}

body.post-type-archive-product ul.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  text-decoration: none;
}

body.post-type-archive-product ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0 !important;
  padding: 18px;
  object-fit: contain;
  background: linear-gradient(145deg, #fafafb, #f4f4f6);
  transition: transform .25s ease;
}

body.post-type-archive-product ul.products li.product:hover a img { transform: scale(1.025); }

body.post-type-archive-product ul.products li.product .woocommerce-loop-product__title {
  margin: 18px 18px 6px;
  padding: 0;
  color: #292b32;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.42;
}

body.post-type-archive-product ul.products li.product .price {
  margin: auto 18px 17px;
  color: var(--bw-orange-deep);
  font-size: 14px;
  font-weight: 800;
}

body.post-type-archive-product ul.products li.product .button {
  width: calc(100% - 36px);
  margin: 0 18px !important;
  padding: 12px 14px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(110deg, var(--bw-orange), var(--bw-coral)) !important;
  box-shadow: 0 8px 20px rgba(241,85,106,.14);
  color: #fff !important;
  text-align: center;
  font-size: 12px;
  line-height: 1.3;
  font-weight: 750;
}

body.post-type-archive-product ul.products li.product .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 11px 25px rgba(241,85,106,.20);
}

body.post-type-archive-product ul.products li.product .added_to_cart {
  margin: 9px 18px 0;
  color: var(--bw-orange-deep);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 1050px) {
  body.post-type-archive-product ul.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 780px) {
  body.woocommerce .site-main { width: min(100% - 34px, 1200px); }
  body.post-type-archive-product .site-main { padding-top: 30px; }
  body.post-type-archive-product .woocommerce-products-header { padding: 32px 28px; border-radius: 22px; }
  body.post-type-archive-product ul.products { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .bw-shop-toolbar { align-items: stretch; flex-direction: column; }
  body.post-type-archive-product .woocommerce-ordering select { width: 100%; }
}

@media (max-width: 520px) {
  body.post-type-archive-product .woocommerce-products-header { padding: 28px 22px; }
  body.post-type-archive-product .woocommerce-products-header__title { font-size: 40px; }
  .bw-shop-intro__meta { gap: 6px; }
  .bw-shop-intro__meta span { min-height: 31px; padding-inline: 10px; font-size: 10px; }
  body.post-type-archive-product ul.products { grid-template-columns: 1fr; }
  body.post-type-archive-product ul.products li.product a img { aspect-ratio: 1.18 / 1; }
}

@media (max-width: 1120px) {
  .bw-wrap { width: min(1160px, calc(100% - 38px)); }
  .bw-brand { min-width: 205px; }
  .bw-brand__text > span { font-size: 16px; }
  .bw-brand__text small { display: none; }
  .bw-nav__desktop { gap: 2px; font-size: 10.5px; }
  .bw-nav__link,
  .bw-nav__drop > summary { padding-inline: 8px; }
}

@media (max-width: 920px) {
  .bw-nav__desktop { display: none; }
  .bw-nav__mobile { display: block; position: relative; }
  .bw-header__row { min-height: 74px; }
  .bw-brand { min-width: 0; }
  .bw-footer__cta { grid-template-columns: 1fr; gap: 20px; }
  .bw-footer__grid { grid-template-columns: 1.25fr 1fr 1fr; }
  .bw-footer__contact { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
  .bw-footer__contact h3,
  .bw-footer__region { grid-column: 1 / -1; }
}

@media (max-width: 782px) {
  .admin-bar .bw-header { top: 46px; }
}

@media (max-width: 680px) {
  .bw-wrap { width: min(100% - 32px, 1200px); }
  .bw-header__row { gap: 14px; }
  .bw-brand__mark { width: 40px; height: 40px; flex-basis: 40px; border-radius: 11px; }
  .bw-brand__mark img { width: 39px; height: 39px; }
  .bw-brand__text > span { font-size: 14px; }
  .bw-nav__mobile > summary { min-width: 85px; }
  .bw-footer__cta { padding: 38px 0 34px; }
  .bw-footer__cta-actions { flex-wrap: wrap; }
  .bw-footer__grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 24px; padding: 42px 0 38px; }
  .bw-footer__brand-block { grid-column: 1 / -1; }
  .bw-footer__contact { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .bw-footer__contact h3,
  .bw-footer__region { grid-column: 1; }
  .bw-footer__bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .bw-contact-form .bw-form-grid { grid-template-columns: 1fr; gap: 0; }
}

@media (max-width: 420px) {
  .bw-brand__text > span { font-size: 12.5px; }
  .bw-nav__mobile > summary { min-width: 76px; padding-inline: 12px; }
  .bw-nav__mobile-panel { right: -2px; width: min(92vw, 350px); }
  .bw-footer__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .bw-nav *,
  .bw-footer * { transition: none !important; }
}
