.product-image-link {
  display: block;
  overflow: hidden;
}

.product-image-link img {
  display: block;
  transition: transform .25s ease;
}

.product-image-link:hover img {
  transform: scale(1.025);
}

.product-card h3 a:hover {
  color: var(--green);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.product-card h3 {
  display: grid;
  place-items: center;
  min-height: 2.4em;
  text-align: center;
}

.product-card .product-top {
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: center;
}

.product-card .product-top b {
  margin: 0;
  order: 2;
}

.product-card .product-category {
  order: 1;
  padding: 0;
  background: transparent;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.product-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.product-links > a:first-child {
  grid-column: 1 / -1;
}

.product-links > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.product-links > .product-action {
  border-color: rgba(255,255,255,.28);
  background: transparent;
  color: var(--green);
  padding: 0 10px;
  font-size: 12px;
}

.product-links > .email-action {
  background: transparent;
  color: var(--green);
}

.product-links > a:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(140,255,0,.18);
  border-color: var(--green);
}

@media (max-width: 620px) {
  .product-links > a { width: 100%; }
}

.single-product .single-grid > div:first-child img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.booking-actions {
  display: grid;
  gap: 12px;
  min-width: 280px;
}

.booking {
  scroll-margin-top: 88px;
}

.booking .booking-action {
  width: 100%;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--green);
  box-shadow: none;
}

.single-actions .button,
.single-actions .button.primary,
.single-actions .button.secondary {
  border: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: var(--green);
  box-shadow: none;
}

.single-actions .button:hover {
  border-color: var(--green);
  box-shadow: 0 0 18px rgba(140,255,0,.18);
}
