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

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

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

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

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

.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;
  cursor: pointer;
}

.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%;
  }
}

