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

:root {
  --wg-render: true;
  --ink: #0e0e12;
  --mist: #f4f2ee;
  --warm: #e8e4dc;
  --gold: #c9a96e;
  --dim: #302c2a;
  --glass-border: rgba(255, 255, 255, 0.45);
  --glass-bg: rgba(255, 255, 255, 0.185);
  --glass-bg-strong: rgba(255, 255, 255, 0.726);
  --glass-blur: blur(20px);
  --glass-shadow: 0 2px 5px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  --glass-shadow-hover: 0 5px 10px rgba(0, 0, 0, 0.13), inset 0 1px 0 rgba(255, 255, 255, 0.6);
  --glass-shadow-active: 0 4px 16px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.45);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;
  --transition-fast: 0.15s ease;
  --transition-smooth: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--mist);
  color: var(--ink);
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── UTILITY: GLASS BASE ── */


.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* ── TYPOGRAPHY HELPERS ── */
.mono {
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.05em;
}

.serif {
  font-family: 'DM Serif Display', serif;
  letter-spacing: -0.02em;
}

.text-dim {
  color: var(--dim);
}

.text-gold {
  color: var(--gold);
}

.text-ink {
  color: var(--ink);
}

/* ── SECTION WRAPPER ── */
.component-section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.component-section+.component-section {
  border-top: 1px solid rgba(14, 14, 18, 0.06);
}

.section-heading {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.02em;
  color: var(--ink);
}

.section-subheading {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.component-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 1.5rem;
}

.component-row.stacked {
  flex-direction: column;
  align-items: flex-start;
}

.component-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 0.75rem;
  display: block;
}

.component-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.component-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.component-grid.cols-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* ══════════════════════════════════════
              BUTTONS
           ══════════════════════════════════════ */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-full);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--transition-smooth);
  outline: none;
  position: relative;
  overflow: hidden;
  line-height: 1.2;
}

.btn:active {
  transform: scale(0.96);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  pointer-events: none;
  filter: grayscale(0.35);
  transform: none !important;
  box-shadow: none;
}

/* AI loading boxes (blobs difuminados) */
.ai-loading-box {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f8f6f1, #f2efe8);
  border: 1px solid #e2e2e2;
}

.ai-loading-box .ai-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.55;
  animation: aiBlobFloat 7s ease-in-out infinite;
}

.ai-loading-box .ai-blob-1 {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle at 30% 30%, #eedfba, #c9a96e);
  top: -35px;
  left: -35px;
}

.ai-loading-box .ai-blob-2 {
  width: 130px;
  height: 130px;
  background: radial-gradient(circle at 70% 70%, #bfe0cd, #7fae93);
  bottom: -30px;
  right: -30px;
  animation-delay: -2.3s;
}

.ai-loading-box .ai-blob-3 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle at 50% 50%, #d8d7f3, #8f8fc9);
  top: 52%;
  left: 60%;
  animation-delay: -4.6s;
}

@keyframes aiBlobFloat {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  25% {
    transform: translate(20px, -24px) scale(1.12);
  }

  50% {
    transform: translate(-16px, 16px) scale(0.9);
  }

  75% {
    transform: translate(12px, 20px) scale(1.06);
  }
}

/* AI chat de secciones (historial y burbujas de conversación) */
.ai-page-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.45));
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.ai-page-head {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.ai-page-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink, #0e0e12);
}

.ai-page-hint {
  font-size: 12px;
  color: #6b7280;
  margin: 6px 0 10px;
  line-height: 1.5;
}

