/* ============================================
   BRASERÍA ALVES - ESTILOS PRINCIPALES
   ============================================ */

/* Tailwind Custom Configuration */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap");

/* Custom Colors & Variables */
:root {
  --color-cream: #faf7f2;
  --color-warm-white: #fffbf5;
  --color-charcoal: #1a1a1a;
  --color-amber-400: #fbbf24;
  --color-amber-700: #b45309;
  --color-amber-800: #92400e;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--color-charcoal);
  overflow-x: hidden;
}

/* Custom Background Colors */
.bg-cream {
  background-color: var(--color-cream);
}

.bg-warm-white {
  background-color: var(--color-warm-white);
}

.bg-charcoal {
  background-color: var(--color-charcoal);
}

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

/* Typography */
.font-display {
  font-family: "Playfair Display", serif;
}

/* ============================================
   NAVIGATION STYLES
   ============================================ */

#header {
  background: transparent;
}

#header.scrolled {
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.nav-link {
  position: relative;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fbbf24;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #fbbf24;
}

.nav-link:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
}

#mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

#mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(10px);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 500px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn-primary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: #92400e;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary:hover {
  background: #b45309;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(146, 64, 14, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: transparent;
  color: white;
  font-weight: 600;
  border-radius: 0.5rem;
  border: 2px solid white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: white;
  color: var(--color-charcoal);
  transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease forwards;
}

.animate-fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

/* ============================================
   MENU TABS
   ============================================ */

.menu-tab {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid #d4d4d4;
  border-radius: 9999px;
  font-weight: 500;
  color: #525252;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover {
  border-color: #b45309;
  color: #b45309;
}

.menu-tab.active {
  background: #92400e;
  border-color: #92400e;
  color: white;
}

/* Menu Items */
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e5e5e5;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

.menu-item:last-child {
  border-bottom: none;
}

.menu-item-info {
  flex: 1;
  padding-right: 1rem;
}

.menu-item-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-charcoal);
  margin-bottom: 0.25rem;
}

.menu-item-description {
  color: #6b7280;
  font-size: 0.95rem;
}

.menu-item-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.menu-tag {
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  background: #fef3c7;
  color: #92400e;
  border-radius: 0.25rem;
  font-weight: 500;
}

