.promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: var(--coral);
  color: #3a2418;
  padding: 9px 36px;
  position: relative;
  text-align: center;
}
.promo__text { font-size: 11px; line-height: 1.4; letter-spacing: 0.01em; }
.promo__close {
  position: absolute;
  right: 12px; top: 50%;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
}
.promo__close .icon { width: 16px; height: 16px; }
.promo.is-hidden { display: none; }

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--white);
  border-top: 3px solid var(--coral);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  transition: transform 0.28s ease;
}
.header__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 12px;
  padding: 12px 16px;
}
.iconbtn { display: grid; place-items: center; width: 30px; height: 30px; position: relative; }
.iconbtn--menu { order: 1; }
.brand {
  order: 2;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.brand-logo { height: 22px; width: auto; color: var(--ink); }
.iconbtn--bag { order: 3; }
.bag__count {
  position: absolute;
  top: -4px; right: -6px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 9px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.header__find {
  order: 4;
  flex: 1 0 100%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.search {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  background: var(--field);
  border-radius: 7px;
  padding: 0 14px;
  height: 44px;
}
.life {
  flex: 0 0 auto;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0 13px;
  border-radius: 8px;
  background: #fbe2d7;
}
.life__logo { height: 22px; width: auto; }
.search__input {
  flex: 1;
  border: 0;
  background: none;
  outline: none;
  font-size: 13px;
  color: var(--ink);
}
.search__input::placeholder { color: var(--muted-light); }
.search__btn { display: grid; place-items: center; color: var(--muted); }
.search__btn .icon { width: 19px; height: 19px; }

.sale { display: block; background: #fff; line-height: 0; }
.sale img { width: 100%; height: auto; display: block; aspect-ratio: 750 / 100; object-fit: cover; }

body.is-scrolldown .header { transform: translateY(-100%); }

.minibar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: var(--white);
  border-top: 3px solid var(--coral);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transform: translateY(-100%);
  transition: transform 0.28s ease;
  will-change: transform;
}
body.is-scrolldown .minibar { transform: translateY(0); }
.minibar .iconbtn--menu { order: 0; }
.minibar .search { order: 1; flex: 1; height: 40px; }
.minibar .iconbtn--bag { order: 2; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(20,16,14,0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
  z-index: 80;
}
.overlay.is-open { opacity: 1; visibility: visible; }

.drawer {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 86%;
  max-width: 360px;
  background: var(--white);
  z-index: 90;
  transform: translateX(-100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.drawer.is-open { transform: translateX(0); }
.drawer__head {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
}
.drawer__body { position: relative; flex: 1 1 auto; overflow: hidden; }
.drawer__main { position: absolute; inset: 0; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.drawer__brand { display: flex; align-items: center; }
.drawer__brand .brand-logo { height: 22px; }
.drawer__search { margin: 0 18px 14px; }
.drawer__util {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.drawer__util-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--ink);
}
.drawer__util-item .icon { width: 20px; height: 20px; }
.drawer__util-item--cep { color: var(--coral-strong); }
.drawer__util-item--cep .link-underline { border-color: var(--coral-strong); }

.drawer__nav { padding: 6px 0; }
.drawer__links { padding: 6px 0 26px; }
.drawer__link {
  display: block;
  padding: 13px 18px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.acc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  text-align: left;
}
.acc__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--ink);
}
.acc__head .icon { width: 18px; height: 18px; color: var(--coral); transition: transform 0.22s ease; }
.acc.is-open > .acc__head .icon { transform: rotate(180deg); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.acc.is-open > .acc__panel { max-height: 600px; }
.acc__sublink {
  display: block;
  padding: 10px 18px 10px 30px;
  font-size: 13px;
  color: var(--muted);
}

.m-link,
.m-drill {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 13px 18px 13px 32px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.m-drill .icon { width: 16px; height: 16px; color: var(--muted-light); }
.m-vertodas {
  display: block;
  padding: 14px 18px 16px 32px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral-strong);
  border-top: 1px solid var(--line);
}

.m-panel {
  position: absolute;
  inset: 0;
  background: var(--white);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  z-index: 3;
}
.m-panel.is-open { transform: translateX(0); }
.m-panel__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px 14px;
}
.m-panel__title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.m-panel__back {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--coral-strong);
  border-bottom: 1px solid var(--coral-strong);
  padding-bottom: 2px;
}
.m-panel__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 24px;
  font-size: 14px;
  color: #6f6f6f;
  border-top: 1px solid var(--line);
}
.m-panel .m-vertodas { padding-left: 24px; }
.m-swatch {
  width: 18px; height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.1);
}
.m-swatch--branco { background: radial-gradient(circle at 35% 30%, #ffffff, #dcdcdc 70%, #c4c4c4); }
.m-swatch--amarelo { background: radial-gradient(circle at 35% 30%, #f7e493, #e6c34d 70%, #c9a531); }
.m-swatch--vivara { background: radial-gradient(circle at 35% 30%, #f4cda9, #e0a06f 70%, #c9824f); }
.m-swatch--rose { background: radial-gradient(circle at 35% 30%, #f6d2c4, #e1a991 70%, #cf8e75); }
.m-swatch--duo { background: linear-gradient(120deg, #dcdcdc 0 50%, #e6c34d 50% 100%); }
.m-swatch--prata { background: radial-gradient(circle at 35% 30%, #f1f1f1, #cacaca 70%, #ababab); }

.cep-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 18px 0;
  background: rgba(20,16,14,0.42);
}
.cep-modal.is-open { display: flex; }
.cep-modal__box {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: var(--white);
  border-radius: 6px;
  padding: 22px 20px 24px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.2);
}
.cep-modal__close { position: absolute; right: 14px; top: 14px; }
.cep-modal__close .icon { width: 18px; height: 18px; }
.cep-modal__title { font-family: var(--font-display); font-size: 20px; font-weight: 700; line-height: 1.2; padding-right: 24px; }
.cep-modal__text { font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
.cep-modal__row { display: flex; gap: 10px; margin-top: 16px; }
.cep-modal__input { flex: 1; border: 1px solid var(--line-strong); border-radius: 4px; padding: 0 12px; height: 46px; outline: none; }
.cep-modal__ok { background: var(--coral); color: #fff; font-weight: 700; letter-spacing: 0.08em; padding: 0 26px; border-radius: 4px; }
.cep-modal__geo { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 16px; color: var(--coral-strong); }
.cep-modal__geo .icon { width: 18px; height: 18px; }

.footer { background: var(--peach); }
.footer__acc { border-top: 1px solid rgba(0,0,0,0.08); }
.footer__acc .acc__title { font-weight: 500; letter-spacing: 0.05em; }
.footer__social { padding: 22px 18px 6px; }
.footer__social-label { font-family: var(--font-display); font-size: 16px; font-weight: 600; letter-spacing: 0.06em; }
.social-row { display: flex; align-items: center; gap: 12px; margin: 12px 0 22px; flex-wrap: wrap; }
.social-row__name { font-size: 13px; min-width: 92px; }
.social {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
}
.social .icon { width: 16px; height: 16px; stroke: none; fill: #fff; }
.social--coral { background: var(--coral); }
.social--dark { background: #111; }

.appbadges { display: flex; gap: 12px; padding: 8px 18px 26px; }
.appbadge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  color: #fff;
  border-radius: 7px;
  padding: 8px 14px;
  min-width: 132px;
}
.appbadge__sub { font-size: 8px; letter-spacing: 0.04em; opacity: 0.85; text-transform: uppercase; }
.appbadge__main { font-size: 14px; font-weight: 600; line-height: 1.1; }
.appbadge .icon { width: 20px; height: 20px; stroke: none; fill: #fff; }

.footer__bottom {
  background: var(--peach-deep);
  text-align: center;
  padding: 24px 22px 30px;
}
.footer__logo { display: flex; justify-content: center; }
.footer__logo .brand-logo { height: 26px; }
.footer__copy { font-size: 11px; color: var(--ink-soft); margin-top: 8px; }
.footer__safe { display: inline-flex; align-items: center; gap: 7px; margin-top: 18px; color: #2f7d3a; font-weight: 600; font-size: 13px; }
.footer__safe .icon { width: 20px; height: 20px; stroke: none; fill: #2f7d3a; }
.footer__safe-img { height: 22px; width: auto; }
.footer__award-img { height: 36px; width: auto; margin: 0 auto; }
.footer__awards-label { font-size: 11px; color: var(--ink-soft); margin-top: 18px; }
.footer__awards { display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 8px; }
.footer__legal { font-size: 10.5px; color: var(--ink-soft); line-height: 1.5; margin-top: 18px; }
.footer__wpp { display: inline-block; margin-top: 6px; font-size: 10.5px; color: var(--coral-strong); border-bottom: 1px solid var(--coral-strong); }