.ai-page-result {
  max-height: 220px;
  overflow-y: auto;
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ai-page-msg {
  display: flex;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
  line-height: 1.55;
  border: 1px solid transparent;
}

.ai-page-msg-user {
  background: #eef2ff;
  color: #1e293b;
  border-color: #dbe3ff;
  align-self: flex-start;
  max-width: 92%;
  min-height: 4rem;
  margin-left: 20%;
}

.ai-page-msg-ia {
  background: #f6f3ea;
  color: #3a3017;
  border: 1px solid #eed9a5;
  max-width: 80%;
}

.ai-page-msg-body {
  min-width: 0;
  word-break: break-word;
  white-space: pre-wrap;
}

.ai-page-msg-code {
  cursor: pointer;
  border: 1px dashed #d9bd7a;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  max-width: 80%;
  min-height: 4rem;
}

.ai-page-msg-code:hover,
.ai-page-msg-code:focus {
  border-color: #c9a96e;
  border-style: solid;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  outline: none;
}

.ai-page-msg-code pre {
  margin: 0;
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 11.5px;
  line-height: 1.5;
  max-height: 200px;
}

.ai-page-input-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.ai-page-input {
  flex: 1;
}

.ai-page-loading {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  font-size: 13px;
  color: #7c5a12;
}

.ai-page-loading .ai-blob {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c9a227;
  display: inline-block;
  animation: aiPulse 1.2s ease-in-out infinite;
}

.ai-page-loading .ai-blob-2 {
  animation-delay: 0.2s;
}

.ai-page-loading .ai-blob-3 {
  animation-delay: 0.4s;
}

@keyframes aiPulse {

  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.ai-engine-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #7c5a12;
  background: #fdf3d7;
  border: 1px solid #eed9a5;
  border-radius: 999px;
  padding: 3px 10px;
}

.ai-engine-badge .ai-engine-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c9a227;
  flex-shrink: 0;
}

.ai-engine-badge .ai-engine-label {
  color: #8a6d1f;
}

.ai-engine-badge .ai-engine-value {
  color: #6b4f0e;
  font-weight: 700;
}

.ai-loading-text {
  position: relative;
  z-index: 1;
  font-size: 13px;
  font-weight: 600;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.ai-loading-text::before {
  content: '';
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(201, 169, 110, 0.35);
  border-top-color: #b8944a;
  animation: aiSpin 0.8s linear infinite;
}

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

/* Primary */
.btn-primary {
  background: var(--ink);
  color: var(--mist);
  border: 2px solid var(--ink);

}

.btn-primary:hover {
  background: #23232b;
  border-color: #08080a;
}

.btn-primary:active {
  background: #000;
}

/* Secondary */
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid rgba(14, 14, 18, 0.2);
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: rgba(14, 14, 18, 0.03);
}

/* Glass button */
.btn-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  box-shadow: var(--glass-shadow);
}

.btn-glass:hover {
  background: var(--glass-bg-strong);
}

.btn-glass:active {
  transform: scale(0.97);
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid transparent;
}

.btn-ghost:hover {
  background: rgba(14, 14, 18, 0.05);
  border-color: rgba(14, 14, 18, 0.08);
}

/* Gold / Accent */
.btn-gold {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
}

.btn-gold:hover {
  background: #b8945a;
  border-color: #b8945a;
}

/* Danger */
.btn-danger {
  background: #e05555;
  color: #fff;
  border: 2px solid #e05555;
}

.btn-danger:hover {
  background: #c94a4a;
  border-color: #c94a4a;
}

/* Sizes */
.btn-sm {
  padding: 7px 14px;
  font-size: 12px;
  gap: 5px;
  border-radius: var(--radius-full);
}

.btn-lg {
  padding: 15px 30px;
  font-size: 16px;
  gap: 10px;
  border-radius: var(--radius-full);
}

.btn-xl {
  padding: 18px 38px;
  font-size: 18px;
  gap: 12px;
  border-radius: var(--radius-full);
}

/* Icon button */
.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 50%;
  aspect-ratio: 1;
}

.btn-icon.btn-sm {
  width: 32px;
  height: 32px;
}

.btn-icon.btn-lg {
  width: 52px;
  height: 52px;
}

.field-group {
  display: flex;
  flex-direction: column;
}

/* Button group */
.btn-group {
  display: inline-flex;
  border-radius: var(--radius-full);
  overflow: hidden;
  border: 1px solid rgba(14, 14, 18, 0.12);
}

.btn-group .btn {
  border-radius: 0;
  border: none;
  border-right: 1px solid rgba(14, 14, 18, 0.08);
}

.btn-group .btn:last-child {
  border-right: none;
}



/* ══════════════════════════════════════
              INPUTS
           ══════════════════════════════════════ */
.input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 14, 18, 0.15);
  background: rgba(255, 255, 255, 0.5);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: all var(--transition-smooth);
  outline: none;
  line-height: 1.4;
}

.input::placeholder {
  color: var(--dim);
  opacity: 0.6;
}

