/* =========================================================
   BUSCA TU Estilo — static site
   Brand palette: ivory background, dark wine primary, moderate pink accent
   ========================================================= */

:root {
  --bg: #fffaf8;
  --text: #241b1d;
  --text-muted: #67575b;
  --text-muted-2: #8b777c;
  --border: #eadfde;
  --border-strong: #e7dada;
  --accent: #a13e60;
  --accent-hover: #9e3e60;
  --primary: #2b1c21;
  --primary-hover: #9e3e60;
  --card-bg: #f7f1ef;
  --card-bg-alt: #f3e9e6;
  --promo: #c95d7c;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
button { font-family: inherit; }
h1, h2, h3, h4 { margin: 0; }
p { margin: 0; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  z-index: 100;
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  border-radius: 0 0 12px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 10px clamp(18px, 4vw, 64px);
  background: rgba(255, 250, 248, .92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.bte-brand-logo { display: flex; align-items: center; min-width: 0; flex: 0 0 auto; }
.bte-brand-logo a { display: inline-flex; align-items: center; gap: 10px; }
.bte-brand-logo img { width: 72px; height: 72px; object-fit: contain; border-radius: 50%; }
.brand-fallback { font-size: 22px; font-weight: 800; letter-spacing: -.04em; white-space: nowrap; }
.brand-fallback strong { font-weight: 900; }

.site-header nav { display: flex; justify-self: center; }
.bte-nav { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; font-size: 14px; font-weight: 600; }
.bte-nav a { display: block; padding: 8px 0; }
.bte-nav a:hover, .bte-nav a[aria-current="page"] { color: var(--accent); }

.header-cta { justify-self: end; }
.header-cta .btn { min-height: 44px; padding: 0 18px; font-size: 13px; }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span { width: 17px; height: 1.5px; background: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  font-weight: 750;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); background: var(--primary-hover); }
.btn-secondary { border: 1px solid #d8c8c9; background: #fff; color: var(--text); }
.btn-secondary:hover { transform: translateY(-2px); border-color: var(--accent); }
.btn-block { width: 100%; }
.btn[disabled] { cursor: not-allowed; opacity: .55; transform: none !important; }

/* ---------- Trust strip ---------- */
.trust-strip {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px clamp(18px, 4vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  color: #7b676c;
  font-size: 11px;
  font-weight: 700;
}
.trust-strip span { position: relative; padding-right: 18px; }
.trust-strip span:not(:last-child)::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%; background: #b07a8b; transform: translateY(-50%);
}

/* ---------- Hero (promo, matches approved WordPress home hero) ---------- */
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 11px; font-weight: 800; color: var(--accent); }

.promo-hero { position: relative; width: 100%; background: #fff7f5; border-bottom: 1px solid var(--border); overflow: hidden; }
.promo-hero__desktop { display: block; width: 100%; max-width: 1664px; margin: 0 auto; }
.promo-hero__desktop img { display: block; width: 100%; height: auto; }
.promo-hero__mobile { display: none; }
.promo-hero a { display: block; text-decoration: none; }
.promo-hero a:focus-visible { outline: 3px solid var(--primary); outline-offset: -3px; }

@media (max-width: 760px) {
  .promo-hero__desktop { display: none; }
  .promo-hero__mobile { display: block; position: relative; min-height: 520px; background: #f7e5e1; }
  .promo-hero__mobile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .promo-hero__overlay {
    position: relative; z-index: 2; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end;
    padding: 28px 22px;
    background: linear-gradient(180deg, rgba(255,255,255,.05) 18%, rgba(255,247,245,.90) 64%, rgba(255,247,245,.99) 100%);
  }
  .promo-hero__eyebrow { font-size: 11px; letter-spacing: .12em; font-weight: 800; color: var(--accent-hover); margin-bottom: 8px; }
  .promo-hero__overlay h1 { margin: 0 0 10px; font-size: 38px; line-height: .98; letter-spacing: -.045em; color: var(--primary); }
  .promo-hero__overlay p { margin: 0 0 16px; font-size: 15px; line-height: 1.45; color: var(--text-muted); }
  .promo-hero__badge {
    display: inline-flex; align-items: center; align-self: flex-start; margin: 0 0 18px; padding: 10px 14px;
    border-radius: 999px; background: var(--promo); color: #fff; font-size: 13px; font-weight: 800;
  }
  .promo-hero__cta {
    display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 20px;
    border-radius: 999px; background: var(--primary); color: #fff; font-weight: 800;
  }
}

/* ---------- Sections ---------- */
.section { max-width: 1280px; margin: auto; padding: 44px clamp(18px, 4vw, 64px); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 20px; margin-bottom: 22px; }
.section-head h2, .section h2 { font-size: clamp(30px, 4vw, 46px); margin: 5px 0 0; letter-spacing: -.045em; }
.section-head > a { font-size: 13px; font-weight: 800; color: var(--accent); }

/* ---------- Categories ---------- */
.categories { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.categories a {
  position: relative; min-height: 78px; display: flex; align-items: center;
  padding: 24px 34px 24px 18px; background: #fff; border: 1px solid var(--border);
  border-radius: 20px; font-weight: 800; overflow: hidden;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.categories a::after {
  content: "\2192"; position: absolute; right: 18px; opacity: 0;
  transform: translateX(-6px); transition: opacity .2s ease, transform .2s ease;
}
.categories a:hover { transform: translateY(-2px); border-color: #c993a5; box-shadow: 0 12px 30px rgba(60,35,43,.06); }
.categories a:hover::after { opacity: 1; transform: translateX(0); }

/* ---------- Product grid / cards ---------- */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.product-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--border); border-radius: 22px; overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 16px 42px rgba(49,30,36,.08); }
.product-card .media { position: relative; aspect-ratio: 4/5; background: var(--card-bg); overflow: hidden; }
.product-card .media img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.product-card .info { display: flex; flex-direction: column; min-height: 138px; padding: 16px; }
.product-card h3 { font-size: 16px; line-height: 1.3; margin: 0 0 8px; }
.product-card .meta { font-size: 12px; color: #846f74; margin-bottom: 10px; }
.price { font-size: 20px; font-weight: 900; }
.product-card .card-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 4px 10px; margin-top: auto; padding-top: 14px; }
.card-cta { font-size: 12px; font-weight: 800; color: var(--accent); white-space: nowrap; }
.product-card:hover .card-cta { text-decoration: underline; }
.empty-state {
  grid-column: 1/-1; display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-height: 220px; gap: 7px; border: 1px dashed #dacbcd; border-radius: 24px; color: #7b696e;
}

/* ---------- Benefits ---------- */
.benefits { max-width: 1280px; margin: 20px auto; padding: 0 clamp(18px, 4vw, 64px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.benefits article { min-height: 130px; display: flex; flex-direction: column; justify-content: center; padding: 26px; border-radius: 22px; background: var(--primary); color: #fff; }
.benefits strong { display: block; font-size: 20px; margin-bottom: 7px; letter-spacing: -.02em; }
.benefits span { color: #d9cfd1; line-height: 1.5; max-width: 360px; }

/* ---------- Shipping / Support ---------- */
.shipping { padding-top: 40px; padding-bottom: 40px; }
.shipping > div { padding: clamp(28px, 4vw, 40px); border-radius: 28px; background: #f3e8e4; border: 1px solid var(--border); }
.shipping h2 { max-width: 760px; }
.shipping p { max-width: 820px; margin-top: 16px; font-size: 17px; line-height: 1.65; color: var(--text-muted); }
.support { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 46px; padding-bottom: 52px; border-top: 1px solid var(--border); }
.support > div { max-width: 780px; }
.support p { max-width: 640px; color: var(--text-muted); line-height: 1.6; margin-top: 8px; }

/* ---------- Footer ---------- */
footer { max-width: 1280px; margin: auto; padding: 40px clamp(18px, 4vw, 64px) 32px; border-top: 1px solid var(--border); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; align-items: start; }
.footer-brand .brand-fallback { display: block; margin-bottom: 8px; }
.footer-grid p { color: #79666b; line-height: 1.6; max-width: 320px; }
.footer-contact { display: flex; flex-direction: column; gap: 8px; min-width: 200px; }
.footer-contact strong { margin-bottom: 4px; }
.footer-contact a { color: var(--text-muted); font-size: 14px; }
.footer-contact a:hover { color: var(--accent); }
.bte-footer-nav { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border);
}
.footer-bottom-links { list-style: none; display: flex; flex-wrap: wrap; gap: 6px 16px; margin: 0; padding: 0; font-size: 13px; }
.footer-bottom-links a { color: var(--text-muted); }
.footer-bottom-links a:hover { color: var(--accent); }
.muted, small { color: var(--text-muted-2); font-size: 13px; }

.floating-whatsapp {
  display: none;
  position: fixed; right: 22px; bottom: 22px; z-index: 50;
  align-items: center; justify-content: center; gap: 8px;
  min-height: 50px; padding: 0 20px; border-radius: 999px;
  background: var(--primary); color: #fff; box-shadow: 0 14px 38px rgba(40,24,29,.2);
  font-size: 13px; font-weight: 800; transition: transform .2s ease;
}
.floating-whatsapp:hover { transform: translateY(-3px); }
/* Desktop already shows a persistent WhatsApp CTA in the header; the floating
   button only earns its place on mobile, where that header CTA is hidden. */
@media (max-width: 900px) {
  .floating-whatsapp { display: flex; }
}

/* ---------- Content pages (legal / info) ---------- */
.content-page { max-width: 1280px; margin: auto; padding: 44px clamp(18px, 4vw, 64px) 80px; }
.page-hero { max-width: 820px; padding: 10px 0 44px; }
.page-hero h1 { margin: 9px 0 16px; font-size: clamp(42px, 6vw, 72px); line-height: .98; letter-spacing: -.055em; }
.page-hero p { max-width: 700px; color: var(--text-muted); font-size: 17px; line-height: 1.65; }

.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.info-card { min-height: 240px; padding: 26px; border: 1px solid var(--border-strong); border-radius: 24px; background: #fff; }
.info-number { display: block; margin-bottom: 30px; color: var(--accent); font-size: 11px; font-weight: 900; letter-spacing: .12em; }
.info-card h2 { margin: 0 0 12px; font-size: 22px; letter-spacing: -.03em; }
.info-card p { margin: 0; color: #746166; line-height: 1.6; }

.contact-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.contact-card {
  display: flex; min-height: 190px; padding: 24px; flex-direction: column; justify-content: flex-end;
  border: 1px solid var(--border-strong); border-radius: 24px; background: #fff;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-3px); border-color: #bd8194; }
.contact-card span { margin-bottom: auto; color: var(--accent); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.contact-card strong { margin-bottom: 6px; font-size: clamp(16px, 2vw, 20px); overflow-wrap: anywhere; }
.contact-card small { color: #857176; }

.policy-list { display: grid; gap: 1px; overflow: hidden; border: 1px solid var(--border-strong); border-radius: 24px; background: var(--border-strong); }
.policy-list article { padding: 28px; background: #fff; }
.policy-list h2 { margin: 0 0 10px; font-size: 22px; }
.policy-list p { max-width: 850px; margin: 0; color: #746166; line-height: 1.65; }

.bte-legal-page h2 { font-size: 22px; margin: 30px 0 10px; letter-spacing: -.02em; }
.bte-legal-page h2:first-of-type { margin-top: 26px; }
.bte-legal-page p { color: var(--text-muted); line-height: 1.7; margin: 0 0 4px; }
.bte-legal-lead { font-size: 17px; color: var(--text); margin-bottom: 6px !important; }
.bte-legal-contact { margin-top: 26px !important; }
.bte-legal-contact a { display: inline-flex; align-items: center; min-height: 48px; padding: 0 20px; border-radius: 999px; background: var(--primary); color: #fff; font-weight: 800; }
.bte-contact-grid, .bte-policy-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 20px 0; }
.bte-policy-grid a { display: block; padding: 20px; border: 1px solid var(--border); border-radius: 18px; background: #fff; }
.bte-policy-grid a strong { display: block; margin-bottom: 4px; }
.bte-policy-grid a span { color: var(--text-muted-2); font-size: 13px; }
.bte-policy-grid a:hover { border-color: var(--accent); }

.page-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  margin-top: 50px; padding: 32px; border-radius: 28px; background: #f2e7e3;
}
.page-cta h2 { margin: 5px 0 0; font-size: clamp(28px, 4vw, 42px); letter-spacing: -.04em; }

/* ---------- Shop / tienda ---------- */
.shop-intro { max-width: 900px; padding: 28px 0 16px; }
.shop-intro h1 { font-size: clamp(40px, 6vw, 66px); line-height: .98; letter-spacing: -.05em; margin: 8px 0 14px; }
.shop-intro p { max-width: 700px; color: var(--text-muted); font-size: 17px; line-height: 1.6; }

.bte-shop-tools { display: grid; gap: 16px; margin: 8px 0 26px; }
.bte-product-search { max-width: 720px; }
.bte-product-search label { display: block; margin-bottom: 7px; font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); }
.bte-product-search-row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; }
.bte-product-search input {
  min-height: 48px; width: 100%; border: 1px solid #dfd0d1; border-radius: 16px;
  padding: 0 16px; background: #fff; color: var(--primary); outline: none; font: inherit;
}
.bte-product-search input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(161,62,96,.1); }

.bte-category-filter { display: flex; gap: 8px; overflow-x: auto; padding: 0 0 4px; scrollbar-width: none; }
.bte-category-filter::-webkit-scrollbar { display: none; }
.bte-category-filter button {
  flex: 0 0 auto; min-height: 40px; display: inline-flex; align-items: center; padding: 0 16px;
  border: 1px solid #dfd0d1; border-radius: 999px; background: #fff; color: var(--primary);
  font-size: 13px; cursor: pointer;
}
.bte-category-filter button.is-active { border-color: var(--primary); background: var(--primary); color: #fff; }
.result-count { color: #887378; font-size: 13px; margin-bottom: 6px; }

/* ---------- Product detail ---------- */
.product-detail { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 70px); align-items: start; padding: 30px clamp(18px, 4vw, 64px) 70px; max-width: 1280px; margin: auto; }
.product-breadcrumb { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 16px; color: #917e83; font-size: 12px; grid-column: 1/-1; }
.product-breadcrumb a:hover { color: var(--accent-hover); }
.product-gallery { display: grid; gap: 12px; }
.gallery-main { aspect-ratio: 1 / 1; overflow: hidden; border-radius: 24px; background: var(--card-bg); }
.gallery-main img { width: 100%; height: 100%; object-fit: contain; }

.product-copy { position: sticky; top: 116px; }
.product-copy h1 { font-size: clamp(34px, 5.2vw, 64px); line-height: 1; letter-spacing: -.05em; margin: 6px 0 14px; }
.product-price-row { display: flex; align-items: baseline; gap: 12px; }
.product-copy .price { font-size: 28px; }
.product-description { margin: 18px 0 22px; color: var(--text-muted); line-height: 1.65; }

.option-group { padding: 18px 0; margin: 0; border-top: 1px solid var(--border); }
.option-title { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 12px; }
.option-title h4 { margin: 0; font-size: 15px; }
.option-title span { font-size: 12px; color: var(--text-muted-2); }
.option-list { display: flex; gap: 8px; flex-wrap: wrap; }
.product-option {
  min-height: 40px; padding: 0 14px; display: inline-flex; align-items: center;
  border: 1px solid #d8c8c9; border-radius: 999px; background: #fff; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.product-option:hover:not([disabled]) { border-color: var(--accent-hover); transform: translateY(-1px); }
.product-option.selected { background: var(--primary); border-color: var(--primary); color: #fff; }
.product-option[disabled] { opacity: .35; cursor: not-allowed; text-decoration: line-through; }

.selection-summary { padding: 13px 15px; margin: 6px 0 4px; border-radius: 14px; background: #f8f2ef; color: #725f64; font-size: 12px; line-height: 1.5; }
.selection-summary strong { color: var(--primary); }
.selection-warning { display: none; margin: 10px 0 0; padding: 12px 15px; border-radius: 14px; background: #fff2ee; border: 1px solid #f0c9be; color: #8a3a24; font-size: 13px; }
.selection-warning.is-visible { display: block; }

.availability-card { display: flex; gap: 12px; align-items: flex-start; padding: 16px 18px; margin: 18px 0 12px; border-radius: 18px; background: #f5eee9; }
.availability-dot { width: 9px; height: 9px; flex: 0 0 auto; margin-top: 5px; border-radius: 50%; background: #c59043; }
.availability-card strong, .availability-card span { display: block; }
.availability-card strong { margin-bottom: 4px; font-size: 14px; }
.availability-card span { color: #776368; font-size: 13px; line-height: 1.45; }

.shipping-card { padding: 20px; margin: 6px 0 18px; border: 1px solid var(--border); border-radius: 20px; background: #fff; }
.shipping-card > strong { display: block; margin-bottom: 14px; }
.shipping-row { display: grid; grid-template-columns: 90px 1fr; gap: 14px; padding: 11px 0; border-top: 1px solid #f0e7e5; }
.shipping-row:first-of-type { border-top: 0; }
.shipping-row span { font-size: 13px; font-weight: 800; }
.shipping-row p { margin: 0; color: #79666b; font-size: 13px; line-height: 1.5; }

.whatsapp-note { margin: 10px 0 20px; text-align: center; color: var(--text-muted-2); font-size: 12px; line-height: 1.5; }

.related-products { grid-column: 1/-1; margin-top: 30px; }
.related-products h2 { margin-bottom: 20px; font-size: clamp(26px, 4vw, 38px); letter-spacing: -.03em; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(2, 1fr); }
  .info-grid, .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .product-detail { grid-template-columns: 1fr; }
  .product-copy { position: static; }
  .benefits { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .site-header nav {
    position: absolute; left: 16px; right: 16px; top: calc(100% + 8px);
    justify-self: stretch; display: none; padding: 12px;
    border: 1px solid var(--border-strong); border-radius: 20px; background: #fff;
    box-shadow: 0 18px 50px rgba(43,28,33,.12);
  }
  .site-header nav.open { display: flex; }
  .bte-nav { flex-direction: column; align-items: stretch; width: 100%; gap: 2px; }
  .bte-nav a { padding: 13px 14px; border-radius: 12px; }
  .bte-nav a:hover { background: #f7efed; }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .support { flex-direction: column; align-items: flex-start; }
  .bte-shipping-info-grid, .info-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { border-radius: 16px; }
  .product-card .info { padding: 12px; min-height: 122px; }
  .product-card h3 { font-size: 13.5px; }
  .categories a { padding: 18px 30px 18px 14px; font-size: 14px; }
  .section { padding-top: 34px; }
  .site-header { padding: 10px 14px; min-height: 80px; }
  .bte-brand-logo img { width: 52px; height: 52px; }
  .footer-grid { gap: 22px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .product-copy h1 { font-size: 34px; }
  .floating-whatsapp { right: 14px; bottom: 14px; padding: 0 16px; min-height: 46px; font-size: 12px; }
  .page-cta { flex-direction: column; align-items: flex-start; padding: 24px; }
  .page-cta .btn { width: 100%; }
  .bte-contact-grid, .bte-policy-grid { grid-template-columns: 1fr; }
}
