* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --teal: #00B4A6;
  --teal-text: rgb(0, 139.2, 128.3733333333);
  --navy: #0D1B4C;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Heebo", "Arial Hebrew", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #4A5568;
  background: #F5F7FA;
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #00B4A6;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: rgb(0, 129, 118.9666666667);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #0D1B4C;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1.5rem;
}
p:last-child {
  margin-bottom: 0;
}

ul, ol {
  padding-inline-end: 2rem;
  margin-bottom: 1.5rem;
}

::selection {
  background: rgba(0, 180, 166, 0.2);
  color: #00B4A6;
}

:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  top: -50px;
  right: 1.5rem;
  background: #00B4A6;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  z-index: 1070;
  transition: top transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.skip-link:focus {
  top: 1.5rem;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

.container-fluid {
  width: 100%;
  padding: 0 16px;
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
  padding: 2rem 0;
}

.section {
  padding: 3rem 0;
}
.section--gray {
  background: #F5F7FA;
}
.section--primary {
  background: #00B4A6;
  color: #ffffff;
}
.section--dark {
  background: #0D1B4C;
  color: #ffffff;
}

.page-header {
  background: linear-gradient(135deg, #00B4A6 0%, rgb(0, 103.5, 95.45) 100%);
  color: #ffffff;
  padding: 3rem 0;
  margin-bottom: 2rem;
  text-align: center;
}
.page-header h1 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.page-header p {
  opacity: 0.9;
  font-size: 1.125rem;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 992px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1200px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

.content-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2rem;
}
@media (max-width: 992px) {
  .content-sidebar {
    grid-template-columns: 1fr;
  }
}

.sidebar-content {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2rem;
}
@media (max-width: 992px) {
  .sidebar-content {
    grid-template-columns: 1fr;
  }
}

.flex {
  display: flex;
}
.flex--center {
  align-items: center;
  justify-content: center;
}
.flex--between {
  justify-content: space-between;
}
.flex--wrap {
  flex-wrap: wrap;
}
.flex--gap {
  gap: 1.5rem;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  height: 72px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.site-header--scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.99);
}
.site-header__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.site-header__logo {
  display: flex;
  align-items: center;
  color: #0D1B4C;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}
.site-header__logo img {
  height: 70px;
  width: auto;
}
.site-header__logo-text {
  font-size: 25px;
  font-weight: 600;
  color: #0D1B4C;
  margin-right: 1rem;
  display: block;
  width: 100px;
  line-height: 21px;
}
@media (max-width: 767px) {
  .site-header__logo img{
    height: 50px;
  }
  .site-header__logo-text {
    font-size: 27px;
    font-weight: 900;
    color: #0D1B4C;
    margin-right: 1rem;
    display: block;
    width: fit-content;
    line-height: 17px;
  }
}
.site-header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  /* margin-inline-start: auto; */
}
@media (min-width: 768px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: #4A5568;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.site-header__link:hover {
  background: rgba(0, 180, 166, 0.08);
  color: #00B4A6;
}
.site-header__link--active {
  color: #00B4A6;
  background: rgba(0, 180, 166, 0.08);
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-inline-start: auto;
}
@media (min-width: 768px) {
  .site-header__actions {
    margin-inline-start: 0;
  }
}
.site-header__search-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: #4A5568;
  font-size: 1.125rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header__search-btn:hover {
  background: #F5F7FA;
  color: #00B4A6;
}
.site-header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  border-radius: 8px;
  transition: background-color 0.2s ease;
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .site-header__hamburger {
    display: none;
  }
}
.site-header__hamburger:hover {
  background: #F5F7FA;
}
.site-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #0D1B4C;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.site-header__hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.site-header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.site-header__hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 767px) {
  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    right: 0;
    width: 280px;
    height: calc(100vh - 72px);
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    gap: 0.25rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1030;
    overflow-y: auto;
  }
  .site-header__nav.active {
    transform: translateX(0);
  }
  .site-header__link {
    font-size: 1.125rem;
    padding: 1rem;
    border-radius: 8px;
  }
}
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1029;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.overlay.active {
  display: block;
  opacity: 1;
}

.search-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1050;
}
.search-popup.active {
  display: block;
}

.search-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.search-popup-content {
  position: relative;
  max-width: 600px;
  margin: 120px auto 0;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  z-index: 1;
}
@media (max-width: 576px) {
  .search-popup-content {
    margin: 1.5rem;
    margin-top: 80px;
  }
}

.search-popup-close {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: #F5F7FA;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search-popup-close:hover {
  background: #E8ECF1;
}

.search-popup-form {
  margin-top: 0.5rem;
}