.input:hover {
  border-color: rgba(14, 14, 18, 0.3);
  background: rgba(255, 255, 255, 0.7);
}

.input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
  background: #fff;
}

.input:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: rgba(14, 14, 18, 0.03);
}

.input.input-error {
  border-color: #e05555;
  box-shadow: 0 0 0 4px rgba(224, 85, 85, 0.08);
}

.input.input-success {
  border-color: #28c840;
  box-shadow: 0 0 0 4px rgba(40, 200, 64, 0.08);
}

/* Glass input */
.input-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.input-glass:focus {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: var(--glass-shadow-hover), 0 0 0 4px rgba(201, 169, 110, 0.08);
}

/* Input sizes */
.input-sm {
  padding: 8px 12px;
  font-size: 12px;
  border-radius: var(--radius-sm);
}

.input-lg {
  padding: 16px 20px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

/* Input with icon */
.input-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  max-width: 360px;
  width: 100%;
}

.input-wrap .input {
  width: 100%;
  max-width: 100%;
}

.input-wrap .input-icon-left {
  position: absolute;
  left: 14px;
  pointer-events: none;
  color: var(--dim);
  font-size: 16px;
  z-index: 1;
}

.input-wrap .input-icon-right {
  position: absolute;
  right: 14px;
  pointer-events: none;
  color: var(--dim);
  font-size: 16px;
  z-index: 1;
}

.input-wrap .input.has-icon-left {
  padding-left: 42px;
}

.input-wrap .input.has-icon-right {
  padding-right: 42px;
}

.input-wrap .btn-icon-right {
  position: absolute;
  right: 14px;
  z-index: 1;
  display: flex;

}

/* ── TEXTAREA ── */
.textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 14, 18, 0.15);
  background: rgba(255, 255, 255, 0.5);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  transition: all var(--transition-smooth);
  outline: none;
  resize: vertical;
  min-height: 100px;
  line-height: 1.6;
}

.textarea::placeholder {
  color: var(--dim);
  opacity: 0.6;
}

.textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
  background: #fff;
}

.textarea-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.textarea-glass:focus {
  background: var(--glass-bg-strong);
  box-shadow: var(--glass-shadow-hover), 0 0 0 4px rgba(201, 169, 110, 0.08);
}

/* ── SELECT ── */
.select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--dim);
  font-size: 12px;
  transition: transform var(--transition-fast);
}

.select-wrap select {
  width: 100%;
  padding: 12px 40px 12px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(14, 14, 18, 0.15);
  background: rgba(255, 255, 255, 0.5);
  font-family: 'Instrument Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: all var(--transition-smooth);
  line-height: 1.4;
}

.select-wrap select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
  background: #fff;
}

.select-glass select {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.select-glass select:focus {
  background: var(--glass-bg-strong);
}

/* ── CHECKBOX & RADIO ── */
.check-radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-label,
.radio-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--ink);
  user-select: none;
  position: relative;
  padding-left: 4px;
}

.check-label input,
.radio-label input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(14, 14, 18, 0.25);
  border-radius: 5px;
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
}

.check-label input:hover,
.radio-label input:hover {
  border-color: var(--gold);
}

.check-label input:checked {
  background: var(--ink);
  border-color: var(--ink);
}

.check-label input:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.radio-label input {
  border-radius: 50%;
}

.radio-label input:checked {
  background: #fff;
  border-color: var(--ink);
  box-shadow: inset 0 0 0 5px var(--ink);
}

.check-label input:focus-visible,
.radio-label input:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.35);
  border-color: var(--gold);
}

/* ── TOGGLE SWITCH ── */
.toggle-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: var(--ink);
}

.toggle-switch input {
  appearance: none;
  -webkit-appearance: none;
  width: 44px;
  height: 26px;
  background: rgba(14, 14, 18, 0.18);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition-smooth);
  position: relative;
  flex-shrink: 0;
}

.toggle-switch input::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-bounce);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.toggle-switch input:checked {
  background: var(--ink);
}

.toggle-switch input:checked::after {
  transform: translateX(18px);
}

.toggle-switch input:focus-visible {
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.35);
}

/* ══════════════════════════════════════
              CARDS
           ══════════════════════════════════════ */
