
  .star-rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    gap: 5px;
  }

  .star-rating input[type="radio"] {
    display: none;
  }

  .star-rating label {
    font-size: 24px;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
  }

  .star-rating input[type="radio"]:checked~label,
  .star-rating label:hover,
  .star-rating label:hover~label {
    color: #ffc107;
  }

  .logo-wrapper {
    display: inline-block;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
  }

  .logo-wrapper img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
  }

  .logo-wrapper:hover img {
    filter: brightness(0.7);
  }

  .logo-wrapper .edit-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.2s ease;
  }

  .logo-wrapper:hover .edit-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }

  /* Sticky Get In Touch – Listing page */
  @media (min-width: 992px) {
    .sticky-contact {
      position: sticky;
      top: 110px;
      /* adjust if header height changes */
      z-index: 10;
    }
  }

  .sticky-contact {
    transition: box-shadow 0.3s ease;
  }

  .sticky-contact:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  }

                  .wt-list-single-map iframe {
                    width: 100% !important;
                    height: 600px !important;
                    border: 0 !important;
                  }
                
              .reviews-overlay {
                position: absolute;
                bottom: 0;
                left: 0;
                right: 0;
                height: 190px;
                background: linear-gradient(to top, rgba(0, 0, 0, 10), rgba(0, 0, 0, 0.503));
                border-radius: 8px;
                text-align: center;
              }
            