.search-popup-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid #E8ECF1;
  border-radius: 12px;
  padding: 1rem;
  transition: border-color 0.2s ease;
}
.search-popup-input-wrap:focus-within {
  border-color: #00B4A6;
}
.search-popup-input-wrap input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1.125rem;
  font-family: "Heebo", "Arial Hebrew", Arial, sans-serif;
  color: #0D1B4C;
  background: transparent;
}
.search-popup-input-wrap input::placeholder {
  color: #94a3b8;
}

.search-popup-icon {
  flex-shrink: 0;
  color: #94a3b8;
}

.search-popup-suggestions {
  margin-top: 1rem;
}

.search-sug-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  text-decoration: none;
  color: #0D1B4C;
  transition: background-color 0.15s ease;
}
.search-sug-item:hover {
  background: #F5F7FA;
  color: #0D1B4C;
}

.search-sug-img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.search-sug-info {
  min-width: 0;
}

.search-sug-title {
  font-weight: 500;
  font-size: 1rem;
}

.search-sug-cat {
  font-size: 0.875rem;
  color: #6B7280;
}

.search-sug-empty {
  text-align: center;
  color: #6B7280;
  padding: 1.5rem;
  font-size: 0.875rem;
}

.search-sug-all {
  display: block;
  text-align: center;
  padding: 1rem;
  margin-top: 0.5rem;
  color: #00B4A6;
  font-weight: 500;
  font-size: 0.875rem;
  border-top: 1px solid #E8ECF1;
  text-decoration: none;
}
.search-sug-all:hover {
  color: rgb(0, 129, 118.9666666667);
}

body {
  padding-top: 72px;
}