.card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.card-default {
  background: #fff;
  border: 1px solid rgba(14, 14, 18, 0.06);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

/* .card-default:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
} */

.card-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* 
.card-glass:hover {
  box-shadow: var(--glass-shadow-hover);
  transform: translateY(-3px);
} */

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.card-subtitle {
  font-size: 13px;
  color: var(--dim);
  font-weight: 300;
  line-height: 1.5;
}

/* Card with image + text below */
.card-media {
  display: flex;
  flex-direction: column;
}

.card-media .card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #c8d8f0, #f0d0b8);
}

.card-media .card-body {
  flex: 1;
}

/* Card with image + text overlay at bottom */
.card-overlay {
  position: relative;
  display: flex;
  flex-direction: column;
}

.card-overlay .card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #7eb8f5, #b87ef5);
}

.card-overlay .card-body-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: #fff;
}

.card-overlay .card-title {
  color: #fff;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.3);
}

.card-overlay .card-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

.card-tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.6rem;
}

.card-tag.glass-tag {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.85);
}

.card-tag.default-tag {
  background: rgba(14, 14, 18, 0.06);
  color: var(--dim);
}

.card-actions {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
              ASIDE / SIDEBAR
           ══════════════════════════════════════ */
.aside-demo-wrap {
  display: flex;
  gap: 2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(14, 14, 18, 0.06);
  background: #fff;
  max-width: 800px;
  min-height: 420px;
}

.aside {
  width: 240px;
  flex-shrink: 0;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-right: 1px solid rgba(14, 14, 18, 0.06);
}

.aside-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-right: 1px solid var(--glass-border);
}

.aside-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0.5rem 0.75rem 1.25rem;
}

.aside-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 14px;
  font-weight: 400;
  color: var(--dim);
  transition: all var(--transition-fast);
  text-decoration: none;
  user-select: none;
  position: relative;
}

.aside-item:hover {
  background: rgba(14, 14, 18, 0.04);
  color: var(--ink);
}

.aside-item.active {
  background: rgba(14, 14, 18, 0.07);
  color: var(--ink);
  font-weight: 500;
}

.aside-item .aside-icon {
  font-size: 18px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.aside-item .aside-badge {
  margin-left: auto;
  padding: 2px 8px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  background: rgba(14, 14, 18, 0.08);
  color: var(--dim);
}

.aside-item.active .aside-badge {
  background: var(--ink);
  color: var(--mist);
}

.aside-divider {
  height: 1px;
  background: rgba(14, 14, 18, 0.06);
  margin: 0.5rem 0.75rem;
}

.aside-section-label {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 0.75rem 0.75rem 0.25rem;
  opacity: 0.6;
}

/* ══════════════════════════════════════
              DROPDOWN
           ══════════════════════════════════════ */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid rgba(14, 14, 18, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  padding: 6px;
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition-smooth), transform var(--transition-smooth);
  pointer-events: none;
}

.dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.dropdown-glass .dropdown-menu {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-hover);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  transition: background var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-item:hover {
  background: rgba(14, 14, 18, 0.05);
}

.dropdown-item .dropdown-icon {
  font-size: 15px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.dropdown-divider {
  height: 1px;
  background: rgba(14, 14, 18, 0.06);
  margin: 4px 0;
}

.dropdown-trigger {
  cursor: pointer;
  user-select: none;
}

/* ══════════════════════════════════════
              TABLE
           ══════════════════════════════════════ */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(14, 14, 18, 0.06);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

table th {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim);
  padding: 14px 18px;
  text-align: left;
  background: rgba(14, 14, 18, 0.02);
  border-bottom: 1px solid rgba(14, 14, 18, 0.06);
  font-weight: 400;
}

table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(14, 14, 18, 0.04);
  color: var(--ink);
}

table tbody tr {
  transition: background var(--transition-fast);
}

table tbody tr:hover {
  background: rgba(14, 14, 18, 0.02);
}

table tbody tr:last-child td {
  border-bottom: none;
}

.table-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
}

.table-badge.success {
  background: rgba(40, 200, 64, 0.1);
  color: #1a8a2e;
}

.table-badge.warn {
  background: rgba(254, 188, 46, 0.12);
  color: #b07a10;
}

.table-badge.neutral {
  background: rgba(14, 14, 18, 0.06);
  color: var(--dim);
}

