/* ═══════════════════════════════════════════════════════════════
   BELLEZA — Escaparate tipo Falabella
   ═══════════════════════════════════════════════════════════════ */
:root {
  --bz-primary: #d6336c;      /* rosa/magenta belleza */
  --bz-primary-d: #a61e4d;
  --bz-accent: #7048e8;       /* violeta */
  --bz-ink: #1f2937;
  --bz-muted: #6b7280;
  --bz-line: #e9ecef;
  --bz-bg: #f8f9fb;
  --bz-sale: #e03131;
}

#belleza-home { background: var(--bz-bg); color: var(--bz-ink); }
#belleza-home * { box-sizing: border-box; }
#belleza-home .bz-section { max-width: 1240px; margin: 0 auto; padding: 26px 18px 6px; }
#belleza-home .bz-section-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
#belleza-home .bz-h2 { font-size: 22px; font-weight: 800; margin: 0; letter-spacing: -.01em; }
#belleza-home .bz-seeall { color: var(--bz-primary); font-weight: 700; font-size: 14px; text-decoration: none; white-space: nowrap; }
#belleza-home .bz-seeall:hover { color: var(--bz-primary-d); }

/* ── HERO ── */
.bz-hero {
  background: linear-gradient(120deg, #d6336c 0%, #7048e8 100%);
  color: #fff; padding: 56px 18px 64px; text-align: center;
}
.bz-hero-inner { max-width: 820px; margin: 0 auto; }
.bz-hero-kicker { display: inline-block; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; font-size: 12px; opacity: .9; margin-bottom: 10px; }
.bz-hero-title { font-size: clamp(26px, 4vw, 44px); font-weight: 900; line-height: 1.1; margin: 0 0 12px; }
.bz-hero-sub { font-size: clamp(15px, 2vw, 18px); opacity: .95; margin: 0 auto 26px; max-width: 640px; }
.bz-search { display: flex; max-width: 560px; margin: 0 auto; background: #fff; border-radius: 999px; padding: 6px; box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.bz-search input[type="search"] { flex: 1; border: 0; outline: 0; padding: 10px 18px; font-size: 15px; border-radius: 999px; color: var(--bz-ink); background: transparent; }
.bz-search button { border: 0; background: var(--bz-primary); color: #fff; font-weight: 800; padding: 0 26px; border-radius: 999px; cursor: pointer; font-size: 15px; }
.bz-search button:hover { background: var(--bz-primary-d); }

/* ── DEPARTAMENTOS ── */
.bz-depts { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.bz-dept {
  background: #fff; border: 1px solid var(--bz-line); border-radius: 16px; padding: 20px 14px;
  text-decoration: none; color: var(--bz-ink); text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 6px; transition: transform .15s, box-shadow .15s, border-color .15s;
}
.bz-dept:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(214,51,108,.14); border-color: var(--bz-primary); }
.bz-dept-ico { font-size: 34px; line-height: 1; }
.bz-dept-name { font-weight: 800; font-size: 15px; }
.bz-dept-count { font-size: 12px; color: var(--bz-muted); }

/* ── STRIP (carrusel horizontal) ── */
.bz-strip {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 1fr);
  gap: 14px; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.bz-strip::-webkit-scrollbar { height: 8px; }
.bz-strip::-webkit-scrollbar-thumb { background: #d0d3d9; border-radius: 8px; }
@media (min-width: 900px) { .bz-strip { grid-auto-columns: minmax(210px, 1fr); } }

/* ── TARJETA DE PRODUCTO ── */
.bz-card {
  scroll-snap-align: start; background: #fff; border: 1px solid var(--bz-line); border-radius: 14px;
  overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .15s, transform .15s;
}
.bz-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,.10); transform: translateY(-2px); }
.bz-card-img { position: relative; display: flex; align-items: center; justify-content: center; height: 180px; background: #fff; padding: 10px; overflow: hidden; }
.bz-card-img img { max-width: 100%; max-height: 100%; width: auto !important; height: auto !important; object-fit: contain; }
.bz-noimg { display: flex; align-items: center; justify-content: center; height: 100%; color: #c0c4cc; font-size: 13px; }
.bz-badge {
  position: absolute; top: 10px; left: 10px; background: var(--bz-sale); color: #fff; font-weight: 800;
  font-size: 12px; padding: 3px 8px; border-radius: 8px; z-index: 2; box-shadow: 0 3px 8px rgba(224,49,49,.35);
}
.bz-card-body { padding: 10px 12px 14px; display: flex; flex-direction: column; gap: 5px; flex: 1; }
.bz-card-brand { font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--bz-accent); }
.bz-card-name {
  font-size: 13.5px; color: var(--bz-ink); text-decoration: none; line-height: 1.3; font-weight: 500;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 35px;
}
.bz-card-name:hover { color: var(--bz-primary); }
.bz-card-price { margin-top: 2px; font-size: 16px; font-weight: 800; color: var(--bz-ink); }
.bz-card-price del { color: var(--bz-muted); font-weight: 500; font-size: 13px; margin-right: 6px; }
.bz-card-price ins { text-decoration: none; color: var(--bz-sale); }
.bz-card-btn {
  margin-top: auto; text-align: center; background: var(--bz-primary); color: #fff; font-weight: 800;
  font-size: 13.5px; padding: 9px; border-radius: 10px; text-decoration: none; transition: background .15s;
}
.bz-card-btn:hover { background: var(--bz-primary-d); color: #fff; }
/* Agotado */
.bz-badge-out { background: #6b7280 !important; box-shadow: 0 3px 8px rgba(107,114,128,.35) !important; }
.bz-card--out .bz-card-img img { opacity: .5; filter: grayscale(.35); }
.bz-card-btn-out { background: #e5e7eb !important; color: #9ca3af !important; cursor: not-allowed; pointer-events: none; }

/* ── MARCAS ── */
.bz-brands { display: flex; flex-wrap: wrap; gap: 10px; }
.bz-brand {
  background: #fff; border: 1px solid var(--bz-line); border-radius: 999px; padding: 9px 18px;
  font-weight: 700; font-size: 13.5px; color: var(--bz-ink); text-decoration: none; transition: all .15s;
}
.bz-brand:hover { border-color: var(--bz-accent); color: var(--bz-accent); }

/* ── CONFIANZA ── */
.bz-trust {
  max-width: 1240px; margin: 34px auto 10px; padding: 0 18px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px;
}
.bz-trust-item { background: #fff; border: 1px solid var(--bz-line); border-radius: 14px; padding: 16px 18px; display: flex; align-items: center; gap: 12px; }
.bz-trust-item span { font-size: 26px; }
.bz-trust-item strong { display: block; font-size: 14px; }
.bz-trust-item small { color: var(--bz-muted); font-size: 12px; }

@media (max-width: 600px) {
  .bz-hero { padding: 40px 16px 46px; }
  .bz-depts { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════════════════
   CABECERA (chrome propio — reemplaza el header de Divi)
   ═══════════════════════════════════════════════════════════════ */
.bz-body { margin: 0; }
#bz-page { min-height: 55vh; background: var(--bz-bg); }
.bz-header { position: sticky; top: 0; z-index: 1000; background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,.08); }
.bz-header-top {
  max-width: 1240px; margin: 0 auto; padding: 12px 18px;
  display: flex; align-items: center; gap: 16px;
}
.bz-burger { display: none; border: 0; background: transparent; font-size: 24px; cursor: pointer; color: var(--bz-ink); padding: 0 4px; }
.bz-logo {
  font-size: 22px; font-weight: 900; color: var(--bz-primary); text-decoration: none; line-height: 1;
  white-space: nowrap; letter-spacing: -.02em;
}
.bz-logo span { display: block; font-size: 11px; font-weight: 700; color: var(--bz-accent); letter-spacing: .12em; text-transform: uppercase; }
.bz-hsearch { flex: 1; display: flex; max-width: 620px; border: 2px solid var(--bz-line); border-radius: 10px; overflow: hidden; transition: border-color .15s; }
.bz-hsearch:focus-within { border-color: var(--bz-primary); }
.bz-hsearch input { flex: 1; border: 0; outline: 0; padding: 10px 14px; font-size: 14px; color: var(--bz-ink); }
.bz-hsearch button { border: 0; background: var(--bz-primary); color: #fff; padding: 0 18px; cursor: pointer; font-size: 16px; }
.bz-hsearch button:hover { background: var(--bz-primary-d); }
.bz-header-actions { display: flex; gap: 8px; }
.bz-haction { display: flex; flex-direction: column; align-items: center; gap: 2px; text-decoration: none; color: var(--bz-ink); font-size: 11px; position: relative; padding: 4px 8px; border-radius: 8px; }
.bz-haction span { font-size: 20px; line-height: 1; }
.bz-haction em { font-style: normal; font-weight: 600; }
.bz-haction:hover { background: #fce7f0; color: var(--bz-primary); }
.bz-cart-count { position: absolute; top: 0; right: 2px; background: var(--bz-primary); color: #fff; font-size: 10px; font-weight: 800; min-width: 16px; height: 16px; line-height: 16px; text-align: center; border-radius: 999px; padding: 0 3px; }

/* Nav de departamentos */
.bz-nav { background: linear-gradient(90deg, var(--bz-primary) 0%, var(--bz-accent) 100%); }
.bz-nav-inner { max-width: 1240px; margin: 0 auto; padding: 0 12px; }
.bz-nav-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 2px; }
.bz-nav-menu li { margin: 0; }
.bz-nav-menu li a { display: block; color: #fff; text-decoration: none; font-weight: 700; font-size: 14px; padding: 12px 16px; transition: background .12s; }
.bz-nav-menu li a:hover { background: rgba(255,255,255,.18); }

@media (max-width: 860px) {
  .bz-haction em { display: none; }
  .bz-hsearch { order: 3; flex-basis: 100%; max-width: none; }
  .bz-header-top { flex-wrap: wrap; }
  .bz-burger { display: block; }
  .bz-nav { max-height: 0; overflow: hidden; transition: max-height .2s ease; }
  .bz-nav-open .bz-nav { max-height: 600px; }
  .bz-nav-menu { flex-direction: column; }
  .bz-nav-menu li a { padding: 12px 18px; border-top: 1px solid rgba(255,255,255,.15); }
}

/* ═══════════════════════════════════════════════════════════════
   PIE (chrome propio)
   ═══════════════════════════════════════════════════════════════ */
.bz-footer { background: #1f2937; color: #cbd5e1; margin-top: 40px; }
.bz-footer-cols { max-width: 1240px; margin: 0 auto; padding: 40px 18px 24px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.bz-fcol h4 { color: #fff; font-size: 14px; font-weight: 800; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .04em; }
.bz-fcol a { display: block; color: #cbd5e1; text-decoration: none; font-size: 13.5px; padding: 4px 0; }
.bz-fcol a:hover { color: #fff; }
.bz-fcol span { display: block; font-size: 13px; padding: 4px 0; color: #9ca3af; }
.bz-fbrand .bz-logo-foot { color: #fff; }
.bz-fbrand .bz-logo-foot span { color: #f0a6c4; }
.bz-fbrand p { font-size: 13.5px; line-height: 1.6; margin: 12px 0 0; color: #9ca3af; }
.bz-footer-bottom { border-top: 1px solid #374151; max-width: 1240px; margin: 0 auto; padding: 16px 18px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: 12.5px; color: #9ca3af; }
@media (max-width: 780px) { .bz-footer-cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .bz-footer-cols { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   PÁGINAS DE TIENDA / DEPARTAMENTO (loop Woo → tarjetas Falabella)
   ═══════════════════════════════════════════════════════════════ */
.bz-shop { max-width: 1240px; margin: 0 auto; padding: 20px 18px 40px; }
.bz-page-title { font-size: 28px; font-weight: 900; color: var(--bz-ink); margin: 6px 0 18px; }
/* Botones Woo (carrito, checkout, cuenta) con la marca */
.woocommerce .button, .woocommerce a.button, .woocommerce button.button, .woocommerce input.button,
.woocommerce #respond input#submit, .woocommerce .checkout-button, .woocommerce #place_order {
  background: var(--bz-primary) !important; color: #fff !important; border: 0 !important;
  border-radius: 10px !important; font-weight: 800 !important; padding: 11px 22px !important; text-shadow: none !important;
}
.woocommerce .button:hover, .woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce #place_order:hover { background: var(--bz-primary-d) !important; }
.woocommerce table.shop_table { border-radius: 12px; overflow: hidden; border: 1px solid var(--bz-line); }
.woocommerce .cart_totals h2, .woocommerce-checkout h3, .woocommerce-account h2, .woocommerce-account h3 { color: var(--bz-ink); font-weight: 800; }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea,
.woocommerce .select2-container .select2-selection { border: 1px solid var(--bz-line) !important; border-radius: 8px !important; padding: 8px 10px !important; }
.woocommerce-info, .woocommerce-message, .woocommerce-error { border-radius: 8px; }
.woocommerce .cart-empty, .woocommerce-info { font-size: 15px; }

/* Carrito vacío (bloque WC) + "New in store" — rejilla de bloque presentable */
.wp-block-woocommerce-empty-cart-block { max-width: 1000px; margin: 0 auto; text-align: center; }
.wp-block-woocommerce-empty-cart-block .wc-block-grid__products,
.wc-block-grid__products, ul.wc-block-grid__products {
  display: grid !important; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important;
  gap: 14px !important; list-style: none !important; padding: 0 !important; margin: 20px 0 !important;
}
.wc-block-grid__product { border: 1px solid var(--bz-line); border-radius: 12px; padding: 12px; background: #fff; text-align: center; margin: 0 !important; }
.wc-block-grid__product .wc-block-grid__product-image img, .wc-block-grid__product img { width: 100% !important; height: auto !important; aspect-ratio: 1/1; object-fit: contain; }
.wc-block-grid__product-title, .wc-block-grid__product-onsale + .wc-block-grid__product-title { font-size: 13px !important; font-weight: 500 !important; display: block; margin: 8px 0 4px; color: var(--bz-ink); }
.wc-block-grid__product-price { font-weight: 800 !important; color: var(--bz-ink) !important; }
.wc-block-grid__product .wp-block-button__link, .wc-block-grid__product .add_to_cart_button {
  background: var(--bz-primary) !important; color: #fff !important; border-radius: 8px !important; font-weight: 800 !important; margin-top: 8px !important;
}
.wc-block-grid__product-onsale { background: var(--bz-sale) !important; color: #fff !important; border-radius: 6px !important; }

/* ═══════════════════════════════════════════════════════════════
   CARRITO DESLIZANTE (drawer a la derecha)
   ═══════════════════════════════════════════════════════════════ */
.bz-cart-backdrop {
  position: fixed; inset: 0; background: rgba(15,23,42,.45); z-index: 1400;
  opacity: 0; visibility: hidden; transition: opacity .25s;
}
.bz-cart-open .bz-cart-backdrop { opacity: 1; visibility: visible; }
.bz-cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: 400px; max-width: 92vw; z-index: 1401;
  background: #fff; box-shadow: -10px 0 40px rgba(0,0,0,.18);
  transform: translateX(100%); transition: transform .28s cubic-bezier(.4,0,.2,1);
  display: flex; flex-direction: column;
}
.bz-cart-open .bz-cart-drawer { transform: translateX(0); }
.bz-cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 18px; border-bottom: 1px solid var(--bz-line); background: linear-gradient(90deg, var(--bz-primary), var(--bz-accent)); color: #fff;
}
.bz-cart-title { font-weight: 800; font-size: 16px; }
.bz-cart-close { background: transparent; border: 0; color: #fff; font-size: 20px; cursor: pointer; line-height: 1; padding: 4px 8px; border-radius: 8px; }
.bz-cart-close:hover { background: rgba(255,255,255,.2); }
.bz-cart-content { flex: 1; display: flex; flex-direction: column; min-height: 0; }

/* vacío */
.bz-cart-empty { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--bz-muted); padding: 30px; text-align: center; }
.bz-cart-empty-ico { font-size: 46px; opacity: .5; }

/* ítems */
.bz-cart-items { list-style: none; margin: 0; padding: 8px 14px; overflow-y: auto; flex: 1; }
.bz-cart-item { display: grid; grid-template-columns: 56px 1fr auto auto; gap: 10px; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--bz-line); }
.bz-ci-img img { width: 56px; height: 56px; object-fit: contain; border: 1px solid var(--bz-line); border-radius: 10px; background: #fff; }
.bz-ci-info { min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.bz-ci-name { font-size: 13px; font-weight: 600; color: var(--bz-ink); text-decoration: none; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.bz-ci-name:hover { color: var(--bz-primary); }
.bz-ci-qty { font-size: 11.5px; color: var(--bz-muted); }
.bz-ci-line { font-weight: 800; font-size: 14px; white-space: nowrap; }
.bz-ci-remove { color: #c0c4cc; text-decoration: none; font-size: 14px; padding: 4px 6px; border-radius: 6px; }
.bz-ci-remove:hover { color: var(--bz-sale); background: #fee; }

/* pie: total + botones */
.bz-cart-foot { border-top: 2px solid var(--bz-line); padding: 16px 18px; display: flex; flex-direction: column; gap: 10px; background: var(--bz-bg); }
.bz-cart-subtotal { display: flex; align-items: baseline; justify-content: space-between; font-size: 15px; }
.bz-cart-subtotal strong { font-size: 22px; font-weight: 900; color: var(--bz-ink); }
.bz-cart-btn { display: block; text-align: center; text-decoration: none; font-weight: 800; padding: 12px; border-radius: 12px; font-size: 14.5px; }
.bz-cart-checkout { background: var(--bz-primary); color: #fff; }
.bz-cart-checkout:hover { background: var(--bz-primary-d); color: #fff; }
.bz-cart-view { background: #fff; color: var(--bz-ink); border: 1.5px solid var(--bz-line); }
.bz-cart-view:hover { border-color: var(--bz-primary); color: var(--bz-primary); }
.bz-cart-keep { background: var(--bz-primary); color: #fff; padding: 10px 22px; }

/* botón "Agregar" mientras agrega */
.bz-card-btn.bz-adding { opacity: .7; pointer-events: none; }

@media (max-width: 460px) { .bz-cart-drawer { width: 100vw; } }

/* Ocultar el carrito del plugin maxxsuite-connect — usamos el drawer del tema */
.maxx-cart-toggle, .maxx-cart-drawer, .maxx-cart-overlay { display: none !important; }
.bz-shop::after { content: ""; display: block; clear: both; }
/* ocultar cualquier sidebar/widget que Divi intente inyectar en Woo */
.bz-shop #sidebar, .bz-shop .et_pb_widget_area, .bz-shop aside.et_right_sidebar,
.bz-shop .widget_recent_comments, .bz-shop .widget_archive, .bz-shop .widget_categories { display: none !important; }
.bz-shop .woocommerce-result-count { color: var(--bz-muted); font-size: 13px; }
.bz-shop .woocommerce-ordering select { padding: 6px 10px; border: 1px solid var(--bz-line); border-radius: 8px; }
.bz-shop h1.woocommerce-products-header__title, .bz-shop h1.entry-title, .bz-shop h1.product_title { font-size: 26px; font-weight: 900; color: var(--bz-ink); margin: 0 0 14px; }
.woocommerce ul.products, .woocommerce-page ul.products {
  display: grid !important; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)) !important;
  gap: 16px !important; margin: 24px auto !important; padding: 0 18px !important;
  list-style: none !important; max-width: 1240px !important;
}
.woocommerce ul.products::before, .woocommerce ul.products::after { content: none !important; display: none !important; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; padding: 0 !important; }
.woocommerce ul.products li.product::before { content: none !important; }
.woocommerce ul.products li.product .bz-card { height: 100%; }
/* Encabezado de la tienda */
.woocommerce .woocommerce-products-header,
.woocommerce-page .woocommerce-products-header { max-width: 1240px; margin: 24px auto 0; padding: 0 18px; }
.woocommerce-products-header__title, .woocommerce .page-title { font-size: 26px; font-weight: 900; color: var(--bz-ink); }
.woocommerce .woocommerce-result-count, .woocommerce .woocommerce-ordering { max-width: 1240px; margin-left: auto; margin-right: auto; padding: 0 18px; }
.woocommerce-breadcrumb { max-width: 1240px; margin: 14px auto 0 !important; padding: 0 18px; color: var(--bz-muted); font-size: 13px; }

/* ── Página de producto individual — 2 columnas controladas ── */
.single-product div.product {
  max-width: 1120px; margin: 24px auto; padding: 0 18px;
  display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start;
}
/* galería: tamaño razonable (no gigante) */
.single-product div.product .woocommerce-product-gallery {
  width: 100% !important; max-width: 400px; float: none !important; margin: 0 !important;
}
.single-product div.product .woocommerce-product-gallery img {
  max-height: 460px !important; width: auto !important; max-width: 100% !important;
  margin: 0 auto !important; object-fit: contain; display: block;
}
/* resumen (título/precio/botón): ocupa el resto */
.single-product div.product .summary {
  width: auto !important; flex: 1 1 340px; min-width: 300px; float: none !important; margin: 0 !important;
}
/* pestañas, relacionados y upsells: ancho completo debajo */
.single-product div.product .woocommerce-tabs,
.single-product div.product .related,
.single-product div.product .upsells { flex-basis: 100%; width: 100%; }
@media (max-width: 720px) { .single-product div.product { gap: 20px; } .single-product div.product .woocommerce-product-gallery { max-width: none; } }
.single-product .product .price { color: var(--bz-ink); font-weight: 800; font-size: 24px; }
.single-product .product .price del { color: var(--bz-muted); font-weight: 500; font-size: 17px; }
.single-product .product .price ins { text-decoration: none; color: var(--bz-sale); }
.single-product .product .summary .product_title { font-size: 26px; font-weight: 900; }
.single-product .product form.cart .button,
.woocommerce .single_add_to_cart_button {
  background: var(--bz-primary) !important; color: #fff !important; border: 0 !important;
  border-radius: 10px !important; font-weight: 800 !important; padding: 12px 26px !important;
}
.single-product .product form.cart .button:hover { background: var(--bz-primary-d) !important; }
.woocommerce span.onsale {
  background: var(--bz-sale) !important; color: #fff !important; border-radius: 8px !important;
  font-weight: 800 !important; min-height: auto !important; min-width: auto !important;
  padding: 4px 10px !important; line-height: 1.2 !important;
}
.woocommerce .woocommerce-message, .woocommerce .woocommerce-info { border-top-color: var(--bz-primary) !important; }
.woocommerce .woocommerce-message::before, .woocommerce .woocommerce-info::before { color: var(--bz-primary) !important; }
