:root {
  color-scheme: dark;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Animaciones */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 30px rgba(16, 185, 129, 0.5); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Inputs y formularios */
.input,
.field input,
.field textarea,
.field select {
  width: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
  border: 1px solid rgba(71, 85, 105, 0.6);
  color: #f8fafc;
  border-radius: 0.875rem;
  padding: 0.875rem 1.125rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9375rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.75rem;
  background-position: right 1rem center;
  background-size: 0.65rem;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23A5B4FC' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.4' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-color: rgba(15, 23, 42, 0.9);
  color-scheme: dark;
}

.field select:focus {
  background-color: rgba(15, 23, 42, 1);
}

.field select option,
.field select optgroup {
  background-color: rgba(15, 23, 42, 0.96);
  color: rgba(226, 232, 240, 0.96);
}

.field select option:hover,
.field select option:focus,
.field select option:checked {
  background-color: rgba(16, 185, 129, 0.25);
  color: rgba(16, 185, 129, 0.95);
}

.field select::-ms-expand {
  display: none;
}

.input:focus,
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15), 0 4px 12px rgba(16, 185, 129, 0.2);
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 0.95) 100%);
}

.input:hover,
.field input:hover,
.field textarea:hover,
.field select:hover {
  border-color: rgba(100, 116, 139, 0.7);
}

input[type="file"] {
  border-radius: 0.875rem;
  border: 1px solid rgba(71, 85, 105, 0.6);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85), rgba(30, 41, 59, 0.7));
  color: rgba(226, 232, 240, 0.92);
  padding: 0.4rem 0.5rem;
  cursor: pointer;
}

input[type="file"]::file-selector-button {
  margin-right: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 0.75rem;
  padding: 0.5rem 1rem;
  background: rgba(15, 23, 42, 0.85);
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.2s ease;
}

input[type="file"]::file-selector-button:hover {
  background: rgba(16, 185, 129, 0.2);
  border-color: rgba(16, 185, 129, 0.45);
  color: rgba(16, 185, 129, 0.95);
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.2);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  animation: fadeIn 0.4s ease-out;
}

.field label {
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(203, 213, 225, 0.92);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  transition: color 0.2s ease, transform 0.2s ease;
}

.field:focus-within label {
  color: rgba(16, 185, 129, 1);
  transform: translateY(-1px);
}

/* Navegación */
.nav-link {
  padding: 0.875rem 1.25rem;
  border-radius: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
}

.nav-link:hover,
.nav-link.active {
  background-color: rgba(16, 185, 129, 0.15);
  color: rgba(16, 185, 129, 1);
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.15);
}

.tab-trigger {
  padding: 0.55rem 1.35rem;
  border-radius: 0.875rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(30, 41, 59, 0.7) 100%);
  border: 1px solid rgba(71, 85, 105, 0.55);
  color: rgba(148, 163, 184, 0.92);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(2, 6, 23, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.tab-trigger::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(59, 130, 246, 0.08));
  opacity: 0;
  transition: opacity 0.25s ease;
}

.tab-trigger:hover {
  border-color: rgba(16, 185, 129, 0.55);
  color: rgba(226, 232, 240, 0.96);
  transform: translateY(-1px);
}

.tab-trigger:hover::after,
.tab-trigger.active::after {
  opacity: 1;
}

.tab-trigger.active {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.92), rgba(45, 212, 191, 0.75));
  color: rgba(15, 23, 42, 0.95);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
}

.tab-trigger:focus-visible {
  outline: 2px solid rgba(56, 189, 248, 0.7);
  outline-offset: 3px;
}

.tab-panel {
  animation: fadeIn 0.35s ease;
}

.tab-panel.hidden {
  animation: none;
}

/* Tarjetas */
.card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.7) 100%);
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1.5rem;
  padding: 1.75rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15), 0 4px 16px rgba(0, 0, 0, 0.3);
}

.card:hover::before {
  opacity: 1;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0.05) 100%);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: rgba(16, 185, 129, 1);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.1);
}

.badge:hover {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(16, 185, 129, 0.15) 100%);
  transform: scale(1.05);
}

/* Tablas */
.table-row {
  transition: all 0.2s ease;
}

.table-row:hover {
  background-color: rgba(30, 41, 59, 0.7);
  box-shadow: inset 4px 0 0 rgba(16, 185, 129, 0.6);
}

/* Botones */
button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

