.shop-hero {
    padding: 2rem 1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), transparent);
    margin-bottom: 1rem;
    border-radius: .5rem;
}

.product-card {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: .5rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card img {
    width: 100%;
    object-fit: cover;
}

.product-card .card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    /*gap: .5rem;*/
}

.product-grid {
    gap: 1rem;
}

.cart-badge {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--isle-primary);
    color: #fff;
    font-size: .75rem;
    padding: .15rem .4rem;
    border-radius: 999px;
}
/* slide-out cart pane */

#cart-pane {
    position: fixed;
    right: -420px;
    top: 0px;
    width: 380px;
    max-width: 95vw;
    height: calc(100vh - 0px);
    background: #fff;
    box-shadow: 0 8px 40px rgba(2, 6, 23, .12);
    transition: right .22s ease;
    z-index: 1080;
    padding: 1rem;
    overflow-y: auto;
}

#cart-pane.show {
    right: 0;
}

#cart-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 1075;
}

#cart-backdrop.show {
    display: block;
}

/* Product tile for booking page */
.product-card { /* keep existing layout but remove border here if needed */ }
.product-tile {
  background: transparent;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.thumb-area {
  background: #0a8a48; /* green panel */
  display: flex;
  align-items: center;
  justify-content: center;
  /*padding: 0.75rem;*/
  position: relative;
}

.product-thumb {
  width: 100%;
  /*height: 160px;*/
  object-fit: cover;
  /*border-radius: 6px;*/
  /*border: 6px solid #0a8a48; !* visually punch image out of green area *!*/
  /*box-shadow: 0 6px 20px rgba(2,6,23,0.12);*/
  background: #fff;
}

.badge-sale {
  position: absolute;
  top: .5rem;
  left: .5rem;
  background: #ff7a18; /* orange badge */
  color: #fff;
  padding: .35rem .6rem;
  font-weight: 700;
  font-size: .82rem;
  border-radius: .45rem;
  z-index: 3;
}

.card-body {
  background: #fff;
  padding-top: .75rem !important;
  padding-bottom: .75rem !important;
}

.product-title {
  font-size: 0.98rem;
  line-height: 1.25;
  color: #111;
  min-height: 2.5rem; /* two-line allowance */
}

.price-row {
  margin-top: .6rem;
  display: flex;
  align-items: baseline;
  gap: .5rem;
}

.price-original {
  color: #7fcf9b; /* pale green */
  text-decoration: line-through;
  font-size: 0.95rem;
}

.price-discount {
  color: #d35400; /* orange / coral */
  font-weight: 700;
  font-size: 1.05rem;
}

/* ensure overlay add button appears centered over image */
.img-overlay__overlay { pointer-events: none; }
.img-overlay__overlay .btn { pointer-events: auto; }

@media (max-width: 576px) {
  .product-thumb { height: 140px; }
}
