.v-link .v-navigate-btn button {
  padding-top: .375rem !important;
  padding-bottom: .375rem !important;
  width: 100%;
}

.v-navigate-btn button .s-button-text {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
}

#popup-modal, 
#popup-modal * {
  font-family: inherit !important;
}

#popup-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  max-width: 340px;
  min-height: 220px;
  z-index: 999;
  overflow: hidden;
  background-color: #efe8db;
  width: 100%;
  padding: 1.25rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
  transition: .3s ease-in-out;
}

.popup-image {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}

#popup-modal.show {
  transform: translate(-50%, -50%) scale(1);
}

.v-black-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .25);
  transition: .2s ease-in-out;
  z-index: 99;
  opacity: 0;
  pointer-events: none;
}

.v-black-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

#popup-modal .close-btn {
  background-color: #fff;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

#popup-modal .close-btn:hover {
  color: var(--color-primary);
}

#popup-modal .whatsapp-btn {
  gap: 12px;
  color: #fff;
  width: fit-content;
  margin: 2rem auto 0;
  border-radius: 4px;
  padding: 4px 42px 8px;
  font-weight: 500;
  background-color: var(--color-primary);
  font-size: 21px;
}

span.truncate {
    overflow: unset !important;
    text-overflow: unset !important;
    white-space: normal !important;
}