
.loh-pet-safety {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  width: fit-content;
  cursor: pointer;
  user-select: none;
}

.loh-pet-safety-image {
  width: 54px;
  height: 54px;
  object-fit: contain;
  display: block;
  flex: 0 0 54px;
}

.loh-pet-safety-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.loh-pet-safety-title {
  margin: 0;
  color: #2F3328;
  font-family: 'Mustica Pro Semibold', 'Mustica Pro', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.loh-pet-safety-value {
  margin: 0;
  color: #3F5D10;
  font-family: 'Mustica Pro Semibold', 'Mustica Pro', Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.loh-pet-safety:hover .loh-pet-safety-image {
  transform: scale(1.06);
}

.loh-pet-safety-image {
  transition: transform 0.2s ease;
}

.loh-pet-safety-modal {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  background: rgba(47, 51, 40, 0.42);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.loh-pet-safety-modal.is-visible {
  display: flex;
}

.loh-pet-safety-modal-window {
  position: relative;
  width: min(900px, 100%);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  padding: 42px;
  border-radius: 30px;
  background: #FBF8F6;
  box-shadow: 0 25px 80px rgba(47, 51, 40, 0.2);
}

.loh-pet-safety-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #FED8E7;
  color: #3F5D10;
  cursor: pointer;
  font-family: Arial, sans-serif;
  font-size: 27px;
  line-height: 42px;
  text-align: center;
}

.loh-pet-safety-modal-title {
  margin: 0 55px 30px 0;
  color: #3F5D10;
  font-family: 'handil', 'Handil Pro', Arial, sans-serif;
  font-size: 42px;
  font-weight: 500;
  line-height: 1;
}

.loh-pet-safety-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.loh-pet-safety-legend-card {
  min-height: 220px;
  padding: 24px 25px;
  border: 2px solid #3F5D10;
  border-radius: 25px;
  background: #FED8E7;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.loh-pet-safety-legend-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin-bottom: 10px;
}

.loh-pet-safety-legend-card h3 {
  margin: 0 0 7px;
  color: #3F5D10;
  font-family: 'Mustica Pro Semibold', 'Mustica Pro', Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.loh-pet-safety-legend-card p {
  max-width: 360px;
  margin: 0;
  color: #3F5D10;
  font-family: 'Mustica Pro Semibold', 'Mustica Pro', Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.loh-pet-safety-original {
  display: none !important;
}

@media (max-width: 767px) {

  .loh-pet-safety {
    gap: 10px;
    margin-top: 15px;
  }

  .loh-pet-safety-image {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .loh-pet-safety-title {
    font-size: 14px;
  }

  .loh-pet-safety-value {
    font-size: 15px;
  }

  .loh-pet-safety-modal {
    padding: 15px;
  }

  .loh-pet-safety-modal-window {
    max-height: calc(100vh - 30px);
    padding: 25px 17px 20px;
    border-radius: 24px;
  }

  .loh-pet-safety-modal-title {
    margin: 0 45px 22px 0;
    font-size: 32px;
  }

  .loh-pet-safety-legend {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .loh-pet-safety-legend-card {
    min-height: 175px;
    padding: 17px;
    border-radius: 21px;
  }

  .loh-pet-safety-legend-card img {
    width: 76px;
    height: 76px;
    margin-bottom: 5px;
  }

  .loh-pet-safety-legend-card h3 {
    font-size: 18px;
  }

  .loh-pet-safety-legend-card p {
    font-size: 14px;
  }
}
</style>

