/* LXTourguide Clean – guide-page-v2.css
   Hero section: 3 equal columns, centered
   Tiles section: grid layout
   No bento framework
   Mobile-first responsive design for smartphone viewing
*/

:root {
  --hero-bg-image: url("../images/heroes/Parc-Eduardo.jpg");
  --hero-height: 100vh;
  --hero-gap: 1rem;
}

/* ===== CERTIFICATION BADGES ===== */

.certification-badge {
  position: relative;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.certification-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.certification-prospect {
  background: linear-gradient(135deg, var(--neutral-200), var(--neutral-300));
  color: var(--text-primary);
  border: 1px solid var(--neutral-400);
}

.certification-prospect::before {
  background: var(--neutral-500);
}

.certification-experienced {
  background: linear-gradient(135deg, var(--lbpf-color-primary), var(--lbpf-color-primary-dark));
  color: var(--pt-white);
  border: 1px solid var(--lbpf-color-primary-dark);
  box-shadow: 0 2px 4px rgba(0, 123, 255, 0.3);
}

.certification-experienced::before {
  background: var(--pt-white);
}

.certification-expert {
  background: linear-gradient(135deg, var(--lbpf-color-accent), var(--lbpf-color-accent-dark));
  color: var(--pt-white);
  border: 1px solid var(--lbpf-color-accent-dark);
  box-shadow: 0 2px 4px rgba(212, 160, 23, 0.3);
  animation: shimmer 3s infinite;
}

.certification-expert::before {
  background: var(--pt-white);
}

@keyframes shimmer {
  0%, 100% {
    box-shadow: 0 2px 4px rgba(212, 160, 23, 0.3);
  }
  50% {
    box-shadow: 0 2px 8px rgba(212, 160, 23, 0.5);
  }
}

/* Hero background rotation handled by hero-manager.js via inline styles */

/* ===== RESPONSIVE BREAKPOINTS ===== */
/* Mobile-first approach: base styles are for smallest screens */
/* 320x480px  - Small smartphones (base/default) */
/* 481x768px  - Medium smartphones & small tablets */
/* 769x1024px - Tablets & landscape phones */
/* 1025x1440px - Small desktops & large tablets */
/* 1440x2560px+ - Large desktops */

.wip-banner {
  display: inline-block;
  margin-top: 0;
  padding: 0.5rem 1rem;
  border-radius: var(--lbpf-radius-pill);
  background: linear-gradient(135deg, var(--pt-red), var(--pt-green));
  border: 1px solid var(--lisbon-gold);
  color: var(--pt-white);
  font-weight: 800;
  font-size: 0.92rem;
  box-shadow: var(--lbpf-shadow-strong);
}

/* ===== HERO SECTION ===== */

.hero-section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--hero-height);
  background: var(--hero-bg-image) center / cover no-repeat fixed;
  background-attachment: fixed;
  z-index: -1;
  transition: background-image 1s ease-in-out;
}

/* Hero Overlay System */
.hero-overlay {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--pt-white);
  background: rgba(17, 24, 39, 0.5); /* --neutral-900 at 50% */
  backdrop-filter: blur(10px);
  padding: 2rem 3rem;
  border-radius: 16px;
  max-width: 90%;
  display: none;
  z-index: 10;
}

.hero-overlay-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-overlay-subtitle {
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
  opacity: 0.95;
}

