/**
 * cookie-consent-1559663.css — Task #1559663
 * Owns: Cookie consent banner styles
 * Does NOT own: Ad loading logic, GA4, global layout
 */

#sr-cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: #1F2A37;
  color: #F9FAFB;
  padding: 16px 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  font-family: var(--font-sans, 'DM Sans', system-ui, sans-serif);
  font-size: 0.875rem;
  line-height: 1.5;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

#sr-cookie-consent.sr-cc-visible {
  transform: translateY(0);
}

.sr-cc-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.sr-cc-text {
  flex: 1;
  min-width: 200px;
  color: #E5E7EB;
}

.sr-cc-text a {
  color: #6EE7B7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sr-cc-text a:hover {
  color: #A7F3D0;
}

.sr-cc-text strong {
  color: #F9FAFB;
}

.sr-cc-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.sr-cc-btn {
  padding: 9px 20px;
  border-radius: 7px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: inherit;
  transition: opacity 0.15s ease, transform 0.1s ease;
  white-space: nowrap;
  min-height: 40px;
}

.sr-cc-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.sr-cc-btn:active {
  transform: translateY(0);
}

.sr-cc-btn--accept {
  background: #059669;
  color: #FFFFFF;
}

.sr-cc-btn--reject {
  background: transparent;
  color: #D1D5DB;
  border: 1px solid #4B5563;
}

.sr-cc-btn--reject:hover {
  background: rgba(255,255,255,0.07);
  color: #F9FAFB;
}

.sr-cc-settings {
  background: none;
  border: none;
  color: #9CA3AF;
  font-size: 0.78rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  white-space: nowrap;
  align-self: center;
}

.sr-cc-settings:hover {
  color: #D1D5DB;
}

@media (max-width: 640px) {
  .sr-cc-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sr-cc-actions {
    width: 100%;
  }
  .sr-cc-btn {
    flex: 1;
    text-align: center;
  }
}
