/* Octohide cookie-consent banner (GA opt-in). Paired with /js/cookie-consent.js */

/* The banner ships on both the Webflow pages (global border-box reset) and the
   shop (no reset), so pin the box model or the card sizes differently on each. */
.oh-cc,
.oh-cc *,
.oh-cc *::before,
.oh-cc *::after {
  box-sizing: border-box;
}

.oh-cc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483647;
  pointer-events: none;
  transform: translateY(115%);
  transition: transform .35s ease;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}
.oh-cc.oh-cc--show {
  transform: translateY(0);
}

.oh-cc-card {
  max-width: 500px;
  margin: 0 20px 20px auto;
  padding: 18px 20px;
  pointer-events: auto;
  background: #0c2944;
  color: #fff;
  border: 1px solid #175288;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
}

.oh-cc-flex {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch;
}

.oh-cc-text {
  min-width: 0;
}
.oh-cc-text strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}
.oh-cc-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .72);
}
.oh-cc-text a {
  color: #5edda6;
  text-decoration: underline;
}

.oh-cc-actions {
  display: flex;
  gap: 10px;
}
.oh-cc-actions .oh-cc-btn {
  flex: 1 1 0;
}

.oh-cc-btn {
  box-sizing: border-box;
  font: 600 13px/1.25 'Manrope', sans-serif;
  padding: 11px 14px;
  border-radius: 9px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
  transition: opacity .2s;
}
.oh-cc-btn:hover {
  opacity: .88;
}
.oh-cc-btn--primary {
  background: #5edda6;
  color: #101112;
  border-color: #5edda6;
}
.oh-cc-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: #175288;
}

.oh-cc-prefs {
  margin-top: 14px;
  border-top: 1px solid #175288;
  padding-top: 12px;
  display: grid;
  gap: 12px;
}
.oh-cc-prefs[hidden] {
  display: none;
}

.oh-cc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #fff;
}
.oh-cc-row small {
  display: block;
  color: rgba(255, 255, 255, .55);
  font-weight: 400;
  margin-top: 2px;
}
.oh-cc-row input {
  width: 18px;
  height: 18px;
  accent-color: #5edda6;
  flex: 0 0 auto;
}
.oh-cc-row input:disabled {
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 640px) {
  .oh-cc-card {
    max-width: none;
    margin: 0 12px 12px;
  }
}

@media (max-width: 520px) {
  .oh-cc-actions {
    flex-direction: column;
  }
  .oh-cc-actions .oh-cc-btn {
    flex: none;
  }
}