.hero-overlay-cta {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--lisbon-gold);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: var(--lbpf-radius-pill);
  font-weight: 600;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-overlay-cta:hover {
  background: var(--pt-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Mobile overlay adjustments */
@media (max-width: 768px) {
  .hero-overlay {
    padding: 1.5rem 2rem;
    bottom: 15%;
  }
  
  .hero-overlay-title {
    font-size: 1.5rem;
  }
  
  .hero-overlay-subtitle {
    font-size: 0.95rem;
  }
}

.tile-hero {
  margin-top: calc(var(--hero-height) - 2rem - 190px);
  position: relative;
}

.tile-hero .wip-banner {
  position: absolute;
  top: -3.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
}

/* ===== HERO: tile-hero is position context (set at line 175) ===== */

/* Avatar — absolute top-left */
.hero-avatar {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Logo — absolute top-right */
.hero-logo {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  text-decoration: none;
  border-radius: 8px;
  padding: 0.25rem;
  transition: all 0.2s ease;
}

.hero-logo:hover {
  transform: scale(1.05);
}

.hero-logo-img {
  width: 60px;
  display: block;
}

/* Centered text stack — full width, no grid */
.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 0.25rem;
}

.hero-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.1;
}

.hero-tagline {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0.1rem 0 0;
  width: 100%;
  line-height: 1.3;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
  white-space: normal;
  font-size: 0.85rem;
  color: var(--neutral-600);
  margin: 0.15rem 0 0.6rem;
}

.hero-rating .lbpf-pill {
  white-space: nowrap;
  min-height: 28px;
  padding: var(--space-1) var(--space-4);
  font-size: var(--text-xs);
  line-height: 1;
}

.stars {
  color: var(--lisbon-gold);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.rating-number {
  white-space: nowrap;
  font-weight: 600;
}

.rating-count {
  white-space: nowrap;
  margin: 0 0.5rem 0 0;
}

/* Hero Tags Row */
.hero-tags-row {
  width: 100%;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.5rem 0.4rem;
  width: 100%;
}

.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===== HERO RESPONSIVE ===== */

@media (min-width: 481px) {
  .tile {
    padding: 1.5rem;
  }
}

@media (min-width: 769px) {
  .hero-avatar {
    width: 90px;
    height: 90px;
  }

  .hero-logo-img {
    width: 65px;
  }
}

@media (min-width: 1025px) {
  .hero-avatar {
    width: 95px;
    height: 95px;
  }

  .hero-name {
    font-size: 2rem;
  }

  .hero-logo-img {
    width: 70px;
  }

  .tile {
    padding: 1.5rem 2rem;
  }
}

@media (min-width: 1440px) {
  .hero-avatar {
    width: 100px;
    height: 100px;
  }

  .hero-name {
    font-size: 2.2rem;
  }

  .hero-tagline {
    font-size: 0.9rem;
  }

  .hero-logo-img {
    width: 75px;
  }
}

/* Mobile: label → name → [avatar --- logo] → tagline → rating → pills */
@media (max-width: 768px) {
  .tile-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    padding: 1rem;
    gap: 0.15rem;
  }

  .hero-avatar {
    position: static;
    width: 55px;
    height: 55px;
    justify-self: start;
    grid-row: 3;
    grid-column: 1;
  }

  .hero-logo {
    position: static;
    justify-self: end;
    grid-row: 3;
    grid-column: 2;
  }

  .hero-logo-img {
    width: 45px;
  }

  .hero-stack {
    display: contents;
  }

  .hero-label {
    grid-row: 1;
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .hero-name {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 1.4rem;
  }

  .hero-tagline {
    grid-row: 4;
    grid-column: 1 / -1;
    font-size: 0.78rem;
    margin: 0.15rem 0 0;
    text-align: center;
  }

  .hero-rating {
    grid-row: 5;
    grid-column: 1 / -1;
    flex-wrap: nowrap;
    font-size: 0.78rem;
    gap: 0.25rem;
    margin: 0.1rem 0 0.3rem;
  }

  .hero-tags-row {
    grid-row: 6;
    grid-column: 1 / -1;
  }

  .hero-tags {
    display: grid;
    grid-template-columns: repeat(3, auto);
    justify-content: center;
    gap: 0.35rem;
  }

  .hero-tags .lbpf-pill--tag {
    font-size: 0.72rem;
    padding: 0.25rem 0.6rem;
  }

  .rating-count {
    width: auto;
    margin: 0;
  }

  .hero-section {
    min-height: 80vh;
    padding: 4rem 0 1.5rem;
  }

  .tile-hero .wip-banner {
    display: none;
  }

  .tile-hero .wip-paint {
    display: inline-block;
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%) rotate(-10deg);
    padding: 0.55rem 1.05rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--pt-red), var(--pt-green));
    border: 1px solid var(--lisbon-gold);
    color: var(--pt-white);
    font-weight: 900;
    letter-spacing: 0.12em;
    box-shadow: var(--lbpf-shadow-strong);
    z-index: 3;
    pointer-events: none;
  }
}

