.ep-cb-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background: #ffffff;
  box-shadow: 0 -4px 24px rgba(0,0,0,.16);
  border-top: 1px solid rgba(0,0,0,.12);
  font-family: inherit;
}
.ep-cb-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 20px;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  align-items: center;
}
.ep-cb-text {
  font-size: 14px;
  line-height: 1.5;
  color: #222;
}
.ep-cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.ep-cb-btn {
  border: 0;
  border-radius: 6px;
  padding: 10px 16px;
  font-size: 14px;
  cursor: pointer;
}
.ep-cb-accept {
  background: #112d50;
  color: #fff;
}
.ep-cb-decline {
  background: #e8e8e8;
  color: #111;
}
.ep-cb-reset {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 999998;
  border: 0;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  font-size: 12px;
  padding: 7px 11px;
  cursor: pointer;
}
@media (max-width: 700px) {
  .ep-cb-inner {
    display: block;
  }
  .ep-cb-actions {
    margin-top: 14px;
  }
  .ep-cb-btn {
    flex: 1;
  }
}
