.cookie-widget {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--bg-primary);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  z-index: 1050;
  padding: 1rem 1.25rem;
  max-width: 360px;
  display: none;
  border: 1px solid var(--border-light);
}

.cookie-widget,
.cookie-widget * {
  --shadow-orange: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.cookie-widget-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.cookie-text {
  margin: 0;
  color: var(--text-primary);
  font-size: 0.875rem;
  line-height: 1.5;
  flex: 1;
}

.cookie-link {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.cookie-link:hover {
  color: var(--primary-dark);
}

.cookie-btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  background: #374151;
  color: #ffffff;
  border: none;
  transition: background-color 0.2s ease;
}

.cookie-btn:hover {
  background: #1f2937;
}

@media (max-width: 768px) {
  .cookie-widget {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    max-width: none;
  }
  
  .cookie-widget-content {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