/* Pill accent colors — 5 tags only (Tag 6 removed) */
.tag:nth-child(1) {
  background: var(--neutral-100) !important;
  color: var(--text-primary) !important;
  border: 1px solid var(--neutral-300) !important;
}

.tag:nth-child(2) {
  background: var(--neutral-400) !important; /* silver for Experienced level */
  color: var(--pt-white) !important;
}

.tag:nth-child(3) {
  background: var(--pt-green) !important;
  color: var(--pt-white) !important;
}

.tag:nth-child(4) {
  background: var(--pt-red) !important;
  color: var(--pt-white) !important;
}

.tag:nth-child(5) {
  background: var(--pt-blue) !important;
  color: var(--pt-white) !important;
}

.wip-paint {
  display: none;
}

/* ===== TILES SECTION ===== */

.tiles-section {
  background: transparent !important;
  padding: 1rem 0 0;
  margin-bottom: 0;
}

.page-container {
  background: transparent !important;
}

.tiles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Desktop: 880px centered container */
@media (min-width: 769px) {
  .tiles-grid {
    max-width: 880px;
  }
}

/* Tile Base */
.tile {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(26px) saturate(185%);
  -webkit-backdrop-filter: blur(26px) saturate(185%);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.50);
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.tile:hover {
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.tile-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 0.5rem;
}

