/* =========================
   RED APP DOWNLOAD BANNER
========================= */

.pfc-red-banner {
  background-color: #CE1C3D;
  padding: 50px 20px;
  margin: 50px 0;
  position: relative;
  overflow: hidden;
}

/* Remove injected white grid/card styles */
.pfc-red-banner .pfc-content,
.pfc-red-banner .app-download-inner {
  background: transparent !important;
  box-shadow: none !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Headings & text */
.pfc-red-banner .md-b-label,
.pfc-red-banner p {
  color: #ffffff !important;
  background: transparent !important;
  height: auto !important;
  overflow: visible !important;
  margin-bottom: 15px;
}

/* App store buttons */
.pfc-red-banner .app-buttons {
  display: flex;
  gap: 20px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.pfc-red-banner .app-buttons img {
  height: 52px;
  width: auto;
}

/* Banner underline alignment */
.pfc-red-banner .md-b-label {
  position: relative;
  display: inline-block;
}

/* =========================
   LOCATION PAGE BUTTONS
   (SCOPED – SAFE)
========================= */

/* Button container */
.location-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Inner button group ONLY inside location-actions */
.location-actions .action-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Pill / oval button styling */
.location-actions .pfc-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 220px;
  padding: 14px 26px;

  border-radius: 999px; /* 👈 oval shape */
  font-weight: 600;
  text-decoration: none;
  text-align: center;

  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hover polish */
.location-actions .pfc-button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

/* Mobile behavior */
@media (max-width: 768px) {
  .location-actions .pfc-button {
    width: 100%;
  }
}

.value-card .pfc-feedback-button {
  background-color: #cd1b3d !important;
  color: #ffffff !important;

  padding: 10px 20px;
  border-radius: 8px;

  display: inline-block;
  font-weight: 600;
  text-decoration: none !important;
  text-align: center;
  margin-top: 10px;

  transition: background-color 0.2s ease, transform 0.2s ease;
}

.value-card .pfc-feedback-button:hover {
  background-color: #b51735;
  transform: translateY(-1px);
}
