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

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  background: #FAFAF7;
  color: #1C1C1C;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sora", sans-serif;
}

.page-container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  padding-inline: 1rem;
}

.page-container--padded {
  padding-block: 1.5rem;
}

@media (min-width: 640px) {
  .page-container {
    padding-inline: 1.5rem;
  }

  .page-container--padded {
    padding-block: 2rem;
  }
}

.page-container--narrow {
  max-width: 56rem;
}

.page-container--wide {
  max-width: 72rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #D5D0C8;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: #B0AAA0;
}

*:focus-visible {
  outline: 2px solid #C75C2A;
  outline-offset: 2px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  border-radius: 8px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
}
.btn:hover {
  opacity: 0.9;
}
.btn--primary {
  background: #1B3A2D;
  color: white;
}
.btn--primary:hover {
  background: #2D5A45;
}
.btn--secondary {
  background: transparent;
  color: #1B3A2D;
  border: 1px solid rgba(27, 58, 45, 0.2);
}
.btn--secondary:hover {
  background: rgba(27, 58, 45, 0.05);
}
.btn--ghost {
  background: transparent;
  color: #6B665C;
}
.btn--ghost:hover {
  background: #F0EDE7;
}
.btn--terra {
  background: #C75C2A;
  color: white;
}
.btn--terra:hover {
  background: #E8854F;
}
.btn--sm {
  font-size: 12px;
  padding: 6px 12px;
}
.btn--lg {
  font-size: 14px;
  padding: 10px 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 8px;
  letter-spacing: 0.02em;
}
.badge--presencial {
  background: #F0EDE7;
  color: #6B665C;
}
.badge--remoto {
  background: #F0FDF4;
  color: #166534;
}
.badge--hibrido {
  background: #EFF6FF;
  color: #1E40AF;
}
.badge--abierto {
  background: #F0FDF4;
  color: #166534;
}
.badge--proximo {
  background: #FFFBEB;
  color: #92400E;
}
.badge--fuente {
  background: #F0EDE7;
  color: #6B665C;
}

.job-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.job-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.job-card-inner {
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.job-card-inner:hover {
  border-left-color: #C75C2A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.job-card-inner.featured {
  border-left-color: #C75C2A;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F5 100%);
}

.company-logo {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: white;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 15px;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.card-tag {
  font-size: 11px;
  padding: 2px 8px;
  background: #FAFAF7;
  color: #6B665C;
  border-radius: 6px;
  border: 1px solid rgba(232, 228, 221, 0.5);
}

.card-salary {
  font-size: 14px;
  font-weight: 600;
  color: #1B3A2D;
}

.card-meta {
  font-size: 12px;
  color: #9C978C;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card-meta i {
  font-size: 10px;
}

.search-input {
  width: 100%;
  padding: 14px 16px 14px 44px;
  background: white;
  border: 1px solid #E8E4DD;
  border-radius: 16px;
  font-size: 14px;
  color: #1B3A2D;
  outline: none;
  transition: border-color 0.15s ease;
}
.search-input::placeholder {
  color: #9C978C;
}
.search-input:focus {
  border-color: #C75C2A;
}

.search-wrapper {
  position: relative;
}
.search-wrapper .search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9C978C;
}
.search-wrapper .search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9C978C;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  transition: color 0.15s ease;
}
.search-wrapper .search-clear:hover {
  color: #6B665C;
}

.location-select {
  width: 100%;
  padding: 14px 40px 14px 40px;
  background: white;
  border: 1px solid #E8E4DD;
  border-radius: 16px;
  font-size: 14px;
  color: #1B3A2D;
  outline: none;
  appearance: none;
  cursor: pointer;
  transition: border-color 0.15s ease;
}
.location-select:focus {
  border-color: #C75C2A;
}

.select-wrapper {
  position: relative;
}
.select-wrapper .select-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9C978C;
  font-size: 14px;
}
.select-wrapper .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9C978C;
  font-size: 10px;
  pointer-events: none;
}

