  .garden-popup {
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 9999;

    width: min(360px, calc(100vw - 32px));
    padding: 28px 24px 24px;

    background: #f8f8f6;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);

    font-family: Georgia, "Times New Roman", serif;
    text-align: center;

    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;

    animation: gardenPopupShow 0.45s ease forwards;
  }

  @keyframes gardenPopupShow {
    to {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
  }

  .garden-popup.is-hidden {
    display: none;
  }

  .garden-popup__close {
    position: absolute;
    top: 10px;
    right: 12px;

    width: 32px;
    height: 32px;

    border: 0;
    border-radius: 50%;
    background: transparent;

    color: #a42843;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }

  .garden-popup__close:hover {
    background: rgba(164, 40, 67, 0.08);
  }

  .garden-popup__logo {
    margin-bottom: 18px;
  }

  .garden-popup__logo img {
    width: 62px;
    height: auto;
    display: inline-block;
  }

  .garden-popup__image {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 18px;
  }

  .garden-popup__image img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
  }

  .garden-popup__content h2 {
    margin: 0 0 12px;

    color: #a42843;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
  }

  .garden-popup__dates {
    margin: 0 0 18px;

    color: #363636;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.35;
  }

  .garden-popup__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 190px;
    min-height: 22px;
    padding: 10px 22px;

    border-radius: 999px;
    background: #a42843;

    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;

    transition: background 0.2s ease, transform 0.2s ease;
  }

  .garden-popup__button:hover {
    background: #8f2038;
    transform: translateY(-1px);
  }

  @media (max-width: 600px) {
    .garden-popup {
      left: 16px;
      right: 16px;
      bottom: 16px;

      width: auto;
      padding: 24px 18px 20px;
      border-radius: 16px;
    }

    .garden-popup__logo img {
      width: 52px;
    }

    .garden-popup__content h2 {
      font-size: 18px;
    }

    .garden-popup__button {
      width: 80%;
      min-width: 0;
    }
  }