/* ================================================================
   apart wellness — Cookie-Banner Styles
================================================================ */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 -8px 40px rgba(0,0,0,0.10);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), opacity 0.4s ease;
}

#cookie-banner.cookie-banner--show {
  transform: translateY(0);
  opacity: 1;
}

#cookie-banner.cookie-banner--hide {
  transform: translateY(100%);
  opacity: 0;
}

.cb-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Text */
.cb-title {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.cb-sub {
  font-size: 12px;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.cb-sub a {
  color: var(--brand, #c9a96e);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.cb-sub a:hover {
  border-color: var(--brand, #c9a96e);
}

/* Buttons */
.cb-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cb-btn {
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 11px 22px;
  border: none;
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.cb-btn--decline {
  background: transparent;
  color: #888;
  border: 1px solid #ddd;
}

.cb-btn--decline:hover {
  background: #f4f4f4;
  color: #444;
}

.cb-btn--accept {
  background: var(--brand, #c9a96e);
  color: #fff;
  border: 1px solid transparent;
}

.cb-btn--accept:hover {
  background: #b8945a;
}

/* Responsive */
@media (max-width: 700px) {
  .cb-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 20px 24px;
    gap: 16px;
  }
  .cb-actions {
    width: 100%;
  }
  .cb-btn {
    flex: 1;
    text-align: center;
  }
}