/* ══════════════════════════════════════
              BADGES & TAGS
           ══════════════════════════════════════ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 11px;
  border-radius: 100px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 400;
}

.badge-ink {
  background: var(--ink);
  color: var(--mist);
}

.badge-gold {
  background: var(--gold);
  color: #fff;
}

.badge-outline {
  background: transparent;
  border: 1px solid rgba(14, 14, 18, 0.2);
  color: var(--dim);
}

.badge-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--ink);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.badge-dot.green {
  background: #28c840;
}

.badge-dot.amber {
  background: #febc2e;
}

.badge-dot.red {
  background: #e05555;
}

/* ══════════════════════════════════════
              AVATAR
           ══════════════════════════════════════ */
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  user-select: none;
}

.avatar-sm {
  width: 28px;
  height: 28px;
  font-size: 10px;
}

.avatar-lg {
  width: 56px;
  height: 56px;
  font-size: 20px;
}

.avatar-xl {
  width: 80px;
  height: 80px;
  font-size: 28px;
}

.avatar-group {
  display: inline-flex;
}

.avatar-group .avatar {
  border: 2px solid #fff;
  margin-left: -10px;
}

.avatar-group .avatar:first-child {
  margin-left: 0;
}

/* ══════════════════════════════════════
              ALERT / NOTIFICATION
           ══════════════════════════════════════ */
.alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  backdrop-filter: var(--glass-blur);
  border-radius: var(--radius-md);
  font-size: 13px;
  line-height: 1.5;
  max-width: 500px;
}

.alert-info {
  background: rgba(168, 200, 240, 0.15);
  border: 1px solid rgba(168, 200, 240, 0.3);
  color: #3a5f8a;
}

.alert-success {
  background: rgba(40, 200, 64, 0.08);
  border: 1px solid rgba(40, 200, 64, 0.2);
  color: #1a6e2a;
}

.alert-warn,
.alert-warning {
  background: rgba(254, 188, 46, 0.1);
  border: 1px solid rgba(254, 188, 46, 0.25);
  color: #8a6210;
}

.alert-error {
  background: rgba(224, 85, 85, 0.08);
  border: 1px solid rgba(224, 85, 85, 0.2);
  color: #8a2a2a;
}

.alert-glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  color: var(--ink);
}

.alert-icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.alert-close {
  margin-left: auto;
  cursor: pointer;
  opacity: 0.4;
  transition: opacity var(--transition-fast);
  background: none;
  border: none;
  font-size: 16px;
  color: inherit;
  padding: 0;
  line-height: 1;
}

.alert-close:hover {
  opacity: 0.8;
}

/* ══════════════════════════════════════
              TOOLTIP
           ══════════════════════════════════════ */
.tooltip-wrap {
  position: relative;
  display: inline-block;
}

.tooltip-content {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--mist);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition-smooth);
  z-index: 60;
}

.tooltip-content::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}

.tooltip-wrap:hover .tooltip-content {
  opacity: 1;
}

/* ══════════════════════════════════════
              PROGRESS BAR
           ══════════════════════════════════════ */
.progress-bar {
  width: 100%;
  max-width: 400px;
  height: 6px;
  background: rgba(14, 14, 18, 0.08);
  border-radius: 100px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  border-radius: 100px;
  background: var(--ink);
  transition: width var(--transition-smooth);
}

.progress-fill.gold {
  background: var(--gold);
}

.progress-fill.gradient {
  background: linear-gradient(90deg, #7eb8f5, #b87ef5);
}

/* ══════════════════════════════════════
              TABS
           ══════════════════════════════════════ */
.tabs {
  display: inline-flex;
  gap: 2px;
  background: rgba(14, 14, 18, 0.04);
  border-radius: var(--radius-full);
  padding: 4px;
}

.tab-item {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  transition: all var(--transition-smooth);
  color: var(--dim);
  white-space: nowrap;
  user-select: none;
  border: none;
  background: transparent;
  font-family: 'Instrument Sans', sans-serif;
}

.tab-item:hover {
  color: var(--ink);
}

.tab-item.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  font-weight: 500;
}

/* ══════════════════════════════════════
              BREADCRUMBS
           ══════════════════════════════════════ */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  flex-wrap: wrap;
}

