/* =========================================================
   iDjems HQ — style.css
   Dark theme · Glassmorphism · Animated gradient orbs
   ========================================================= */

/* ── Variables ─────────────────────────────────────────── */
:root {
  --bg:              #06060a;
  --surface:         rgba(255, 255, 255, 0.05);
  --surface-hover:   rgba(255, 255, 255, 0.08);
  --border:          rgba(255, 255, 255, 0.09);
  --text:            #eeeef5;
  --text-muted:      rgba(238, 238, 245, 0.5);
  --purple:          #7c3aed;
  --cyan:            #06b6d4;
  --error:           #ef4444;
  --radius-lg:       0.875rem;
  --radius-xl:       1.25rem;
  --radius-2xl:      1.5rem;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  min-height: 100vh;
  overflow-x: hidden;
}

h1, h2, h3, .logo, .login-logo, .loading-logo {
  font-family: 'Space Grotesk', sans-serif;
}

button { font-family: inherit; }

.hidden { display: none !important; }

/* ── Gradient Orbs ─────────────────────────────────────── */
.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.orb-1 {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle at center, #7c3aed 0%, transparent 70%);
  top: -200px;
  left: -180px;
  animation: drift1 22s ease-in-out infinite alternate;
}

.orb-2 {
  width: 460px;
  height: 460px;
  background: radial-gradient(circle at center, #06b6d4 0%, transparent 70%);
  bottom: -160px;
  right: -120px;
  animation: drift2 28s ease-in-out infinite alternate;
}

.orb-3 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle at center, #4338ca 0%, transparent 70%);
  top: 45%;
  left: 48%;
  transform: translate(-50%, -50%);
  animation: drift3 35s ease-in-out infinite alternate;
}

@keyframes drift1 {
  to { transform: translate(120px, 160px); }
}
@keyframes drift2 {
  to { transform: translate(-130px, -90px); }
}
@keyframes drift3 {
  to { transform: translate(-50%, -50%) scale(1.35) rotate(40deg); }
}

/* ── Loading Screen ─────────────────────────────────────── */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
}

.loader-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.loading-logo {
  font-size: 1.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader {
  width: 36px;
  height: 36px;
  border: 2.5px solid var(--border);
  border-top-color: var(--purple);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ── Login View ─────────────────────────────────────────── */
#login-view {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 10;
}

.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  background: rgba(10, 10, 18, 0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 2.5rem 2.25rem;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.5);
}

.login-logo {
  font-size: 1.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.4rem;
}

.login-subtitle {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

/* ── Form inputs ────────────────────────────────────────── */
.input-group {
  margin-bottom: 1rem;
}

.input-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.label-optional {
  font-weight: 400;
  opacity: 0.6;
}

.input-group input,
.input-group textarea {
  display: block;
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.75rem 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.input-group input:focus,
.input-group textarea:focus {
  border-color: rgba(124, 58, 237, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.input-group textarea {
  resize: vertical;
  min-height: 80px;
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: block;
  width: 100%;
  padding: 0.85rem 1.25rem;
  margin-top: 0.75rem;
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  border: none;
  border-radius: var(--radius-lg);
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.975rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover:not(:disabled) {
  opacity: 0.92;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.5);
}

.btn-primary:active:not(:disabled) {
  transform: scale(0.98);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.btn-regen {
  display: block;
  width: 100%;
  padding: 0.75rem 1.25rem;
  margin-top: 0.6rem;
  background: transparent;
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: var(--radius-lg);
  color: rgba(124, 58, 237, 0.9);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}

.btn-regen:hover:not(:disabled) {
  background: rgba(124, 58, 237, 0.1);
  border-color: var(--purple);
  color: #a78bfa;
}

.btn-regen:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.btn-icon {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-muted);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  flex-shrink: 0;
}

.btn-icon:hover {
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--text);
  background: rgba(124, 58, 237, 0.08);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 0.5rem;
  color: var(--text-muted);
  padding: 0.4rem 0.85rem;
  font-size: 0.825rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(124, 58, 237, 0.5);
  color: var(--text);
  background: rgba(124, 58, 237, 0.08);
}

/* ── Error message ──────────────────────────────────────── */
.error-msg {
  color: var(--error);
  font-size: 0.825rem;
  padding: 0.55rem 0.85rem;
  margin-bottom: 0.75rem;
  background: rgba(239, 68, 68, 0.09);
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 0.6rem;
}

/* ── Dashboard ──────────────────────────────────────────── */
#dashboard-view {
  position: relative;
  min-height: 100vh;
  z-index: 1;
}

/* ── Header ─────────────────────────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(6, 6, 10, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.user-email {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ── Main / Grid ─────────────────────────────────────────── */
main {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 1.5rem 7rem;
}

/* ── Cards loading indicator ─────────────────────────────── */
.cards-loading {
  display: flex;
  justify-content: center;
  padding: 4rem 0;
}

/* ── Cards Grid ─────────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
}

/* ── Empty State ─────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 6rem 1.5rem;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.empty-state p {
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.empty-sub {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ── Website Card ─────────────────────────────────────────── */
.website-card {
  position: relative;
  height: 220px;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.28s ease,
              border-color 0.2s;
  will-change: transform;
}

.website-card:hover {
  transform: translateY(-5px) scale(1.012);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  border-color: rgba(124, 58, 237, 0.25);
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.92);
  transition: filter 0.3s ease;
}

.website-card:hover .card-bg {
  filter: brightness(1);
}

/* Subtle edge vignette — doesn't obscure the image content */
.card-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    transparent 45%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

.card-favicon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
  z-index: 2;
}