.site-footer {
  background:var(--navy);
  color: var(--white);
  margin-top: auto;
}
.site-footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer__main {
  padding: 3rem 0 2rem;
}
.site-footer__main > .site-footer__container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) {
  .site-footer__main > .site-footer__container {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
@media (max-width: 576px) {
  .site-footer__main > .site-footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
@media (max-width: 576px) {
  .site-footer__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.site-footer__logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1;
}
.site-footer__tagline {
  color: #94a3b8;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 300px;
}
@media (max-width: 576px) {
  .site-footer__tagline {
    max-width: none;
  }
}
@media (max-width: 576px) {
  .site-footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.site-footer__col-title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.5rem;
}
.site-footer__col-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 30px;
  height: 2px;
  background: #00B4A6;
  border-radius: 2px;
}
@media (max-width: 576px) {
  .site-footer__col-title::after {
    right: 50%;
    transform: translateX(50%);
  }
}
.site-footer__col-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer__col-list li {
  margin-bottom: 0.5rem;
}
.site-footer__col-list a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s ease, padding-inline-end 0.2s ease;
}
.site-footer__col-list a:hover {
  color: #ffffff;
  padding-inline-end: 0.5rem;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
}
.site-footer__bottom > .site-footer__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .site-footer__bottom > .site-footer__container {
    text-align: center;
  }
}
.site-footer__copy {
  font-size: 0.875rem;
  color: #6B7280;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: "Heebo", "Arial Hebrew", Arial, sans-serif;
  line-height: 1.5;
  border: 2px solid transparent;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-primary {
  background: #00B4A6;
  color: #ffffff;
  border-color: #00B4A6;
}
.btn-primary:hover:not(:disabled) {
  background: rgb(0, 139.2, 128.3733333333);
  border-color: rgb(0, 139.2, 128.3733333333);
  color: #ffffff;
}

.btn-secondary {
  background: #0D1B4C;
  color: #ffffff;
  border-color: #0D1B4C;
}
.btn-secondary:hover:not(:disabled) {
  background: rgb(20.4494382022, 42.4719101124, 119.5505617978);
  border-color: rgb(20.4494382022, 42.4719101124, 119.5505617978);
  color: #ffffff;
}

.btn-danger {
  background: #E74C5A;
  color: #ffffff;
  border-color: #E74C5A;
}
.btn-danger:hover:not(:disabled) {
  background: rgb(226.1763546798, 40.0236453202, 56.8374384236);
  border-color: rgb(226.1763546798, 40.0236453202, 56.8374384236);
  color: #ffffff;
}

.btn-outline {
  background: transparent;
  color: #0D1B4C;
  border-color: #E8ECF1;
}
.btn-outline:hover:not(:disabled) {
  background: #F5F7FA;
  border-color: #0D1B4C;
}
.btn-outline--teal {
  color: #00B4A6;
  border-color: #00B4A6;
}
.btn-outline--teal:hover:not(:disabled) {
  background: #00B4A6;
  color: #ffffff;
}

.btn-filter {
  background: #ffffff;
  color: #6B7280;
  border: 1px solid #E8ECF1;
  border-radius: 25px;
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}
.btn-filter:hover {
  border-color: #00B4A6;
  color: #00B4A6;
}
.btn-filter.active, .btn-filter--active {
  background: #00B4A6;
  color: #ffffff;
  border-color: #00B4A6;
}

.btn-sm {
  padding: 0.25rem 1rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #334155;
}

.form-control {
  width: 100%;
  padding: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #4A5568;
  background: #ffffff;
  border: 2px solid #E8ECF1;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-control:focus {
  outline: none;
  border-color: #00B4A6;
  box-shadow: 0 0 0 4px rgba(0, 180, 166, 0.1);
}
.form-control::placeholder {
  color: #94a3b8;
}
.form-control:disabled {
  background: #F5F7FA;
  cursor: not-allowed;
}
.form-control.is-invalid {
  border-color: #E74C5A;
}
.form-control.is-invalid:focus {
  box-shadow: 0 0 0 4px rgba(231, 76, 90, 0.1);
}
.form-control.is-valid {
  border-color: #22c55e;
}
.form-control.is-valid:focus {
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 1.5rem center;
  padding-inline-start: 3rem;
}

.input-group {
  display: flex;
}
.input-group .form-control {
  flex: 1;
  border-radius: 0;
}
.input-group .form-control:first-child {
  border-radius: 0 8px 8px 0;
}
.input-group .form-control:last-child {
  border-radius: 8px 0 0 8px;
}
.input-group .input-group-text {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #F5F7FA;
  border: 2px solid #E8ECF1;
  color: #4A5568;
}
.input-group .input-group-text:first-child {
  border-radius: 0 8px 8px 0;
  border-left: 0;
}
.input-group .input-group-text:last-child {
  border-radius: 8px 0 0 8px;
  border-right: 0;
}
.input-group .btn {
  border-radius: 8px 0 0 8px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-check-input {
  width: 20px;
  height: 20px;
  margin-top: 0.25rem;
  flex-shrink: 0;
  appearance: none;
  border: 2px solid #E8ECF1;
  background: #ffffff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.form-check-input[type=checkbox] {
  border-radius: 4px;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:checked {
  background: #00B4A6;
  border-color: #00B4A6;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M13.854 3.646a.5.5 0 010 .708l-7 7a.5.5 0 01-.708 0l-3.5-3.5a.5.5 0 11.708-.708L6.5 10.293l6.646-6.647a.5.5 0 01.708 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' fill='white' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}
.form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(0, 180, 166, 0.1);
}

.form-check-label {
  cursor: pointer;
  user-select: none;
}

.form-switch .form-check-input {
  width: 44px;
  height: 24px;
  border-radius: 25px;
  position: relative;
}
.form-switch .form-check-input::after {
  content: "";
  position: absolute;
  top: 2px;
  right: 2px;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.form-switch .form-check-input:checked {
  background-image: none;
}
.form-switch .form-check-input:checked::after {
  right: calc(100% - 18px);
}

.form-text {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #6B7280;
}

.invalid-feedback {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #E74C5A;
}

.valid-feedback {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: #22c55e;
}

.search-form {
  display: flex;
  gap: 1rem;
}
.search-form .form-control {
  border-radius: 25px;
}
.search-form .btn {
  border-radius: 25px;
}

.form-floating {
  position: relative;
}
.form-floating .form-control {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.form-floating .form-control::placeholder {
  color: transparent;
}
.form-floating .form-control:focus ~ .form-label, .form-floating .form-control:not(:placeholder-shown) ~ .form-label {
  transform: translateY(-100%) scale(0.85);
  color: #00B4A6;
}
.form-floating .form-label {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  pointer-events: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  transform-origin: right center;
  background: #ffffff;
  padding: 0 0.5rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 2rem 0;
}
.pagination__link {
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #0D1B4C;
  border: 2px solid #E8ECF1;
  border-radius: 50%;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  text-decoration: none;
  cursor: pointer;
}
.pagination__link:hover:not(.pagination__link--active) {
  border-color: #0D1B4C;
  background: #F5F7FA;
}
.pagination__link--active {
  background: #0D1B4C;
  color: #ffffff;
  border-color: #0D1B4C;
}
.pagination__link:focus-visible {
  outline: 2px solid var(--teal, #00B4A6);
  outline-offset: 2px;
}
.pagination__link--prev, .pagination__link--next {
  width: auto;
  border: none;
  background: none;
  color: #0D1B4C;
  gap: 0.25rem;
}
.pagination__link--prev:hover, .pagination__link--next:hover {
  color: #00B4A6;
  background: none !important;
}

.alert {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}
.alert i {
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  color: rgb(22.7402597403, 131.7597402597, 62.8701298701);
  border: 1px solid rgba(34, 197, 94, 0.3);
}
.alert-success i {
  color: #22c55e;
}

.alert-danger {
  background: rgba(231, 76, 90, 0.1);
  color: rgb(203.2487684729, 27.2512315271, 43.1477832512);
  border: 1px solid rgba(231, 76, 90, 0.3);
}
.alert-danger i {
  color: #E74C5A;
}

.alert-warning {
  background: rgba(255, 215, 0, 0.1);
  color: rgb(127.5, 107.5, 0);
  border: 1px solid rgba(255, 215, 0, 0.3);
}
.alert-warning i {
  color: #FFD700;
}

.alert-info {
  background: rgba(6, 182, 212, 0.1);
  color: rgb(3.1926605505, 96.8440366972, 112.8073394495);
  border: 1px solid rgba(6, 182, 212, 0.3);
}
.alert-info i {
  color: #06b6d4;
}

.alert-dismissible {
  position: relative;
  padding-inline-start: 3rem;
}
.alert-dismissible .alert-close {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: none;
  border: none;
  color: inherit;
  opacity: 0.7;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}
.alert-dismissible .alert-close:hover {
  opacity: 1;
}

.toast-container {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 1070;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  animation: slideIn 0.3s ease;
  max-width: 400px;
}
.toast.toast-success {
  border-right: 4px solid #22c55e;
}
.toast.toast-error {
  border-right: 4px solid #E74C5A;
}
.toast.toast-warning {
  border-right: 4px solid #FFD700;
}
.toast.toast-info {
  border-right: 4px solid #06b6d4;
}

.toast-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.toast-icon.success {
  color: #22c55e;
}
.toast-icon.error {
  color: #E74C5A;
}
.toast-icon.warning {
  color: #FFD700;
}
.toast-icon.info {
  color: #06b6d4;
}

.toast-content {
  flex: 1;
}
.toast-content .toast-title {
  font-weight: 500;
  margin-bottom: 2px;
}
.toast-content .toast-message {
  font-size: 0.875rem;
  color: #6B7280;
}

.toast-close {
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}
.toast-close:hover {
  color: #334155;
}

@keyframes slideIn {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  border-radius: 25px;
  white-space: nowrap;
}

.badge-primary {
  background: #00B4A6;
  color: #ffffff;
}

.badge-secondary {
  background: #0D1B4C;
  color: #ffffff;
}

.badge-success {
  background: #22c55e;
  color: #ffffff;
}

.badge-danger {
  background: #E74C5A;
  color: #ffffff;
}

.badge-warning {
  background: #FFD700;
  color: #0D1B4C;
}

.badge-info {
  background: #06b6d4;
  color: #ffffff;
}

.badge-light {
  background: #E8ECF1;
  color: #334155;
}

.badge-dark {
  background: #1e293b;
  color: #ffffff;
}

.breadcrumbs {
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 16px;
  font-size: 0.875rem;
}
.breadcrumbs__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.breadcrumbs__item {
  color: #6B7280;
}
.breadcrumbs__item a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.breadcrumbs__item a:hover {
  color: #00B4A6;
}
.breadcrumbs__item a:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.breadcrumbs__item--current {
  color: #334155;
  font-weight: 500;
}
.breadcrumbs__separator {
  color: #cbd5e1;
  font-size: 0.625rem;
  display: flex;
  align-items: center;
}

.auth-container {
  max-width: 450px;
  margin: 0 auto;
  padding: 2rem 0;
}

.auth-card {
  padding: 3rem;
}
@media (max-width: 575px) {
  .auth-card {
    padding: 2rem 1.5rem;
  }
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}
.auth-header h1 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
.auth-header p {
  color: #6B7280;
}

.auth-form .form-group {
  margin-bottom: 1.5rem;
}
.auth-form .form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.auth-form .input-group .input-group-text {
  background: #F5F7FA;
  border-color: #E8ECF1;
  color: #6B7280;
}
.auth-form .input-group .form-control {
  border-right: none;
}
.auth-form .input-group .form-control:focus {
  border-color: #00B4A6;
}
.auth-form .input-group .form-control:focus ~ .input-group-text {
  border-color: #00B4A6;
  color: #00B4A6;
}

.auth-footer {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #E8ECF1;
}
.auth-footer p {
  color: #6B7280;
  margin: 0;
}
.auth-footer p a {
  font-weight: 500;
}

.auth-social {
  margin-top: 2rem;
}
.auth-social .divider {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  color: #6B7280;
  font-size: 0.875rem;
}
.auth-social .divider::before, .auth-social .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #E8ECF1;
}
.auth-social .divider span {
  padding: 0 1.5rem;
}
.auth-social .social-buttons {
  display: flex;
  gap: 1rem;
}
.auth-social .social-buttons .btn {
  flex: 1;
}

.profile-card h3 {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.profile-info .profile-info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #E8ECF1;
}
.profile-info .profile-info-item:last-child {
  border-bottom: none;
}
.profile-info .profile-info-item .label {
  color: #6B7280;
  font-size: 0.875rem;
}
.profile-info .profile-info-item .value {
  font-weight: 500;
}

.profile-actions .btn {
  justify-content: center;
}

.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.no-results {
  text-align: center;
  padding: 3rem;
  color: #6B7280;
}
.no-results i {
  font-size: 4rem;
  color: #cbd5e1;
  margin-bottom: 1.5rem;
  display: block;
}
.no-results h3 {
  color: #334155;
  margin-bottom: 1rem;
}

/* .hero__search-icon { */
  /* position: absolute;
  top: 50%;
  right: 1rem;
  left: auto;
  transform: translateY(-50%);
  color: #6B7280;
  font-size: 1rem;
  pointer-events: none;
  z-index: 1;
}
[dir=ltr] .hero__search-icon {
  right: auto;
  left: 1rem;
} */

.featured {
  background: #F5F7FA;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .featured {
    padding: 3rem 2rem;
  }
}
.featured__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.featured__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 1.5rem;
}
.featured__card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
@media (min-width: 768px) {
  .featured__card {
    flex-direction: row-reverse;
  }
}
.featured__image-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #F5F7FA;
}
@media (min-width: 768px) {
  .featured__image-side {
    flex: 0 0 35%;
    padding: 2rem;
  }
}
.featured__owner-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.5rem;
  border: 3px solid #ffffff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.featured__owner-img--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E8ECF1;
  color: #6B7280;
  font-size: 2rem;
}
.featured__owner-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0D1B4C;
}
.featured__info-side {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media (min-width: 768px) {
  .featured__info-side {
    padding: 2rem;
  }
}
.featured__badge {
  display: inline-block;
  background: #E74C5A;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  margin-bottom: 0.5rem;
  width: fit-content;
}
.featured__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 0.5rem;
}
.featured__desc {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.featured__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.featured__action {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  border: 1px solid #E8ECF1;
  min-height: 44px;
  color: #0D1B4C;
  background: #ffffff;
}
.featured__action:hover {
  background: #F5F7FA;
  border-color: #0D1B4C;
}
.featured__action--whatsapp {
  color: #25d366;
  border-color: #25d366;
}
.featured__action--whatsapp:hover {
  background: #25d366;
  color: #ffffff;
}
.featured__action--details {
  background: #00B4A6;
  color: #ffffff;
  border-color: #00B4A6;
}
.featured__action--details:hover {
  background: rgb(0, 139.2, 128.3733333333);
  border-color: rgb(0, 139.2, 128.3733333333);
  color: #ffffff;
}
.featured__action--website {
  color: #0D1B4C;
  border-color: #0D1B4C;
}
.featured__action--website:hover {
  background: #0D1B4C;
  color: #ffffff;
}
.featured__action--phone {
  color: #00B4A6;
  border-color: #00B4A6;
}
.featured__action--phone:hover {
  background: #00B4A6;
  color: #ffffff;
}
.featured__action:focus-visible {
  outline: 2px solid var(--teal, #00B4A6);
  outline-offset: 2px;
}

.communities-page {
  padding: 3rem 1rem;
}
@media (min-width: 768px) {
  .communities-page {
    padding: 4rem 1rem;
  }
}
.communities-page__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.communities-page__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0D1B4C;
  text-align: center;
  margin: 0 0 2rem;
}
.communities-page__empty {
  text-align: center;
  padding: 4rem 1rem;
  color: #6B7280;
  font-size: 1.125rem;
}
.communities-page__empty p {
  margin: 0;
}

.communities-section {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .communities-section {
    padding: 3rem 1rem;
  }
}
.communities-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.communities-section__heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0D1B4C;
  text-align: center;
  margin: 0 0 1.5rem;
}