button.bg-emerald-500:hover:not(:disabled) {
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.4);
}

button:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* Logo animado */
.logo-circle {
  animation: pulse-glow 3s ease-in-out infinite;
  background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(5, 150, 105, 1) 100%);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
}

/* Gradientes de fondo */
.gradient-bg {
  background: linear-gradient(135deg, rgba(15, 23, 42, 1) 0%, rgba(30, 41, 59, 0.9) 50%, rgba(15, 23, 42, 1) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 10s ease infinite;
}

/* Efectos de cristal */
.glass-effect {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Separadores */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(71, 85, 105, 0.6), transparent);
  margin: 2rem 0;
}

/* Scrollbar personalizado */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(15, 23, 42, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.6), rgba(16, 185, 129, 0.8));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(16, 185, 129, 0.8), rgba(16, 185, 129, 1));
}

/* Animaciones de entrada */
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.slide-in {
  animation: slideIn 0.5s ease-out;
}

@keyframes scale-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-scale-in {
  animation: scale-in 0.3s ease-out;
}

/* Utilidades adicionales */
.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

.field-error {
  border-color: rgba(248, 113, 113, 0.9) !important;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.25) !important;
}

/* Form wizard */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.4s ease-out;
}

.step-progress {
  position: relative;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgba(51, 65, 85, 0.6);
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.step-progress__bar {
  position: absolute;
  inset: 0;
  width: 0;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.9), rgba(5, 150, 105, 0.9));
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
  transition: width 0.4s ease;
}

.step-indicators {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.step-indicator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(71, 85, 105, 0.4);
  color: rgba(148, 163, 184, 1);
  font-size: 0.875rem;
  flex: 1 1 200px;
  transition: all 0.3s ease;
}

.step-indicator.active {
  border-color: rgba(16, 185, 129, 0.6);
  color: rgba(226, 232, 240, 1);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.05));
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.step-indicator.completed {
  color: rgba(148, 163, 184, 0.9);
  border-color: rgba(16, 185, 129, 0.35);
}

.step-indicator__badge {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(16, 185, 129, 0.4);
}

.step-actions {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
}

@media (min-width: 640px) {
  .step-actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.field-hint {
  font-size: 0.75rem;
  color: rgba(148, 163, 184, 0.8);
}

.media-preview-single {
  margin-top: 0.75rem;
}

.media-preview-grid {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.75rem;
}

.media-preview-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(71, 85, 105, 0.6);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.4);
}

.media-preview-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.media-filename {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.85);
  border-top: 1px solid rgba(71, 85, 105, 0.4);
  background: rgba(15, 23, 42, 0.6);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.media-preview-remove {
  position: absolute;
  top: 0.45rem;
  right: 0.45rem;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  display: grid;
  place-items: center;
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: #f8fafc;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.media-preview-remove:hover {
  background: rgba(248, 113, 113, 0.9);
  border-color: rgba(248, 113, 113, 0.85);
}

.badge-indicator {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: rgba(148, 163, 184, 0.85);
}

.badge-indicator.required {
  border-color: rgba(16, 185, 129, 0.45);
  color: rgba(16, 185, 129, 0.95);
  background: rgba(16, 185, 129, 0.12);
}

.badge-indicator.optional {
  border-color: rgba(148, 163, 184, 0.25);
  color: rgba(148, 163, 184, 0.8);
  background: rgba(15, 23, 42, 0.5);
}

.toggle-group {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.toggle-option {
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(71, 85, 105, 0.6);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.65));
  color: rgba(226, 232, 240, 0.95);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.toggle-option.active,
.toggle-option:hover {
  border-color: rgba(16, 185, 129, 0.55);
  box-shadow: 0 8px 28px rgba(16, 185, 129, 0.2);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(16, 185, 129, 0.1));
  color: rgba(16, 185, 129, 0.95);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.75rem;
}

.chip-option,
.chip {
  border-radius: 9999px;
  padding: 0.55rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(71, 85, 105, 0.55);
  color: rgba(203, 213, 225, 0.9);
  cursor: pointer;
  transition: all 0.25s ease;
}

.chip-option:hover,
.chip-option.active {
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(16, 185, 129, 0.5);
  color: rgba(16, 185, 129, 0.95);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.18);
}

.chip.mini {
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  cursor: default;
}

.chip--success {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.45);
  color: rgba(16, 185, 129, 0.95);
}

