/* RightClaw — Cookie Consent Banner Styles
   Matches site brand: Dark Navy / Cyan / Inter+Outfit */

#rc-cookie-overlay {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  padding: 16px;
  animation: rc-slide-up 0.35s ease-out;
}

#rc-cookie-overlay.rc-cookie-closing {
  animation: rc-slide-down 0.3s ease-in forwards;
}

.rc-cookie-banner {
  max-width: 720px;
  margin: 0 auto;
  background: #1f3260;
  border: 1px solid rgba(0, 214, 251, 0.2);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4);
  font-family: 'Inter', sans-serif;
  color: #d4dff5;
}

.rc-cookie-text strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #f0f4ff;
  display: block;
  margin-bottom: 8px;
}

.rc-cookie-text p {
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0 0 8px;
  color: #a8b8d8;
}

.rc-cookie-links {
  font-size: 0.8rem !important;
}

.rc-cookie-links a {
  color: #00D6FB;
  text-decoration: none;
}

.rc-cookie-links a:hover {
  text-decoration: underline;
}

/* Buttons */
.rc-cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.rc-btn {
  font-family: 'Outfit', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.rc-btn-accept {
  background: linear-gradient(135deg, #00D6FB, #0C419E);
  color: #fff;
}

.rc-btn-accept:hover {
  background: linear-gradient(135deg, #00e8ff, #1050b8);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 214, 251, 0.3);
}

.rc-btn-reject {
  background: transparent;
  color: #a8b8d8;
  border: 1px solid rgba(168, 184, 216, 0.3);
}

.rc-btn-reject:hover {
  color: #f0f4ff;
  border-color: rgba(168, 184, 216, 0.6);
}

.rc-btn-customize {
  background: transparent;
  color: #00D6FB;
  border: 1px solid rgba(0, 214, 251, 0.3);
}

.rc-btn-customize:hover {
  background: rgba(0, 214, 251, 0.08);
  border-color: rgba(0, 214, 251, 0.5);
}

.rc-btn-save {
  background: linear-gradient(135deg, #8778FF, #0C419E);
  color: #fff;
  margin-top: 12px;
}

.rc-btn-save:hover {
  background: linear-gradient(135deg, #9988ff, #1050b8);
  transform: translateY(-1px);
}

/* Customize panel */
.rc-cookie-customize {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 214, 251, 0.1);
}

.rc-cookie-category {
  padding: 8px 0;
}

.rc-cookie-category label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #a8b8d8;
  cursor: pointer;
  line-height: 1.5;
}

.rc-cookie-category label strong {
  color: #f0f4ff;
}

.rc-cookie-category input[type="checkbox"] {
  margin-top: 4px;
  accent-color: #00D6FB;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Animations */
@keyframes rc-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes rc-slide-down {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(100%); opacity: 0; }
}

/* Mobile */
@media (max-width: 600px) {
  .rc-cookie-banner {
    padding: 16px;
    border-radius: 12px 12px 0 0;
  }

  .rc-cookie-actions {
    flex-direction: column;
  }

  .rc-btn {
    width: 100%;
    text-align: center;
  }

  #rc-cookie-overlay {
    padding: 0;
  }
}