.communities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 576px) {
  .communities-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .communities-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.community-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.community-card:has(.community-card__link):hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
.community-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  overflow: hidden;
}
.community-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.community-card__icon i, .community-card__icon svg {
  color: #00B4A6;
}
.community-card__title {
  font-size: 1rem;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 0.25rem;
}
.community-card__desc {
  font-size: 0.875rem;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}
.community-card__link {
  font-size: 0.875rem;
  color: #00B4A6;
  font-weight: 500;
  text-decoration: none;
  margin-top: 0.5rem;
}
.community-card__link:hover {
  text-decoration: underline;
}
.community-card__link:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}

.review-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.review-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F5F7FA;
  overflow: hidden;
  flex-shrink: 0;
}
.review-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__author {
  font-weight: 600;
  color: #0D1B4C;
  font-size: 0.875rem;
}
.review-card__date {
  font-size: 0.875rem;
  color: #6B7280;
}
.review-card__stars {
  display: flex;
  gap: 0.25rem;
  color: #FFD700;
}
.review-card__stars .fas,
.review-card__stars .far {
  font-size: 0.875rem;
}
.review-card__stars .far {
  color: #E8ECF1;
}
.review-card__body {
  font-size: 0.875rem;
  color: #4A5568;
  line-height: 1.6;
}