.tile-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.tile-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.tile-body {
  display: none;
  padding: 1rem 0 0;
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.tile--open .tile-body {
  display: block;
}

.tile-body p {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tile-body ul {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.tile-body li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tile-body hr {
  margin: 1.5rem 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.tile-body h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* Specific Tile Styles */
.tile-bio,
.tile-tours,
.tile-availability,
.tile-reviews,
.tile-favourites,
.tile-gallery,
.tile-rewards,
.tile-social {
  grid-column: span 1;
}

/* Tours Grid & Cards */
.tours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1rem;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .tours-grid {
    grid-template-columns: 1fr;
  }
}

.tour-card {
  background: var(--pt-white);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--neutral-200);
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.tour-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.tour-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  background: var(--neutral-100);
}

.tour-card-content {
  padding: 0.75rem 1rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tour-card h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  min-height: 2.5em;
  line-height: 1.25;
  display: block;
}

.tour-category {
  margin: 0 0 0.15rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  font-style: italic;
}

.tour-meta {
  margin: 0 0 0.5rem 0;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
}

.tour-description {
  margin: 0 0 0.75rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.tour-description.tour-description--expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.tour-read-more {
  display: block;
  background: none;
  border: none;
  color: var(--lbpf-color-primary);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  margin: 0 0 0.75rem 0;
  text-align: left;
}

.tour-read-more:hover {
  text-decoration: underline;
}

.tour-btn {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.6rem 1rem;
  background: var(--lisbon-gold);
  color: var(--pt-white);
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: auto;
  text-decoration: none;
  text-align: center;
  box-sizing: border-box;
}

.tour-btn:hover {
  background: var(--lbpf-color-accent-dark);
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
  color: var(--pt-white);
}

.tour-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.tour-booking-note {
  text-align: center;
  font-size: 0.85em;
  color: var(--text-secondary);
  font-style: italic;
  margin: 0.5rem 0 0.75rem 0;
}

/* Calendar Styles */
.calendar {
  margin-bottom: 1rem;
  background: var(--pt-white);
  padding: 1rem;
  border-radius: var(--lbpf-radius-medium);
  border: 2px solid var(--neutral-200);
  box-shadow: var(--lbpf-shadow-medium);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-month {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  flex: 1;
}

.calendar-nav-btn {
  background: var(--pt-white);
  border: 2px solid var(--neutral-300);
  padding: 0.5rem 1rem;
  border-radius: var(--lbpf-radius-small);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--lbpf-shadow-soft);
}

.calendar-nav-btn:hover {
  background: var(--neutral-100);
  border-color: var(--lbpf-color-primary);
  transform: translateY(-1px);
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  font-size: 0.75rem;
}

.calendar-day {
  width: 100%;
  padding: 0.35rem;
  border: 2px solid var(--neutral-200);
  border-radius: var(--lbpf-radius-small);
  background: var(--pt-white);
  box-shadow: var(--lbpf-shadow-soft);
  transition: all 0.2s ease;
}

.calendar-day:hover:not(.other-month) {
  border-color: var(--lbpf-color-primary);
  transform: translateY(-1px);
  box-shadow: var(--lbpf-shadow-medium);
}

.calendar-day-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.calendar-day-weekday {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--neutral-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.calendar-day-number {
  font-size: 0.95rem;
  font-weight: 800;
}

.calendar-day-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.35rem;
  flex: 1;
}

.calendar-slot {
  border: 2px solid var(--neutral-200);
  border-radius: var(--lbpf-radius-small);
  background: var(--neutral-50);
  padding: 0.25rem;
  font-size: 0.65rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: var(--lbpf-shadow-soft);
}

.calendar-slot:hover {
  background: var(--neutral-100);
  border-color: var(--lbpf-color-primary);
  transform: translateY(-1px);
}

.calendar-slot.is-selected {
  box-shadow: 0 0 0 2px var(--neutral-500), 0 4px 12px rgba(0, 0, 0, 0.15);
  border-color: var(--neutral-500);
}

.calendar-slot.is-available {
  background: rgba(4, 106, 56, 0.22);
  border-color: rgba(4, 106, 56, 0.6);
  color: var(--neutral-900);
}

.calendar-slot.is-confirmed {
  background: var(--pt-red);
  border-color: var(--pt-red);
  color: var(--pt-white);
  box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

.calendar-slot.is-unavailable {
  background: rgba(220, 38, 38, 0.22);
  border-color: rgba(220, 38, 38, 0.6);
  color: var(--neutral-900);
}

.calendar-slot.is-emergency {
  background: rgba(245, 158, 11, 0.22);
  border-color: rgba(245, 158, 11, 0.6);
  color: var(--neutral-900);
}

.calendar-day--empty {
  border: 2px solid transparent;
  background: transparent;
  box-shadow: none;
}

.calendar-day--empty .calendar-day-top,
.calendar-day--empty .calendar-day-slots {
  visibility: hidden;
}

/* Booking Controls */
.booking-controls {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  cursor: default;
}

.field-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.field select,
.field input[type="number"] {
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  padding: 0.25rem 0.7rem;
  font-size: 0.9rem;
  background: var(--pt-white);
  color: var(--text-primary);
  height: 2.5rem;
  box-sizing: border-box;
}

#booking-guests,
#booking-children {
  max-width: 90px;
}

#booking-height-cm {
  max-width: 140px;
}

.field textarea {
  border-radius: 12px;
  border: 1px solid var(--neutral-300);
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  line-height: 1.4;
  resize: vertical;
  font-family: inherit;
}

.selected-slot {
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  padding: 0.35rem 0.8rem;
  background: var(--neutral-50);
  font-size: 0.85rem;
  color: var(--text-secondary);
  height: 2.5rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.restriction-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.restriction-pill {
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  padding: 0.15rem 0.65rem;
  background: var(--neutral-50);
  font-size: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.restriction-pill:hover {
  border-color: var(--neutral-400);
  background: var(--neutral-100);
}

.restriction-pill.restriction-pill-active {
  background: rgba(4, 106, 56, 0.14);
  border-color: rgba(4, 106, 56, 0.45);
  color: var(--neutral-900);
}

.restriction-pill.restriction-pill-active:hover {
  background: rgba(4, 106, 56, 0.22);
}

/* Contact form inputs */
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--lbpf-color-primary);
  box-shadow: 0 0 0 2px rgba(139, 20, 54, 0.1);
}

.time-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.time-pill {
  border-radius: 999px;
  border: 1px solid var(--neutral-300);
  padding: 0.2rem 0.8rem;
  background: var(--neutral-50);
  font-size: 0.8rem;
  cursor: pointer;
}

.time-pill-active {
  background: var(--neutral-900);
  color: var(--neutral-50);
  border-color: var(--neutral-900);
}

.booking-btn {
  margin-top: 0.35rem;
  align-self: flex-start;
  padding: 0.35rem 1.2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--lbpf-color-secondary), var(--lbpf-color-secondary-dark));
  color: var(--pt-white);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.booking-btn:hover {
  opacity: 0.95;
}

.request-note {
  margin: 0.25rem 0 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ===== RESPONSIVE (non-hero) ===== */

@media (max-width: 768px) {
  .tiles-grid {
    grid-template-columns: 1fr;
  }

  .tile {
    padding: 1rem;
  }

  .calendar-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.45rem;
  }

  .calendar-day--empty {
    display: none;
  }
  
  .booking-row {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ===========================
   REWARDS & PHOTOBOOK STYLES
   =========================== */

.rewards-intro,
.rewards-extras {
  margin-bottom: 1.5rem;
}

.rewards-intro h3,
.rewards-extras h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.rewards-note {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: 0.5rem;
}

.photobook-preview {
  margin-top: 2rem;
}

#flipbook-container {
  position: relative;
  margin-bottom: 3rem;
}

.flipbook-btn {
  transition: all 0.3s ease;
}

.flipbook-btn:hover {
  background: var(--neutral-600) !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.flipbook-btn:active {
  transform: translateY(0);
}

/* ===== GOOGLE REVIEWS STYLING ===== */

.google-review {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.google-review:last-child {
  border-bottom: none;
}

.google-review-header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.google-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lisbon-gold);
  color: var(--pt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.google-review-author {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.google-review-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.google-review-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.google-review-stars {
  display: flex;
  gap: 2px;
  color: var(--lbpf-color-accent);
  font-size: 1rem;
  line-height: 1;
}

.star-filled {
  color: var(--lbpf-color-accent);
}

.star-empty {
  color: var(--neutral-300);
}

.google-review-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.google-review-text {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-primary);
  padding-left: 0;
}

/* Mobile adjustments for reviews */
@media (max-width: 480px) {
  .google-review {
    padding: 0.75rem 0;
  }
  
  .google-review-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.85rem;
  }
  
  .google-review-text {
    font-size: 0.9rem;
  }
}

/* Desktop: add left padding to review text and response to align with name */
@media (min-width: 769px) {
  .google-review-text,
  .google-review-response {
    padding-left: 52px;
  }
}

.google-review-response {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

.google-review-response strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== FAVORITES MAP STYLING ===== */

.favorites-filters {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-group label {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.9rem;
}

.filter-select {
  padding: 0.5rem 0.75rem;
  border: 2px solid var(--neutral-200);
  border-radius: var(--lbpf-radius-small);
  background: var(--pt-white);
  color: var(--text-primary);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 180px;
}

.filter-select:focus {
  outline: none;
  border-color: var(--lisbon-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.filter-more-link {
  font-size: 0.8rem;
  color: var(--lbpf-color-primary);
  text-decoration: none;
  font-weight: 500;
  margin-top: 0.25rem;
}

.filter-more-link:hover {
  text-decoration: underline;
}

.favorites-map-container {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.favorites-map {
  width: 100%;
  height: 400px;
  border: none;
}

.favorites-list {
  max-height: 400px;
  overflow-y: auto;
}

.favorites-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--neutral-200);
  transition: background-color 0.2s ease;
}

.favorites-item:hover {
  background-color: var(--neutral-50);
}

.favorites-item:last-child {
  border-bottom: none;
}

.favorites-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lisbon-gold);
  color: var(--pt-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.favorites-item-content {
  flex: 1;
}

.favorites-item-name {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.favorites-item-category {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: capitalize;
  margin-bottom: 0.5rem;
}

.favorites-item-description {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}

.favorites-item-notes {
  font-size: 0.85rem;
  color: var(--lisbon-gold);
  font-style: italic;
  margin-bottom: 0.75rem;
}

.favorites-item-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.favorites-item-btn {
  padding: 0.3rem 0.8rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.favorites-item-btn.primary {
  background: var(--lisbon-gold);
  color: var(--pt-white);
}

.favorites-item-btn.primary:hover {
  background: var(--lbpf-color-accent-dark);
}

.favorites-item-btn.secondary {
  background: var(--neutral-200);
  color: var(--text-primary);
}

.favorites-item-btn.secondary:hover {
  background: var(--neutral-300);
}

.loading-message {
  text-align: center;
  padding: 2rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .favorites-filters {
    flex-direction: column;
    gap: 1rem;
  }
  
  .favorites-map {
    height: 300px;
  }
  
  .favorites-item {
    flex-direction: column;
    gap: 0.75rem;
  }
}

/* ===== GALLERY STYLING ===== */

.gallery-sections {
  margin-bottom: 1.5rem;
}

.gallery-section {
  display: none;
}

.gallery-section.active {
  display: block;
}

.gallery-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.3s ease;
}

.gallery-item:hover img {
  filter: brightness(0.9);
}

.gallery-item-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
  padding: 0.5rem;
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.gallery-nav-btn {
  padding: 0.5rem 1rem;
  border: 1px solid var(--neutral-300);
  background: var(--neutral-50);
  color: var(--text-secondary);
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.gallery-nav-btn:hover {
  border-color: var(--lisbon-gold);
  color: var(--text-primary);
}

.gallery-nav-btn.active {
  background: var(--lisbon-gold);
  color: var(--pt-white);
  border-color: var(--lisbon-gold);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 1;
}

.lightbox-content {
  position: relative;
  max-width: 88vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.lightbox-image {
  max-width: 88vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1.5rem;
  background: rgba(17, 24, 39, 0.5); /* --neutral-900 at 50% */
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 3;
  line-height: 1;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--lisbon-gold);
}

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 1rem;
  border-radius: 50%;
  transition: background 0.2s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.35rem 1rem;
  border-radius: 15px;
  z-index: 3;
}

/* ===== BOOKING MODAL ===== */

.booking-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.booking-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.booking-modal-content {
  position: relative;
  background: var(--pt-white);
  border-radius: var(--lbpf-radius-large);
  box-shadow: var(--lbpf-shadow-xlarge);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.booking-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid var(--neutral-200);
}

.booking-modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--text-primary);
}

.booking-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-secondary);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
  border-radius: var(--lbpf-radius-small);
  transition: all 0.2s ease;
}

.booking-modal-close:hover {
  background: var(--neutral-100);
  color: var(--text-primary);
}

.booking-modal-body {
  padding: 1.5rem;
}

.booking-summary {
  background: var(--neutral-50);
  border-radius: var(--lbpf-radius-medium);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.booking-summary h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--neutral-200);
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item .label {
  font-weight: 500;
  color: var(--text-secondary);
}

.summary-item .value {
  font-weight: 600;
  color: var(--text-primary);
}

.registration-form h4 {
  margin: 0 0 1rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--neutral-200);
  border-radius: var(--lbpf-radius-small);
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lbpf-color-primary);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
  margin-top: 0.125rem;
}

.checkbox-label a {
  color: var(--lbpf-color-primary);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.booking-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  padding: 1.5rem;
  border-top: 1px solid var(--neutral-200);
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: var(--lbpf-radius-medium);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--lbpf-color-primary);
  color: var(--pt-white);
}

