/* =====================================================================
   Gift Card Banner — Public Menu Page
   Style: PizzaNova-inspired two-panel layout
   Left: full-bleed image | Right: solid dark bg, centered white text + pill button
   Loaded via: resources/views/public/business/tabs/_gift_card_banner.blade.php
   ===================================================================== */

.rp-gift-banner {
  margin: 28px 0 12px 0;
}

/* Outer wrapper — rounded corners, clip children */
.rp-gift-banner-wrap {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 12px;
  overflow: hidden;
  min-height: 340px;
}

@media (min-width: 640px) {
  .rp-gift-banner-wrap {
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
  }
}

/* ── Left panel: full-bleed image ── */
.rp-gift-banner-visual {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: #e5e7eb;
}

@media (min-width: 640px) {
  .rp-gift-banner-visual {
    min-height: unset;
  }
}

.rp-gift-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Fallback icon (no image) */
.rp-gift-banner-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d1fae5;
}

.rp-gift-banner-fallback-icon {
  width: 72px;
  height: 72px;
  color: #6ee7b7;
}

/* ── Right panel: solid dark bg, centered content ── */
.rp-gift-banner-body {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1a3a2a;
  color: #ffffff !important;
  gap: 0;
}

.rp-gift-banner-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff !important;
  letter-spacing: 0.12em;
  line-height: 1.1;
  text-transform: uppercase;
  margin: 0 0 16px 0;
  padding: 0;
  border: none;
  background: none;
}

.rp-gift-banner-desc {
  font-size: 14px;
  color: #ffffff !important;
  margin: 0 0 28px 0;
  line-height: 1.6;
  max-width: 280px;
  padding: 0;
  border: none;
  background: none;
}

/* Pill outlined button — white border, white text, transparent bg */
.rp-gift-banner-btn {
  display: inline-block;
  padding: 11px 30px;
  background: transparent;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  text-decoration: none !important;
  line-height: 1;
  box-shadow: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.rp-gift-banner-btn:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  color: #ffffff;
  text-decoration: none !important;
}