.biz-show {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
}
@media (min-width: 768px) {
  .biz-show {
    padding: 2rem 1.5rem;
  }
}
.biz-show__container {
  width: 100%;
}
.biz-show__gallery {
  margin-bottom: 1.5rem;
}
.biz-show__slider {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 21/9;
}
@media (max-width: 767px) {
  .biz-show__slider {
    aspect-ratio: 16/9;
  }
}
.biz-show__slide {
  display: none;
}
.biz-show__slide:first-child {
  display: block;
}
.biz-show__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-show__slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.85);
  color: #0D1B4C;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.125rem;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}
.biz-show__slider-btn:hover {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.biz-show__slider-btn:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.biz-show__slider-btn--prev {
  inset-inline-end: 1rem;
}
.biz-show__slider-btn--next {
  inset-inline-start: 1rem;
}
.biz-show__slider-dots {
  position: absolute;
  bottom: 1rem;
  inset-inline-start: 50%;
  transform: translateX(50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.biz-show__slider-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.biz-show__slider-dot::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transition: background-color 0.2s ease;
}
.biz-show__slider-dot--active::after {
  background: #00B4A6;
  width: 14px;
  height: 14px;
}
.biz-show__cover {
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 767px) {
  .biz-show__cover {
    aspect-ratio: 21/9;
  }
}
.biz-show__cover img {
  width: fit-content;
    height: 100%;
    object-fit: contain;
    border-radius: 40px;
}
.biz-show__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .biz-show__content {
    grid-template-columns: 1fr 320px;
  }
}
.biz-show__main {
  min-width: 0;
}
.biz-show__header {
  margin-bottom: 1.5rem;
}
.biz-show__header-top {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.biz-show__logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}
.biz-show__header-text {
  min-width: 0;
}
.biz-show__title {
  font-size: 2rem;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 0.25rem;
}
@media (max-width: 767px) {
  .biz-show__title {
    font-size: 1.75rem;
  }
}
.biz-show__category-badge {
  display: inline-block;
  background: rgba(0, 180, 166, 0.1);
  color: #00B4A6;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
}
.biz-show__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: #FFD700;
  font-size: 1rem;
}
.biz-show__rating .far,
.biz-show__rating .fas {
  font-size: 0.875rem;
}
.biz-show__reviews-count {
  color: #6B7280;
  font-size: 0.875rem;
  margin-inline-start: 0.25rem;
}
.biz-show__description {
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.biz-show__owner {
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.biz-show__owner-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 0.5rem;
}
.biz-show__owner-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.biz-show__owner-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.biz-show__owner-img--placeholder {
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  font-size: 1.125rem;
}
.biz-show__owner-name {
  font-weight: 500;
  color: #0D1B4C;
}
.biz-show__map {
  margin-bottom: 1.5rem;
}
.biz-show__map-heading {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 0.5rem;
}
.biz-show__map-embed {
  border-radius: 12px;
  overflow: hidden;
}
.biz-show__map-embed iframe {
  display: block;
  width: 100%;
  min-height: 300px;
  border: 0;
}
.biz-show__reviews {
  margin-bottom: 1.5rem;
}
.biz-show__reviews-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 1rem;
}
.biz-show__sidebar {
  height: fit-content;
}
@media (min-width: 992px) {
  .biz-show__sidebar {
    position: sticky;
    top: calc(72px + 1rem);
  }
}
.biz-show__info-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}
.biz-show__info-heading {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 1rem;
}
.biz-show__info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.biz-show__info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #E8ECF1;
  font-size: 0.875rem;
  color: #4A5568;
}
.biz-show__info-item:last-child {
  border-bottom: none;
}
.biz-show__info-item i, .biz-show__info-item svg {
  color: #00B4A6;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}
.biz-show__info-item a {
  color: #00B4A6;
  text-decoration: none;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.biz-show__info-item a:hover {
  text-decoration: underline;
}
.biz-show__info-item a:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.biz-show__hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E8ECF1;
}
.biz-show__hours-heading {
  font-size: 1rem;
  font-weight: 600;
  color: #0D1B4C;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.biz-show__hours-heading i {
  color: #00B4A6;
}
.biz-show__hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.biz-show__hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  font-size: 0.875rem;
  color: #4A5568;
}
.biz-show__hours-day {
  font-weight: 500;
}
.biz-show__hours-time {
  color: #6B7280;
}
.biz-show__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #E8ECF1;
}
.biz-show__social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F5F7FA;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4A5568;
  font-size: 1.125rem;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.biz-show__social-link:hover {
  background: #00B4A6;
  color: #ffffff;
  transform: translateY(-2px);
}
.biz-show__social-link:focus-visible {
  outline: 2px solid #00B4A6;
  outline-offset: 2px;
}
.biz-show__social-link--whatsapp:hover {
  background: #25d366;
}
.biz-show__related {
  margin-top: 2rem;
}
.biz-show__related-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0D1B4C;
  margin: 0 0 1rem;
}