.btn-primary:hover {
  background: var(--lbpf-color-primary-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--neutral-100);
  color: var(--text-primary);
  border: 2px solid var(--neutral-300);
}

.btn-secondary:hover {
  background: var(--neutral-200);
  border-color: var(--neutral-400);
}

/* ===== BOOKING CONFIRMATION ===== */

.booking-confirmation {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.confirmation-content {
  background: var(--pt-white);
  border-radius: var(--lbpf-radius-large);
  box-shadow: var(--lbpf-shadow-xlarge);
  max-width: 500px;
  width: 100%;
  padding: 2rem;
  text-align: center;
  animation: modalSlideIn 0.3s ease;
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  background: var(--lbpf-color-success);
  color: var(--pt-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
}

.confirmation-content h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  color: var(--text-primary);
}

.confirmation-content p {
  margin: 0 0 1.5rem 0;
  color: var(--text-secondary);
  line-height: 1.6;
}

.confirmation-details {
  background: var(--neutral-50);
  border-radius: var(--lbpf-radius-medium);
  padding: 1rem;
  margin: 1.5rem 0;
  text-align: left;
}

.confirmation-details h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.confirmation-details p {
  margin: 0.5rem 0;
  font-size: 0.875rem;
}

.confirmation-next-steps {
  text-align: left;
  margin: 1.5rem 0;
}

.confirmation-next-steps h4 {
  margin: 0 0 0.75rem 0;
  font-size: 1rem;
  color: var(--text-primary);
}

.confirmation-next-steps ol {
  margin: 0;
  padding-left: 1.5rem;
}

.confirmation-next-steps li {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.confirmation-actions {
  margin-top: 1.5rem;
}

/* ===== CALENDAR LEGEND ===== */

.calendar-legend {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--neutral-100);
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.calendar-legend strong {
  color: var(--text-primary);
}

.calendar-legend .legend-spacer {
  margin-left: 0.5rem;
}

/* ===== BOOKING CONTROLS ===== */

.booking-controls {
  margin-top: 1rem;
}

.booking-row {
  display: grid;
  gap: 1rem;
  margin-bottom: 1rem;
}

.booking-row--single {
  grid-template-columns: 1fr;
}

.booking-row--quad {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.booking-row .field {
  margin: 0;
}

.restriction-pills {
  margin-top: 0.25rem;
}

.booking-restrictions-textarea {
  margin-top: 0.5rem;
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--neutral-300);
  padding: 0.5rem 0.8rem;
  font-size: 0.85rem;
  font-family: inherit;
  resize: vertical;
  box-sizing: border-box;
}

.booking-accommodate-note {
  margin: 0.5rem 0 0 0;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.booking-btn-wrapper {
  text-align: center;
}

.booking-multiple-note {
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* ===== REWARDS TILE ===== */

.rewards-btn-wrapper {
  margin-top: 1rem;
}

.tile-divider {
  margin: 2rem 0;
  border: none;
  border-top: 1px solid var(--neutral-200);
}

.photobook-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.flipbook-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16/10;
  background: var(--neutral-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.flipbook-inner {
  width: 100%;
  height: 100%;
}

.photobook-btn-wrapper {
  text-align: center;
  margin-top: 1.5rem;
}

/* ===== LBPF REVIEW FORM (PLXT Tile 7) ===== */

.lbpf-review-form-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.lbpf-review-form {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.lbpf-review-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.lbpf-review-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.lbpf-review-optional {
  font-weight: 400;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

/* Star Rating */
.lbpf-star-rating {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.25rem;
}

.lbpf-star {
  background: none;
  border: none;
  font-size: 2.25rem;
  color: var(--neutral-300);
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s ease, transform 0.15s ease;
}

.lbpf-star:hover,
.lbpf-star.lbpf-star--hover {
  color: #F5A623;
  transform: scale(1.15);
}

.lbpf-star.lbpf-star--active {
  color: #F5A623;
}

.lbpf-star-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  min-height: 1.25em;
}

/* Textarea */
.lbpf-review-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--neutral-300);
  border-radius: var(--lbpf-radius-medium);
  font-size: 0.95rem;
  font-family: inherit;
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.2s ease;
}

.lbpf-review-textarea:focus {
  outline: none;
  border-color: var(--lbpf-color-primary);
  box-shadow: 0 0 0 3px rgba(4, 106, 56, 0.1);
}

.lbpf-review-charcount {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-align: right;
}

/* Photo Upload */
.lbpf-review-photo-upload {
  margin-top: 0.25rem;
}

.lbpf-review-file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
}

.lbpf-review-file-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  background: var(--neutral-50);
  border: 1px dashed var(--neutral-300);
  border-radius: var(--lbpf-radius-medium);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.lbpf-review-file-label:hover {
  border-color: var(--lbpf-color-primary);
  color: var(--lbpf-color-primary);
  background: var(--neutral-100);
}

.lbpf-review-file-icon {
  font-size: 1.25rem;
}

.lbpf-review-photo-preview {
  position: relative;
  display: inline-block;
  margin-top: 0.75rem;
}

.lbpf-review-photo-preview img {
  max-width: 200px;
  max-height: 150px;
  border-radius: var(--lbpf-radius-medium);
  object-fit: cover;
  border: 1px solid var(--neutral-200);
}

.lbpf-review-photo-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--lbpf-color-error, #DA291C);
  color: white;
  border: 2px solid white;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* Consent */
.lbpf-review-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
  cursor: pointer;
}

.lbpf-review-consent-checkbox {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--lbpf-color-primary);
  cursor: pointer;
}

.lbpf-review-consent-label a {
  color: var(--lbpf-color-primary);
  text-decoration: underline;
}

.lbpf-review-consent-revoke {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  padding-left: 2.25rem;
}

.lbpf-review-consent-revoke a {
  color: var(--lbpf-color-primary);
  text-decoration: underline;
}

/* Submit */
.lbpf-review-submit {
  width: 100%;
  font-size: 1.05rem;
  padding: 0.85rem 1.5rem;
}

.lbpf-review-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.lbpf-review-note {
  text-align: center;
  min-height: 1.25em;
}

/* ===== SOCIAL / CONTACT TILE ===== */

.social-links-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.social-icons-row {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 1rem;
}

.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--neutral-100);
  color: var(--text-secondary);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.social-icon-link:hover {
  background: var(--lbpf-color-primary);
  color: white;
  transform: scale(1.1);
}

