.customer-sticky-wrap {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: flex;
  justify-content: center;
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, transparent 0%, rgba(249, 250, 251, 0.94) 28%, var(--paper) 100%);
  backdrop-filter: blur(14px);
}

.customer-sticky {
  width: fit-content;
  max-width: calc(100% - 28px);
  margin: 0;
  padding: 10px;
  border-radius: var(--radius-panel);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.customer-sticky__links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.customer-sticky__primary,
.customer-sticky__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: var(--radius-button);
  text-decoration: none;
  font: 700 12px var(--font-label);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.customer-sticky__primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-button);
}

.customer-sticky__secondary {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 680px) {
  .customer-sticky-wrap {
    padding: 4px 8px calc(4px + env(safe-area-inset-bottom));
    background: transparent;
    backdrop-filter: none;
  }

  .customer-sticky {
    justify-content: center;
    width: fit-content;
    max-width: calc(100% - 8px);
    padding: 0;
    border-radius: var(--radius-pill);
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .customer-sticky__primary {
    width: auto;
    min-height: 40px;
    padding: 10px 14px;
    font-size: 11px;
    white-space: nowrap;
  }

  .customer-sticky__links {
    display: none;
  }
}

@media print {
  .customer-sticky-wrap {
    display: none !important;
  }
}