.menu-item-price {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #92400e;
  white-space: nowrap;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  cursor: pointer;
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* ============================================
   FORM STYLES
   ============================================ */

.form-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-input:focus {
  outline: none;
  border-color: #fbbf24;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.1);
}

.form-input option {
  background: var(--color-charcoal);
  color: white;
}

/* ============================================
   WIZARD DE RESERVAS - Nuevo sistema moderno
   ============================================ */

.reservation-wizard {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.wizard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wizard-step-indicator {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.wizard-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #b45309, #fbbf24);
  width: 25%;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-content {
  padding: 1.5rem;
  min-height: 380px;
}

.wizard-step {
  display: none;
  animation: fadeInStep 0.3s ease;
}

.wizard-step.active {
  display: block;
}

@keyframes fadeInStep {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-step-title {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: white;
}

.wizard-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.wizard-input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  color: white;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.wizard-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.wizard-input:focus {
  outline: none;
  border-color: #fbbf24;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

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

/* Guest Grid */
.guest-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
}

.guest-btn {
  padding: 0.875rem 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  color: white;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.guest-btn:hover {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

.guest-btn.selected {
  background: #b45309;
  border-color: #b45309;
  color: white;
}

/* Phone Input */
.phone-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.phone-prefix {
  padding: 0.875rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.75rem;
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  min-width: 100px;
}

.phone-prefix option {
  background: #1a1a1a;
  color: white;
}

.phone-number {
  flex: 1;
}

/* Calendar Styles */
.calendar-container {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}

.calendar-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-nav:hover {
  background: rgba(255, 255, 255, 0.2);
}

.calendar-month-year {
  font-weight: 600;
  font-size: 1rem;
  color: white;
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.calendar-weekdays span {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  color: white;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
  background: rgba(255, 255, 255, 0.15);
}

.calendar-day.today {
  border: 2px solid #fbbf24;
}

.calendar-day.selected {
  background: #b45309;
  color: white;
  font-weight: 600;
}

.calendar-day.disabled {
  color: rgba(255, 255, 255, 0.2);
  cursor: not-allowed;
}

.calendar-day.other-month {
  color: rgba(255, 255, 255, 0.2);
}

.calendar-day.monday {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: line-through;
  cursor: not-allowed;
}

/* Time Period Tabs */
.time-period-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.25rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 0.75rem;
}

.time-period-tab {
  flex: 1;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.time-period-tab:hover {
  color: white;
}

.time-period-tab.active {
  background: #b45309;
  color: white;
}

/* Time Slots */
.time-slots-container {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.time-slots-container::-webkit-scrollbar {
  width: 4px;
}

.time-slots-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
}

.time-slots-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.time-slots {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.time-slots.hidden {
  display: none;
}

.time-slot {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.time-slot:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
}

.time-slot.selected {
  background: rgba(180, 83, 9, 0.3);
  border-color: #b45309;
  color: #fbbf24;
}

/* Confirmation Summary */
.confirmation-summary {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.summary-row:not(:last-child) {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.summary-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
}

.summary-value {
  font-weight: 600;
  color: white;
}

/* Checkbox */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}

.wizard-checkbox {
  display: none;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  margin-top: 2px;
}

.wizard-checkbox:checked+.checkbox-custom {
  background: #b45309;
  border-color: #b45309;
}

.wizard-checkbox:checked+.checkbox-custom::after {
  content: "";
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-bottom: 2px;
}

.checkbox-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Navigation Buttons */
.wizard-navigation {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
}

.wizard-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.wizard-btn-back {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.wizard-btn-back:hover {
  background: rgba(255, 255, 255, 0.15);
}

.wizard-btn-next {
  background: #b45309;
  color: white;
  margin-left: auto;
}

.wizard-btn-next:hover {
  background: #92400e;
  transform: translateY(-1px);
}

.wizard-btn-confirm {
  background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
  color: white;
  margin-left: auto;
  padding: 0.875rem 2rem;
}

.wizard-btn-confirm:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(180, 83, 9, 0.3);
}

.wizard-btn.hidden {
  display: none;
}

/* ============================================
   SPECIALTY CARDS
   ============================================ */

.specialty-card {
  text-align: center;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #92400e;
  color: white;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #b45309;
  transform: translateY(-3px);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 100;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

/* ============================================
   MODAL
   ============================================ */

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.active .modal-content {
  transform: scale(1);
}

/* ============================================
   TOAST NOTIFICATIONS - Nueva notificación elegante
   ============================================ */

.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
  max-width: 420px;
  pointer-events: auto;
  transform: translateX(120%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
}

.toast.hide {
  transform: translateX(120%);
  opacity: 0;
}

.toast-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toast-icon.success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}

.toast-icon.error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}

.toast-icon.warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}

.toast-content {
  flex: 1;
  padding-top: 2px;
}

.toast-title {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 4px;
}

.toast-message {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.5;
}

.toast-close {
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.toast-close:hover {
  background: #f3f4f6;
  color: #374151;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  animation: toastProgress 5s linear forwards;
}

.toast-progress.success {
  background: linear-gradient(90deg, #10b981, #059669);
}

.toast-progress.error {
  background: linear-gradient(90deg, #ef4444, #dc2626);
}

.toast-progress.warning {
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

@keyframes toastProgress {
  from {
    width: 100%;
  }

  to {
    width: 0%;
  }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
  .menu-item {
    flex-direction: column;
    gap: 0.5rem;
  }

  .menu-item-price {
    align-self: flex-start;
  }

  .gallery-item.col-span-2 {
    grid-column: span 2;
  }

  .gallery-item.row-span-2 {
    grid-row: span 1;
  }
}

@media (max-width: 640px) {

  .gallery-item.col-span-2,
  .gallery-item.row-span-2 {
    grid-column: span 1;
    grid-row: span 1;
  }

  /* Responsive para wizard */
  .guest-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .summary-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .wizard-navigation {
    flex-direction: column;
  }

  .wizard-btn {
    width: 100%;
    justify-content: center;
  }

  .wizard-btn-back {
    order: 2;
  }

  .wizard-btn-next,
  .wizard-btn-confirm {
    order: 1;
    margin-left: 0;
  }

  .toast-container {
    top: auto;
    bottom: 24px;
    left: 16px;
    right: 16px;
  }

  .toast {
    max-width: 100%;
  }
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

.no-js .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Variaciones de animación */
.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-left.active,
.reveal-right.active {
  transform: translateX(0);
}

/* Estilos para el Video de Fondo */
video {
  filter: brightness(0.7) contrast(1.1);
}

/* ============================================
   LOADING STATE
   ============================================ */

.loading {
  display: flex;
  justify-content: center;
  padding: 2rem;
}

.loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid #e5e5e5;
  border-top-color: #92400e;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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