.social-icon-link svg {
  width: 20px;
  height: 20px;
}

/* ===== CONTACT FORM ===== */

.contact-form h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.contact-form-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.contact-form-input {
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--neutral-300);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
}

.contact-form-textarea {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border: 1px solid var(--neutral-300);
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  resize: none;
  overflow: hidden;
  box-sizing: border-box;
  margin-bottom: 0.75rem;
}

.contact-form-submit {
  width: 100%;
}

/* ===== BOOKING MESSAGES ===== */

.booking-message {
  position: fixed;
  top: 1rem;
  right: 1rem;
  padding: 1rem 1.5rem;
  border-radius: var(--lbpf-radius-medium);
  box-shadow: var(--lbpf-shadow-strong);
  font-weight: 600;
  z-index: 1001;
  animation: slideInRight 0.3s ease;
  max-width: 300px;
}

.booking-message--error {
  background: var(--lbpf-color-error);
  color: var(--pt-white);
}

.booking-message--success {
  background: var(--lbpf-color-success);
  color: var(--pt-white);
}

.booking-message--info {
  background: var(--lbpf-color-primary);
  color: var(--pt-white);
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */

@media (max-width: 768px) {
  .booking-row--quad {
    grid-template-columns: 1fr 1fr;
  }
  
  .contact-form-grid {
    grid-template-columns: 1fr;
  }
  
  .booking-modal-content {
    margin: 1rem;
    max-height: calc(100vh - 2rem);
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .booking-modal-footer {
    flex-direction: column;
  }
  
  .btn {
    width: 100%;
  }
  
  .confirmation-content {
    margin: 1rem;
    padding: 1.5rem;
  }
  
  .booking-message {
    right: 0.5rem;
    left: 0.5rem;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .booking-row--quad {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .lightbox-prev {
    left: -60px;
  }
  
  .lightbox-next {
    right: -60px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
  
  .gallery-nav {
    gap: 0.25rem;
  }
  
  .gallery-nav-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .lightbox-prev {
    left: 10px;
  }
  
  .lightbox-next {
    right: 10px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
  
  .lightbox-counter {
    bottom: 10px;
  }
}