.cat-scroll {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cat-scroll::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  transition: all 0.2s ease;
}
.cat-pill.active {
  background: #1B3A2D;
  color: white;
  border-color: #1B3A2D;
}

.custom-check {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D5D0C8;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  position: relative;
}
.custom-check:checked {
  background: #C75C2A;
  border-color: #C75C2A;
}
.custom-check:checked::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.custom-check:hover {
  border-color: #C75C2A;
}

.custom-radio {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #D5D0C8;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  position: relative;
}
.custom-radio:checked {
  border-color: #C75C2A;
}
.custom-radio:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 8px;
  height: 8px;
  background: #C75C2A;
  border-radius: 50%;
}
.custom-radio:hover {
  border-color: #C75C2A;
}

.filter-group {
  margin-bottom: 24px;
}
.filter-group:last-child {
  margin-bottom: 8px;
}

.filter-group-title {
  font-size: 14px;
  font-weight: 600;
  color: #1B3A2D;
  margin-bottom: 12px;
}

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
  color: #6B665C;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.filter-option:hover {
  color: #1B3A2D;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 500;
  color: #1B3A2D;
  background: #F5F2EC;
  border: 1px solid #E8E4DD;
  border-radius: 9999px;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.filter-chip:hover {
  background: #EDE9E1;
  border-color: #D5D0C8;
}
.filter-chip-remove {
  opacity: 0.6;
}

.mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1B3A2D;
  background: #fff;
  border: 1px solid #E8E4DD;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.mobile-filter-btn:hover {
  border-color: #1B3A2D;
}
.mobile-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  color: white;
  background: #C75C2A;
  border-radius: 9999px;
}

.fuente-page-header .page-container {
  padding-block: 2rem;
}

@media (min-width: 640px) {
  .fuente-page-header .page-container {
    padding-block: 2.5rem;
  }
}

.fuente-page-header__main {
  margin-top: 1.25rem;
}

.fuente-breadcrumb a {
  transition: color 0.15s ease;
}

.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.listing-toolbar__count {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.listing-toolbar__filters {
  flex-shrink: 0;
}

.sort-form {
  flex-shrink: 0;
  margin-left: auto;
}

.sort-form__wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.sort-form__select {
  appearance: none;
  padding: 8px 32px 8px 12px;
  font-size: 13px;
  color: #1B3A2D;
  background: #fff;
  border: 1px solid #E8E4DD;
  border-radius: 10px;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease;
}

.sort-form__select:hover,
.sort-form__select:focus {
  border-color: #C75C2A;
}

.sort-form__arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #9C978C;
  pointer-events: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-only {
  display: block;
}

button.mobile-only,
.mobile-filter-btn.mobile-only {
  display: inline-flex;
}

.sheet-overlay.mobile-only {
  display: block;
}

.desktop-only {
  display: none;
}

@media (min-width: 1024px) {
  .mobile-only {
    display: none !important;
  }

  .desktop-only {
    display: block;
  }
}

.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.sheet-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.sheet-panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.sheet-overlay.active .sheet-panel {
  transform: translateY(0);
}

.sheet-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E4DD;
}

.sheet-panel__body {
  overflow-y: auto;
  flex: 1;
  padding: 16px 20px;
}

.sheet-panel__footer {
  display: flex;
  gap: 12px;
  padding: 16px 20px;
  border-top: 1px solid #E8E4DD;
}

.sheet-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 9999px;
  background: transparent;
  color: #6B665C;
  cursor: pointer;
  transition: background 0.15s ease;
}

.sheet-close-btn:hover {
  background: #F0EDE7;
}

.filters-sidebar {
  width: 16rem;
  flex-shrink: 0;
}