.breadcrumb-item {
  color: var(--dim);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.breadcrumb-item:hover {
  color: var(--ink);
}

.breadcrumb-item.current {
  color: var(--ink);
  font-weight: 500;
}

.breadcrumb-sep {
  color: rgba(14, 14, 18, 0.2);
  font-size: 10px;
}

/* ══════════════════════════════════════
              PAGINATION
           ══════════════════════════════════════ */
.pagination {
  display: inline-flex;
  gap: 4px;
}

.page-item {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--dim);
  border: 1px solid transparent;
  background: transparent;
  font-family: 'Instrument Sans', sans-serif;
  user-select: none;
}

.page-item:hover {
  background: rgba(14, 14, 18, 0.05);
  color: var(--ink);
}

.page-item.active {
  background: var(--ink);
  color: var(--mist);
  border-color: var(--ink);
}

.page-item.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ══════════════════════════════════════
              DIVIDER
           ══════════════════════════════════════ */
.divider {
  height: 1px;
  background: rgba(14, 14, 18, 0.08);
  width: 100%;
  margin: 0.5rem 0;
}

.divider-vertical {
  width: 1px;
  height: auto;
  min-height: 24px;
  background: rgba(14, 14, 18, 0.08);
  align-self: stretch;
}

/* ══════════════════════════════════════
              MODAL / DIALOG (inline demo)
           ══════════════════════════════════════ */
.modal-demo {
  border-radius: var(--radius-xl);
  padding: 2rem;
  max-width: 440px;
  text-align: center;
}