.chip--warning {
  background: rgba(234, 179, 8, 0.18);
  border-color: rgba(250, 204, 21, 0.45);
  color: rgba(250, 204, 21, 0.9);
}

.chip--muted {
  background: rgba(148, 163, 184, 0.16);
  border-color: rgba(148, 163, 184, 0.35);
  color: rgba(226, 232, 240, 0.85);
}

.chip-option--primary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18), rgba(16, 185, 129, 0.08));
  border-color: rgba(16, 185, 129, 0.5);
  color: rgba(16, 185, 129, 0.95);
}

.chip-option--primary:hover {
  box-shadow: 0 12px 34px rgba(16, 185, 129, 0.25);
}

.chip-option--danger {
  background: rgba(248, 113, 113, 0.16);
  border-color: rgba(248, 113, 113, 0.45);
  color: rgba(248, 113, 113, 0.92);
}

.chip-option--danger:hover {
  box-shadow: 0 12px 34px rgba(248, 113, 113, 0.28);
}

.business-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.7));
  border: 1px solid rgba(71, 85, 105, 0.5);
  border-radius: 1.75rem;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.business-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
  transform: translateY(-6px);
}

.business-card__media {
  position: relative;
  width: 100%;
  padding-top: 52%;
  overflow: hidden;
  border-radius: 1.5rem 1.5rem 0 0;
}

.business-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.business-card__media-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.4), rgba(15, 23, 42, 0.9));
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.92);
}

.business-card__body {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.business-card__header {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.business-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: rgba(148, 163, 184, 0.85);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.business-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.business-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.business-card__contact {
  font-size: 0.8rem;
  color: rgba(203, 213, 225, 0.88);
  display: grid;
  gap: 0.35rem;
}

.business-card__tagline {
  color: rgba(148, 163, 184, 0.9);
  font-size: 0.9rem;
}

.rt-dialog {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease;
}

.rt-dialog--visible {
  opacity: 1;
  pointer-events: auto;
}

.rt-dialog--closing {
  opacity: 0;
  pointer-events: none;
}

.rt-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 23, 0.85);
  backdrop-filter: blur(14px);
}

.rt-dialog__card {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 24rem;
  width: 100%;
  padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(30, 41, 59, 0.82));
  border: 1px solid rgba(71, 85, 105, 0.55);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: translateY(12px);
  transition: transform 0.22s ease;
}

.rt-dialog--visible .rt-dialog__card {
  transform: translateY(0);
}

.rt-dialog__icon {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 1rem;
  display: grid;
  place-items: center;
  font-size: 1.65rem;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: rgba(16, 185, 129, 0.95);
}

.rt-dialog__card--error .rt-dialog__icon,
.rt-dialog__card--warning .rt-dialog__icon {
  background: rgba(248, 113, 113, 0.12);
  border-color: rgba(248, 113, 113, 0.35);
  color: rgba(248, 113, 113, 0.92);
}

.rt-dialog__card--warning .rt-dialog__icon {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.35);
  color: rgba(250, 204, 21, 0.92);
}

.rt-dialog__content {
  display: grid;
  gap: 0.5rem;
}

.rt-dialog__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: rgba(241, 245, 249, 0.96);
}

.rt-dialog__message {
  font-size: 0.95rem;
  color: rgba(203, 213, 225, 0.9);
}

.rt-dialog__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
}

.rt-dialog__button {
  border-radius: 0.875rem;
  padding: 0.65rem 1.35rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.rt-dialog__button--primary {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.28), rgba(16, 185, 129, 0.16));
  border-color: rgba(16, 185, 129, 0.45);
  color: rgba(16, 185, 129, 0.95);
}

.rt-dialog__button--primary:hover {
  box-shadow: 0 12px 36px rgba(16, 185, 129, 0.25);
}

.rt-dialog__button--ghost {
  background: rgba(15, 23, 42, 0.65);
  border-color: rgba(71, 85, 105, 0.6);
  color: rgba(226, 232, 240, 0.85);
}

.rt-dialog__button--ghost:hover {
  border-color: rgba(226, 232, 240, 0.65);
  color: rgba(226, 232, 240, 0.95);
}

@media (min-width: 768px) {
  .business-card {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .business-card__media {
    padding-top: 0;
    height: 100%;
    border-radius: 1.5rem 0 0 1.5rem;
  }
}