.job-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.job-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.job-card-inner {
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.job-card-inner:hover {
  border-left-color: #C75C2A;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}
.job-card-inner.featured {
  border-left-color: #C75C2A;
  background: linear-gradient(135deg, #FFFFFF 0%, #FDF8F5 100%);
}

@keyframes heartPop {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.3);
  }
  60% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.heart-pop {
  animation: heartPop 0.35s ease-out;
}

.header {
  background: white;
  border-bottom: 1px solid #E8E4DD;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: "Sora", sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #1B3A2D;
}
.logo-accent {
  color: #C75C2A;
}

.nav-links {
  display: none;
  list-style: none;
  gap: 32px;
}
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 500;
  color: #6B665C;
  transition: color 0.15s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #C75C2A;
  transition: width 0.2s ease;
}
.nav-link:hover {
  color: #1B3A2D;
}
.nav-link:hover::after {
  width: 100%;
}

.user-menu {
  position: relative;
}

.user-menu__trigger {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  border: 0;
  border-radius: 0.75rem;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1B3A2D;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.user-menu__trigger:hover,
.user-menu.is-open .user-menu__trigger {
  background: #F0EDE7;
  color: #C75C2A;
}

.user-menu__panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 50;
  min-width: 13rem;
  padding: 0.375rem;
  border: 1px solid #E8E4DD;
  border-radius: 0.875rem;
  background: #fff;
  box-shadow: 0 12px 32px rgba(27, 58, 45, 0.12);
}

.user-menu__panel[hidden] {
  display: none;
}

.user-menu__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
  padding: 0.625rem 0.75rem;
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: #6B665C;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.user-menu__item:hover {
  background: #F0EDE7;
  color: #1B3A2D;
}

.user-menu__item--accent {
  color: #C75C2A;
}

.user-menu__item--accent:hover {
  color: #C75C2A;
}

.user-menu__item--button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}

.user-menu__item i {
  font-size: 1.125rem;
  line-height: 1;
}

.user-menu__divider {
  margin: 0.375rem 0;
  border-top: 1px solid #E8E4DD;
}

.user-menu__logout {
  margin: 0;
}

.dark .user-menu__trigger {
  color: var(--text-primary);
}

.dark .user-menu__trigger:hover,
.dark .user-menu.is-open .user-menu__trigger {
  background: rgba(255, 255, 255, 0.06);
  color: #E8854F;
}

.dark .user-menu__panel {
  background: #1a1a1a;
  border-color: var(--border);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.dark .user-menu__item {
  color: var(--text-secondary);
}

.dark .user-menu__item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-primary);
}

.dark .user-menu__divider {
  border-color: var(--border);
}

.footer {
  border-top: 1px solid #E8E4DD;
  background: white;
  margin-top: auto;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 14px;
  color: #6B665C;
}
.footer-links a {
  transition: color 0.15s ease;
}
.footer-links a:hover {
  color: #1B3A2D;
}

.footer-social {
  display: flex;
  gap: 16px;
  color: #9C978C;
}
.footer-social a {
  transition: color 0.15s ease;
}
.footer-social a:hover {
  color: #C75C2A;
}

.sidebar {
  display: none;
  width: 256px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .sidebar {
    display: block;
  }
}