.modal-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.modal-body {
  font-size: 14px;
  color: var(--dim);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════
              SKELETON LOADING
           ══════════════════════════════════════ */
.skeleton {
  background: linear-gradient(90deg,
      rgba(14, 14, 18, 0.04) 25%,
      rgba(14, 14, 18, 0.08) 50%,
      rgba(14, 14, 18, 0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

.skeleton-text {
  height: 14px;
  width: 100%;
  margin-bottom: 8px;
}

.skeleton-text.short {
  width: 60%;
}

.skeleton-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.skeleton-card {
  height: 180px;
  border-radius: var(--radius-lg);
}

/* ══════════════════════════════════════
              SPINNER
           ══════════════════════════════════════ */
.spinner {
  width: 24px;
  height: 24px;
  border: 3px solid rgba(14, 14, 18, 0.1);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

.spinner-sm {
  width: 16px;
  height: 16px;
  border-width: 2px;
}

.spinner-lg {
  width: 40px;
  height: 40px;
  border-width: 4px;
}

.spinner-gold {
  border-top-color: var(--gold);
}

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

/* ══════════════════════════════════════
              DRAG HANDLE / KNOB
           ══════════════════════════════════════ */
.drag-knob {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: grab;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  user-select: none;
  transition: all var(--transition-smooth);
}

.drag-knob:active {
  cursor: grabbing;
  transform: scale(1.1);
}

/* ══════════════════════════════════════
              RESPONSIVE TWEAKS
           ══════════════════════════════════════ */
@media (max-width: 768px) {
  .component-section {
    padding: 2.5rem 1rem;
  }

  .aside-demo-wrap {
    flex-direction: column;
  }

  .aside {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px;
    padding: 0.75rem;
    border-right: none;
    border-bottom: 1px solid rgba(14, 14, 18, 0.06);
  }

  .aside-logo {
    padding: 0.25rem 0.5rem 0.25rem;
    width: 100%;
  }

  .aside-item {
    font-size: 12px;
    padding: 8px 10px;
  }



  .aside-divider {
    display: none;
  }

  .component-row {
    gap: 10px;
  }
}

/* Glass outline ring */
.glass {
  box-shadow: inset 5px 5px 15px 0px rgba(255, 255, 255, 0.5), 0 2px 5px 0px rgba(0, 0, 0, 0.1);

}

/* ─── Menú móvil: apertura en gota de agua ─────────────────── */
.navbar-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  background: rgba(248, 250, 252, 0.72);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  clip-path: circle(0% at 50% 0%);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
  transition:
    clip-path 0.7s cubic-bezier(0.4, 0, 0.25, 1),
    opacity 0.3s ease,
    visibility 0s linear 0.7s;
}

.navbar-mobile-menu.navbarMenu2Open {
  clip-path: circle(150% at 50% 0%);
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition:
    clip-path 0.7s cubic-bezier(0.4, 0, 0.25, 1),
    opacity 0.3s ease 0.1s,
    visibility 0s;
}

@media (min-width: 768px) {
  .navbar-mobile-menu {
    display: none !important;
  }
}

/* Botón cerrar del menú móvil */
.navbar-menu-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 41;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  color: #334155;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
  transform: scale(0.7);
}

.navbar-menu-close .material-symbols-outlined {
  font-size: 26px;
}

.navbar-menu-close:hover {
  background: rgba(255, 255, 255, 0.85);
}

.navbar-mobile-menu.navbarMenu2Open .navbar-menu-close {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.navbarOpen {
  height: 100dvh !important;
}

/* dropdown flotantes */

/* Animaciones para el dropdown flotante */
@keyframes dropdownSlideIn {
  0% {
    opacity: 0;
    transform: scale(0.85) translateY(-8px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes dropdownSlideOut {
  0% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }

  100% {
    opacity: 0;
    transform: scale(0.85) translateY(-8px);
  }
}


.closing {
  animation: dropdownSlideOut 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}


.floating-dropdown-menu {
  background: rgba(255, 255, 255, 0.356);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-hover);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 160px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  animation: dropdownSlideIn 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: top right;
}

.notifications-menu {
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow-hover);
  border-radius: var(--radius-md);
  padding: 6px;
  min-width: 160px;
  z-index: 1000;
  opacity: 1;
  visibility: visible;
  animation: dropdownSlideIn 0.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: top right;
}

.floating-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  color: var(--ink);
  transition: background var(--transition-fast);
  white-space: nowrap;
}

.floating-dropdown-menu .dropdown-item:hover {
  background: rgba(14, 14, 18, 0.05);
}

.floating-dropdown-menu .dropdown-item .dropdown-icon {
  font-size: 18px;
}

@media (max-width: 767px) {
  .floating-dropdown-menu {
    max-width: calc(100vw - 40px);
    min-width: 140px;
  }
}




/* ═══════════════════════════════════════════════════════════════
   NAVBAR · Enlaces móviles unificados
   ═══════════════════════════════════════════════════════════════ */
.navbar-mobile-link {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(14, 14, 18, 0.06);
  color: var(--ink, #0e0e12);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  -webkit-tap-highlight-color: transparent;
  font-family: inherit;
}

.navbar-mobile-link:hover,
.navbar-mobile-link:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(201, 169, 110, 0.4);
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(201, 169, 110, 0.12);
  outline: none;
}

.navbar-mobile-link:active {
  transform: translateX(2px) scale(0.99);
}

.navbar-mobile-link-icon {
  font-size: 22px;
  color: #b8944a;
  flex-shrink: 0;
  transition: color .2s ease;
}

.navbar-mobile-link-arrow {
  font-size: 18px;
  color: rgba(14, 14, 18, 0.25);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}

.navbar-mobile-link:hover .navbar-mobile-link-arrow {
  color: rgba(14, 14, 18, 0.55);
  transform: translateX(2px);
}

/* Variante: enlace destacado (login / dashboard) — degradado dorado */
.navbar-mobile-link-primary {
  background: linear-gradient(135deg, #c9a96e 0%, #b8944a 60%, #a37730 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(184, 148, 74, 0.35);
}

.navbar-mobile-link-primary .navbar-mobile-link-icon,
.navbar-mobile-link-primary .navbar-mobile-link-arrow {
  color: rgba(255, 255, 255, 0.9);
}

.navbar-mobile-link-primary:hover {
  background: linear-gradient(135deg, #d4b47a 0%, #c19a55 60%, #a37730 100%);
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(184, 148, 74, 0.5);
}

.navbar-mobile-link-primary:hover .navbar-mobile-link-arrow {
  color: #fff;
}

/* Variante: enlace de peligro (logout) */
.navbar-mobile-link-danger {
  color: #dc2626;
}

.navbar-mobile-link-danger .navbar-mobile-link-icon {
  color: #dc2626;
}

.navbar-mobile-link-danger:hover {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.3);
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.12);
}

.navbar-mobile-link-danger:hover .navbar-mobile-link-arrow {
  color: rgba(220, 38, 38, 0.7);
}