.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 1.2em;
    min-height: 5.5rem;
}
/* Hide original modal - Modaal will clone inner content */
body > #vet-check-modal {
    display: none !important;
  }
  
  /* Modal heading style */
  .modaal-content-container h3 {
    font-size: 1.6em;
    font-weight: bold;
    color: #333;
    margin-bottom: 50px;
  }
  
  .modal-buttons {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
  }
  
  .modal-buttons .btn-yes,
  .modal-buttons .btn-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    padding: 20px 40px 20px 55px;
    font-size: 1.4em;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    border-radius: 10px;
    background: linear-gradient(to bottom, #7bc96a, #4a9a3a);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
  }
  
  .modal-buttons .btn-yes:hover,
  .modal-buttons .btn-no:hover {
    background: linear-gradient(to bottom, #8cda7b, #5aaa4a);
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    text-decoration: none;
    color: #fff;
  }
  
  /* Button icon - circle with arrow */
  .modal-buttons .btn-yes::before,
  .modal-buttons .btn-no::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
  }
  
  /* Arrow inside circle */
  .modal-buttons .btn-yes::after,
  .modal-buttons .btn-no::after {
    content: "";
    position: absolute;
    left: 27px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 2.5px solid #4a9a3a;
    border-bottom: 2.5px solid #4a9a3a;
    transform: translateY(-50%) rotate(-45deg);
  }
  
  /* Modaal customization for vet check */
  .modaal-container {
    background: transparent !important;
    box-shadow: none !important;
    max-width: 650px !important;
  }
  
  .modaal-content-container {
    background: linear-gradient(to bottom, #f5f0e1, #e8e0c8) !important;
    padding: 50px 60px !important;
    border-radius: 4px;
    text-align: center;
  }
  
  /* Hide default close button for vet check modal */
  .modaal-close {
    display: none !important;
  }
  
  /* Overlay style */
  .modaal-overlay {
    background: rgba(0, 0, 0, 0.6) !important;
  }
  
  /* ================================
     スマホ・タブレット用レスポンシブ
     ================================ */
  
  /* タブレット (768px以下) */
  @media screen and (max-width: 768px) {
    .modaal-content-container {
      padding: 40px 30px !important;
    }
  
    .modaal-content-container h3 {
      font-size: 1.3em;
      margin-bottom: 35px;
    }
  
    .modal-buttons {
      gap: 20px;
    }
  
    .modal-buttons .btn-yes,
    .modal-buttons .btn-no {
      min-width: 160px;
      padding: 16px 30px 16px 48px;
      font-size: 1.2em;
    }
  
    .modal-buttons .btn-yes::before,
    .modal-buttons .btn-no::before {
      left: 14px;
      width: 24px;
      height: 24px;
    }
  
    .modal-buttons .btn-yes::after,
    .modal-buttons .btn-no::after {
      left: 22px;
      width: 7px;
      height: 7px;
    }
  }
  
  /* スマホ (480px以下) */
  @media screen and (max-width: 480px) {
    .modaal-inner-wrapper {
      padding: 20px 15px !important;
    }
  
    .modaal-content-container {
      padding: 30px 20px !important;
    }
  
    .modaal-content-container h3 {
      font-size: 1.1em;
      margin-bottom: 25px;
      line-height: 1.5;
    }
  
    .modal-buttons {
      flex-direction: column;
      gap: 15px;
    }
  
    .modal-buttons .btn-yes,
    .modal-buttons .btn-no {
      width: 100%;
      min-width: auto;
      padding: 15px 20px 15px 50px;
      font-size: 1.1em;
      justify-content: center;
    }
  
    .modal-buttons .btn-yes::before,
    .modal-buttons .btn-no::before {
      left: 15px;
      width: 24px;
      height: 24px;
    }
  
    .modal-buttons .btn-yes::after,
    .modal-buttons .btn-no::after {
      left: 23px;
      width: 6px;
      height: 6px;
      border-right-width: 2px;
      border-bottom-width: 2px;
    }
  }
  