.ann-bar {
  width: 100%;
  background: #e8e8e8;
  border-bottom: 1px solid rgba(42, 24, 16, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  min-height: 44px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  font-family: "Montserrat", sans-serif;
  z-index: 200;
}

.ab-track {
  position: relative;
  height: 44px;
  width: 100%;
  max-width: min(1360px, calc(100vw - 48px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ab-msg {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.52s cubic-bezier(.4, 0, .2, 1), opacity 0.52s;
}

.ab-msg.entering { transform: translateY(0); opacity: 1; }
.ab-msg.exiting { transform: translateY(-110%); opacity: 0; }

.ab-badge {
  background: #f6f1eb;
  color: #b14f1e;
  border: 1px solid rgba(177, 79, 30, 0.18);
  display: flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ab-badge.envio {
  background: rgba(42, 24, 16, 0.08);
  color: #4d3427;
  border-color: rgba(42, 24, 16, 0.12);
}

.ab-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: #8f4b2a;
  opacity: 0.95;
}

.ab-text {
  font-size: 13px;
  color: #3f2a20;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  display: block;
}

.ab-text strong {
  font-weight: 600;
  color: #b14f1e;
}

.ab-pips {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.ab-pip {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(42, 24, 16, 0.18);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}

.ab-pip.active { background: #b14f1e; }

@media (max-width: 768px) {
  body.ann-bar-body { padding-top: 62px; }
  body.ann-bar-body-page-top { padding-top: 178px; }
  .ann-bar-offset { top: 62px; }
  .ann-bar { min-height: 62px; padding: 0 14px; }
  .ab-track { height: 62px; max-width: calc(100vw - 28px); }
  .ab-msg { gap: 6px; padding: 0 12px; }
  .ab-pips,
  .ab-icon { display: none; }
  .ab-text {
    font-size: 11px;
    line-height: 1.25;
    max-width: 100%;
    white-space: normal;
  }
  .ab-badge {
    font-size: 9px;
    letter-spacing: 0.1em;
    padding: 2px 8px;
  }
}
