/* BC Designs — cookie consent (shop SPA + static pages) */
@keyframes bc-cookie-slide-in {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 10050;
  padding: 1rem 1.15rem;
  padding-bottom: calc(1rem + env(safe-area-inset-bottom));
  background: #ffffff;
  border-top: 1px solid #f2cdd6;
  box-shadow: 0 -12px 32px rgba(32, 31, 61, 0.14);
  font-family: "Quicksand", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  animation: bc-cookie-slide-in 0.35s ease-out;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}

.cookie-consent-title {
  margin: 0;
  width: 100%;
  font-weight: 700;
  font-size: 1.05rem;
  color: #201f3d;
  font-family: "Playfair Display", Georgia, serif;
}

.cookie-consent-desc {
  margin: 0;
  flex: 1 1 280px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #6b6383;
}

.cookie-consent-desc a {
  color: #d76d94;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-consent-desc a:hover {
  color: #b8517a;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.cookie-consent-actions button,
.cookie-consent-actions .btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.2rem;
  margin: 0;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.2;
  cursor: pointer;
  border: 1px solid transparent;
  box-sizing: border-box;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cookie-consent-actions .cookie-consent-accept,
.cookie-consent-actions .btn-primary.cookie-consent-accept {
  background: #201f3d;
  color: #fff;
  border-color: #201f3d;
}

.cookie-consent-actions .cookie-consent-accept:hover,
.cookie-consent-actions .btn-primary.cookie-consent-accept:hover {
  background: #2f2d52;
  border-color: #2f2d52;
}

.cookie-consent-actions .cookie-consent-reject,
.cookie-consent-actions .btn-secondary.cookie-consent-reject {
  background: #fff;
  color: #3f3a56;
  border-color: #f2cdd6;
}

.cookie-consent-actions .cookie-consent-reject:hover,
.cookie-consent-actions .btn-secondary.cookie-consent-reject:hover {
  background: #fbeced;
  border-color: #e78aa9;
  color: #201f3d;
}

@media (max-width: 640px) {
  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-actions button,
  .cookie-consent-actions .btn {
    flex: 1 1 calc(50% - 0.4rem);
    min-width: 0;
    padding: 0 0.75rem;
    font-size: 0.85rem;
  }
}