.card-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  z-index: 2;
}

.card-name {
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 24px rgba(0, 0, 0, 0.9),
    0 0  60px rgba(0, 0, 0, 0.6);
  word-break: break-word;
  /* font-family and font-size set dynamically */
}

/* Three-dots menu button */
.card-menu-btn {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.2s, transform 0.2s, background 0.2s;
}

.website-card:hover .card-menu-btn {
  opacity: 1;
  transform: scale(1);
}

.card-menu-btn:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Dropdown — fixed to body, positioned via JS (avoids card overflow:hidden) */
.card-dropdown {
  position: fixed;
  z-index: 999;
  width: 150px;
  background: #13131f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  padding: 0.3rem;
  min-width: 140px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
  animation: dropIn 0.14s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes dropIn {
  from { opacity: 0; transform: scale(0.88) translateY(-6px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

.card-dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.55rem 0.8rem;
  border: none;
  border-radius: 0.45rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  font-family: 'Inter', sans-serif;
  font-size: 0.83rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  text-align: left;
  white-space: nowrap;
}

.card-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.card-dropdown-item.danger {
  color: #f87171;
}

.card-dropdown-item.danger:hover {
  background: rgba(239, 68, 68, 0.12);
  color: #fca5a5;
}

/* ── FAB ─────────────────────────────────────────────────── */
.fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 20;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  color: #fff;
  font-size: 1.9rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(124, 58, 237, 0.45);
  transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.22s ease;
}

.fab:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.65);
}

.fab:active {
  transform: scale(0.94);
}

/* ── Modal Overlay ──────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
}

/* ── Modal ──────────────────────────────────────────────── */
.modal {
  position: relative;
  width: 100%;
  max-width: 560px;
  background: #0d0d1a;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-2xl) var(--radius-2xl) 0 0;
  padding: 1.75rem 1.75rem 2rem;
  animation: slideUp 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0.4;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.modal-header h2 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}

.btn-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.btn-close:hover {
  background: var(--surface-hover);
  color: var(--text);
}

/* ── Progress ────────────────────────────────────────────── */
.modal-progress {
  padding: 1.5rem 0 0.5rem;
}

.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.step {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s;
  letter-spacing: 0.03em;
}

.step.active {
  color: var(--purple);
}

.step.done {
  color: var(--cyan);
}

.step-line {
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: var(--border);
}

.progress-bar-container {
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  border-radius: 2px;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.progress-label {
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 600px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }

  .header-content {
    padding: 0.75rem 1rem;
  }

  main {
    padding: 1.5rem 1rem 7rem;
  }

  .modal {
    padding: 1.5rem 1.25rem 2rem;
  }

  .user-email {
    display: none;
  }
}

/* ── Settings Drawer ─────────────────────────────────────── */
.settings-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  justify-content: flex-end;
}

.settings-panel {
  position: relative;
  width: 320px;
  max-width: 92vw;
  height: 100%;
  background: #0c0c18;
  border-left: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: slideFromRight 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes slideFromRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0);    }
}

.settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.settings-header h2 {
  font-size: 1.05rem;
  font-weight: 600;
}

.settings-section {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.settings-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: 0.5rem;
}

.settings-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.settings-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ── Order list ──────────────────────────────────────────── */
.order-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.order-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  cursor: grab;
  user-select: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.order-item:active { cursor: grabbing; }

.order-item.dragging {
  opacity: 0.4;
  transform: scale(0.97);
}

.order-item.drag-over {
  border-color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
  transform: scale(1.02);
}

.drag-handle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
  cursor: grab;
}

.order-item-favicon {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
}

.order-item-name {
  font-size: 0.875rem;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.order-saved-badge {
  font-size: 0.72rem;
  color: var(--cyan);
  text-align: center;
  padding: 0.5rem 0;
  opacity: 0;
  transition: opacity 0.3s;
}

.order-saved-badge.visible { opacity: 1; }

/* ── Confirm Dialog ──────────────────────────────────────── */
.confirm-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.confirm-modal {
  background: #0d0d1a;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem 1.75rem 1.5rem;
  width: 100%;
  max-width: 340px;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.6);
  animation: confirmIn 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes confirmIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1);   }
}

.confirm-msg {
  font-size: 0.975rem;
  color: var(--text);
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.confirm-actions {
  display: flex;
  gap: 0.75rem;
}

.btn-confirm-cancel {
  flex: 1;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 0.65rem;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.btn-confirm-cancel:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
}

.btn-confirm-ok {
  flex: 1;
  padding: 0.7rem;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.35);
  border-radius: 0.65rem;
  color: #f87171;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn-confirm-ok:hover {
  background: rgba(239, 68, 68, 0.28);
  border-color: rgba(239, 68, 68, 0.6);
  color: #fca5a5;
}