.businesses-section {
  padding: 3rem 0;
  background-color: #ffffff;
}
.businesses-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.businesses-section__heading {
  font-size: 2rem;
  font-weight: 700;
  color: #0D1B4C;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .businesses-section__heading {
    font-size: 1.75rem;
  }
}

.category-pills {
  margin-bottom: 1.5rem;
}
.category-pills__scroll {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 0 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.category-pills__scroll::-webkit-scrollbar {
  display: none;
}
.category-pills__item {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  min-height: 44px;
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Heebo", "Arial Hebrew", Arial, sans-serif;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  border: 1px solid #E8ECF1;
  background: #ffffff;
  color: #0D1B4C;
  cursor: pointer;
}
.category-pills__item i {
  font-size: 1rem;
}
.category-pills__item:hover {
  background: #F5F7FA;
  border-color: #0D1B4C;
}
.category-pills__item--active {
  background: #0D1B4C;
  color: #ffffff;
  border-color: #0D1B4C;
}
.category-pills__item--active:hover {
  background: rgb(9.2752808989, 19.2640449438, 54.2247191011);
}
.category-pills__item:focus-visible {
  outline: 2px solid var(--teal, #00B4A6);
  outline-offset: 2px;
}
/* 
.hero .category-pills__item {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #ffffff;
}
.hero .category-pills__item:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}
.hero .category-pills__item--active {
  background: #ffffff;
  color: #0D1B4C;
  border-color: #ffffff;
}
.hero .category-pills__item--active:hover {
  background: rgba(255, 255, 255, 0.9);
} */

.text-start {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: left;
}

.text-primary {
  color: #00B4A6 !important;
}

.text-secondary {
  color: #0D1B4C !important;
}

.text-success {
  color: #22c55e !important;
}

.text-danger {
  color: #E74C5A !important;
}

.text-warning {
  color: #FFD700 !important;
}

.text-info {
  color: #06b6d4 !important;
}

.text-muted {
  color: #6B7280 !important;
}

.text-white {
  color: #ffffff !important;
}

.bg-primary {
  background-color: #00B4A6 !important;
}

.bg-secondary {
  background-color: #0D1B4C !important;
}

.bg-success {
  background-color: #22c55e !important;
}

.bg-danger {
  background-color: #E74C5A !important;
}

.bg-warning {
  background-color: #FFD700 !important;
}

.bg-info {
  background-color: #06b6d4 !important;
}

.bg-light {
  background-color: #F5F7FA !important;
}

.bg-dark {
  background-color: #0D1B4C !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.fs-lg {
  font-size: 1.125rem !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ms-0 {
  margin-inline-start: 0 !important;
}

.me-0 {
  margin-inline-end: 0 !important;
}

.mx-0 {
  margin-inline-start: 0 !important;
  margin-inline-end: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.m-1 {
  margin: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 0.5rem !important;
}

.ms-1 {
  margin-inline-start: 0.5rem !important;
}

.me-1 {
  margin-inline-end: 0.5rem !important;
}

.mx-1 {
  margin-inline-start: 0.5rem !important;
  margin-inline-end: 0.5rem !important;
}

.my-1 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.m-2 {
  margin: 1rem !important;
}

.mt-2 {
  margin-top: 1rem !important;
}

.mb-2 {
  margin-bottom: 1rem !important;
}

.ms-2 {
  margin-inline-start: 1rem !important;
}

.me-2 {
  margin-inline-end: 1rem !important;
}

.mx-2 {
  margin-inline-start: 1rem !important;
  margin-inline-end: 1rem !important;
}

.my-2 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.m-3 {
  margin: 1.5rem !important;
}

.mt-3 {
  margin-top: 1.5rem !important;
}

.mb-3 {
  margin-bottom: 1.5rem !important;
}

.ms-3 {
  margin-inline-start: 1.5rem !important;
}

.me-3 {
  margin-inline-end: 1.5rem !important;
}

.mx-3 {
  margin-inline-start: 1.5rem !important;
  margin-inline-end: 1.5rem !important;
}

.my-3 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.m-4 {
  margin: 2rem !important;
}

.mt-4 {
  margin-top: 2rem !important;
}

.mb-4 {
  margin-bottom: 2rem !important;
}

.ms-4 {
  margin-inline-start: 2rem !important;
}

.me-4 {
  margin-inline-end: 2rem !important;
}

.mx-4 {
  margin-inline-start: 2rem !important;
  margin-inline-end: 2rem !important;
}

.my-4 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ms-5 {
  margin-inline-start: 3rem !important;
}

.me-5 {
  margin-inline-end: 3rem !important;
}

.mx-5 {
  margin-inline-start: 3rem !important;
  margin-inline-end: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.ps-0 {
  padding-inline-start: 0 !important;
}

.pe-0 {
  padding-inline-end: 0 !important;
}

.px-0 {
  padding-inline-start: 0 !important;
  padding-inline-end: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.p-1 {
  padding: 0.5rem !important;
}

.pt-1 {
  padding-top: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 0.5rem !important;
}

.ps-1 {
  padding-inline-start: 0.5rem !important;
}

.pe-1 {
  padding-inline-end: 0.5rem !important;
}

.px-1 {
  padding-inline-start: 0.5rem !important;
  padding-inline-end: 0.5rem !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.p-2 {
  padding: 1rem !important;
}

.pt-2 {
  padding-top: 1rem !important;
}

.pb-2 {
  padding-bottom: 1rem !important;
}

.ps-2 {
  padding-inline-start: 1rem !important;
}

.pe-2 {
  padding-inline-end: 1rem !important;
}

.px-2 {
  padding-inline-start: 1rem !important;
  padding-inline-end: 1rem !important;
}

.py-2 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-3 {
  padding: 1.5rem !important;
}

.pt-3 {
  padding-top: 1.5rem !important;
}

.pb-3 {
  padding-bottom: 1.5rem !important;
}

.ps-3 {
  padding-inline-start: 1.5rem !important;
}

.pe-3 {
  padding-inline-end: 1.5rem !important;
}

.px-3 {
  padding-inline-start: 1.5rem !important;
  padding-inline-end: 1.5rem !important;
}

.py-3 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.p-4 {
  padding: 2rem !important;
}

.pt-4 {
  padding-top: 2rem !important;
}

.pb-4 {
  padding-bottom: 2rem !important;
}

.ps-4 {
  padding-inline-start: 2rem !important;
}

.pe-4 {
  padding-inline-end: 2rem !important;
}

.px-4 {
  padding-inline-start: 2rem !important;
  padding-inline-end: 2rem !important;
}

.py-4 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.ps-5 {
  padding-inline-start: 3rem !important;
}

.pe-5 {
  padding-inline-end: 3rem !important;
}

.px-5 {
  padding-inline-start: 3rem !important;
  padding-inline-end: 3rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-grid {
  display: grid !important;
}

.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.justify-start {
  justify-content: flex-start !important;
}

.justify-end {
  justify-content: flex-end !important;
}

.justify-center {
  justify-content: center !important;
}

.justify-between {
  justify-content: space-between !important;
}

.justify-around {
  justify-content: space-around !important;
}

.align-start {
  align-items: flex-start !important;
}

.align-end {
  align-items: flex-end !important;
}

.align-center {
  align-items: center !important;
}

.align-baseline {
  align-items: baseline !important;
}

.align-stretch {
  align-items: stretch !important;
}

.gap-1 {
  gap: 0.5rem !important;
}

.gap-2 {
  gap: 1rem !important;
}

.gap-3 {
  gap: 1.5rem !important;
}

.gap-4 {
  gap: 2rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.border {
  border: 1px solid #E8ECF1 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: 1px solid #E8ECF1 !important;
}

.border-bottom {
  border-bottom: 1px solid #E8ECF1 !important;
}

.rounded {
  border-radius: 8px !important;
}

.rounded-sm {
  border-radius: 4px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-pill {
  border-radius: 25px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.shadow-none {
  box-shadow: none !important;
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) !important;
}

.shadow {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.object-fit-cover {
  object-fit: cover !important;
}

.object-fit-contain {
  object-fit: contain !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-default {
  cursor: default !important;
}

.user-select-none {
  user-select: none !important;
}

.user-select-all {
  user-select: all !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-flex {
    display: flex !important;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
@media (max-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0D1B4C;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 1.75rem;
  }
}

.section-subtitle {
  color: #6B7280;
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.loading::after {
  content: "";
  width: 40px;
  height: 40px;
  border: 3px solid #E8ECF1;
  border-top-color: #00B4A6;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.skeleton {
  background: linear-gradient(90deg, #E8ECF1 25%, #F5F7FA 50%, #E8ECF1 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@media print {
  .site-header,
  .site-footer,
  .btn {
    display: none !important;
  }
  a {
    color: #000000 !important;
    text-decoration: underline;
  }
}