.sidebar-sticky {
  position: sticky;
  top: 88px;
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.sidebar-title {
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1B3A2D;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sidebar-clear {
  font-size: 12px;
  color: #C75C2A;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.15s ease;
}
.sidebar-clear:hover {
  color: #E8854F;
}
.sidebar-clear.hidden {
  display: none;
}

:root {
  --bg-page: #FAFAF7;
  --bg-surface: #FFFFFF;
  --bg-hover: #F0F0F0;
  --bg-subtle: #F9FAFB;
  --border: #E8EAED;
  --border-strong: #D1D5DB;
  --text-primary: #0D0D0D;
  --text-secondary: #6B7280;
  --text-tertiary: #9CA3AF;
  --text-placeholder: #BDC1C6;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-light: rgba(59,130,246,0.15);
}

.dark {
  --bg-page: #0f0f0f;
  --bg-surface: #1a1a1a;
  --bg-hover: #262626;
  --bg-subtle: #1f1f1f;
  --border: #333333;
  --border-strong: #444444;
  --text-primary: #e5e5e5;
  --text-secondary: #a3a3a3;
  --text-tertiary: #737373;
  --text-placeholder: #525252;
  --accent: #3b82f6;
  --accent-hover: #2563eb;
  --accent-light: rgba(59,130,246,0.15);
}

.dark body {
  background: var(--bg-page);
  color: var(--text-primary);
}

.dark .bg-white {
  background: var(--bg-surface);
}

.dark .bg-cream {
  background: var(--bg-page);
}

.dark .border-sand {
  border-color: var(--border);
}

.dark .text-forest {
  color: var(--text-primary);
}

.dark .text-stone {
  color: var(--text-secondary);
}

.dark .text-stone-light {
  color: var(--text-tertiary);
}

.dark footer {
  background: #111111;
  border-color: var(--border);
}

.site-footer__inner {
  padding-top: 2.5rem;
  padding-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .site-footer__inner {
    padding-top: 3.5rem;
    padding-bottom: 2rem;
  }
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2.5rem 2rem;
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 3rem;
  }
}

.site-footer__col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-footer__col > :first-child {
  margin-top: 0;
}

.site-footer__heading {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9C978C;
  margin: 0;
}

.site-footer__text {
  margin: 0;
  max-width: 22rem;
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
}

.site-footer__legal {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-top: 1px solid #E8E4DD;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.6;
  color: #9C978C;
}

.site-footer__legal p {
  margin: 0;
  max-width: 36rem;
}

.dark .site-footer__heading,
.dark .site-footer__legal {
  color: var(--text-tertiary);
}

.dark .site-footer__legal {
  border-color: var(--border);
}

.dark nav {
  background: rgba(26, 26, 26, 0.95);
}

.dark .hero-pattern {
  background-image: radial-gradient(circle, #333 1px, transparent 1px);
}

.dark .card:hover {
  border-color: var(--border-strong);
}

.dark input, .dark select {
  background: var(--bg-page) !important;
  border-color: var(--border) !important;
  color: var(--text-primary) !important;
}

.dark .badge--abierto {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.3);
}

.dark .badge--proximo {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
  border-color: rgba(245, 158, 11, 0.3);
}

.dark .badge--fuente {
  background: var(--bg-hover);
  color: var(--text-secondary);
}

.dark .card-salary {
  background: rgba(16, 185, 129, 0.1);
  color: #34d399;
  border-color: rgba(16, 185, 129, 0.2);
}

.dark .badge--presencial {
  background: var(--bg-hover);
  color: var(--text-secondary);
}

.dark .badge--hibrido {
  background: rgba(59, 130, 246, 0.1);
  color: #60a5fa;
}

.dark a {
  color: inherit;
}

.hero-pattern {
  background-image: radial-gradient(circle, #D5D0C8 1px, transparent 1px);
  background-size: 24px 24px;
}

.toast {
  transform: translateX(120%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}
.toast.show {
  transform: translateX(0);
}

.empty-state {
  text-align: center;
  padding: 64px 0;
}
.empty-state-icon {
  width: 64px;
  height: 64px;
  background: #F0EDE7;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.empty-state-icon i {
  color: #9C978C;
  font-size: 20px;
}

.results-count {
  font-size: 14px;
  color: #6B665C;
}

.sort-select {
  font-size: 14px;
  color: #6B665C;
  background: white;
  border: 1px solid #E8E4DD;
  border-radius: 8px;
  padding: 8px 32px 8px 12px;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s ease;
}
.sort-select:focus {
  border-color: #C75C2A;
}

.sort-wrapper {
  position: relative;
}
.sort-wrapper .sort-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9C978C;
  font-size: 10px;
  pointer-events: none;
}
