/* ============================================================
   Tourfic Properties — TravelPro-inspired Styling
   Version 1.0.0

   Reuses tftpl- class names from the Tour/Destination template
   for consistent visual appearance, plus tfpp- for property-
   specific components.
   ============================================================ */

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --tfpp-primary: #102039;
  --tfpp-accent: #3fd0d4;
  --tfpp-accent-dk: #33b5b9;
  --tfpp-bg: #f5f5f5;
  --tfpp-white: #ffffff;
  --tfpp-border: #e0e0e0;
  --tfpp-text: #555555;
  --tfpp-text-dk: #333333;
  --tfpp-text-lt: #999999;
  --tfpp-radius: 6px;
  --tfpp-font-body: "Jost", sans-serif;
  --tfpp-font-head: "Playfair Display", serif;
}

/* ── Reset / Base ──────────────────────────────────────────── */
.tfpp-property-wrapper,
.tfpp-property-wrapper * {
  box-sizing: border-box;
}
.tfpp-property-wrapper {
  font-family: var(--tfpp-font-body);
  color: var(--tfpp-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ── Layout (shared with destination) ──────────────────────── */
.tfpp-property-wrapper .tftpl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.tfpp-property-wrapper .tftpl-row {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.tfpp-property-wrapper .tftpl-col-8 {
  flex: 0 0 calc(66.666% - 15px);
  max-width: calc(66.666% - 15px);
}
.tfpp-property-wrapper .tftpl-col-4 {
  flex: 0 0 calc(33.333% - 15px);
  max-width: calc(33.333% - 15px);
  position: sticky;
  top: 30px;
}

/* ── Spacer ────────────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-spacer--lg {
  height: 80px;
}

/* ── Header Title ──────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-tour-header-title {
  font-family: var(--tfpp-font-head);
  font-size: 42px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0 0 20px;
  line-height: 1.3;
}
.tfpp-property-wrapper .tftpl-tour-header-title small {
  display: block;
  font-family: var(--tfpp-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--tfpp-text-lt);
  margin-top: 6px;
}
.tfpp-property-wrapper .tftpl-tour-header-title small i {
  color: var(--tfpp-accent);
  margin-right: 4px;
}

/* ── Badge Row ─────────────────────────────────────────────── */
.tfpp-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.tfpp-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: var(--tfpp-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  letter-spacing: 0.02em;
}

.tfpp-star-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  color: #f5a623;
}

.tfpp-dest-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--tfpp-accent);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.tfpp-dest-link:hover {
  color: var(--tfpp-accent-dk);
  text-decoration: underline;
}

/* ── Featured Image ────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-featured-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 40px;
}
.tfpp-property-wrapper .tftpl-featured-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.tfpp-property-wrapper .tftpl-gallery-count {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(16, 32, 57, 0.75);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(4px);
}

/* ── Tour Title ────────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-tour-title {
  font-family: var(--tfpp-font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 10px 0 20px;
}

/* ── Description ───────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-tour-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--tfpp-text);
  margin-bottom: 20px;
}
.tfpp-property-wrapper .tftpl-tour-description p {
  margin: 0 0 14px;
}
.tfpp-property-wrapper .tftpl-divider {
  border: none;
  border-top: 1px solid var(--tfpp-border);
  margin: 35px 0;
}

/* ── Amenities (front-end) ─────────────────────────────────── */
.tfpp-amenities-section {
  margin-bottom: 40px;
}

.tfpp-amenities-grid-front {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 6px;
}

.tfpp-amenity-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  background: var(--tfpp-white);
  border: 1px solid var(--tfpp-border);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.tfpp-amenity-card:hover {
  border-color: var(--tfpp-accent);
  box-shadow: 0 2px 10px rgba(63,208,212,0.12);
  transform: translateY(-2px);
}

.tfpp-amenity-card i {
  font-size: 18px;
  color: var(--tfpp-accent);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.tfpp-amenity-card span {
  font-size: 13px;
  font-weight: 500;
  color: var(--tfpp-primary);
}

/* ── Tabs ──────────────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-tabs {
  margin-bottom: 50px;
}
.tfpp-property-wrapper .tftpl-tab-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 10px 14px 0;
  gap: 4px;
  background: var(--tfpp-primary);
  border-radius: var(--tfpp-radius) var(--tfpp-radius) 0 0;
}
.tfpp-property-wrapper .tftpl-tab-links li {
  margin: 0;
}
.tfpp-property-wrapper .tftpl-tab-link {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-radius: var(--tfpp-radius) var(--tfpp-radius) 0 0;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.tfpp-property-wrapper .tftpl-tab-links li.active .tftpl-tab-link,
.tfpp-property-wrapper .tftpl-tab-link:hover {
  background: var(--tfpp-white);
  color: var(--tfpp-primary);
}
.tfpp-property-wrapper .tftpl-tab-body {
  border: 1px solid var(--tfpp-border);
  border-top: none;
  border-radius: 0 0 var(--tfpp-radius) var(--tfpp-radius);
  padding: 24px;
  background: var(--tfpp-white);
}
.tfpp-property-wrapper .tftpl-tab {
  display: none;
}
.tfpp-property-wrapper .tftpl-tab.active {
  display: block;
}

/* ── Map ───────────────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-map-wrapper iframe,
.tfpp-property-wrapper .tftpl-map-wrapper > div {
  border-radius: var(--tfpp-radius);
  width: 100%;
}

/* ── Gallery Grid ──────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.tfpp-property-wrapper .tftpl-gallery-item {
  position: relative;
  border-radius: var(--tfpp-radius);
  overflow: hidden;
  display: block;
}
.tfpp-property-wrapper .tftpl-gallery-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tfpp-property-wrapper .tftpl-gallery-item:hover img {
  transform: scale(1.05);
}
.tfpp-property-wrapper .tftpl-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(16, 32, 57, 0);
  transition: background 0.3s;
}
.tfpp-property-wrapper .tftpl-gallery-item:hover .tftpl-gallery-overlay {
  background: rgba(16, 32, 57, 0.35);
}
.tfpp-property-wrapper .tftpl-gallery-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: opacity 0.3s;
}
.tfpp-property-wrapper .tftpl-gallery-item:hover .tftpl-gallery-icon {
  opacity: 1;
}

/* ── Section Titles ────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-section-title {
  font-family: var(--tfpp-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tfpp-accent);
  display: inline-block;
}

/* ── Footer Gallery ────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-footer-gallery {
  margin-bottom: 30px;
}
.tfpp-property-wrapper .tftpl-gallery-heading {
  font-family: var(--tfpp-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tfpp-accent);
  display: inline-block;
}
.tfpp-property-wrapper .tftpl-gallery-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.tfpp-property-wrapper .tftpl-gallery-thumb {
  border-radius: var(--tfpp-radius);
  overflow: hidden;
}
.tfpp-property-wrapper .tftpl-gallery-thumb img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.tfpp-property-wrapper .tftpl-gallery-thumb:hover img {
  transform: scale(1.05);
}

/* ── Sidebar ───────────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ── Info Widget ───────────────────────────────────────────── */
.tfpp-property-wrapper .tftpl-info-widget {
  background: var(--tfpp-white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tfpp-property-wrapper .tftpl-widget-title {
  font-family: var(--tfpp-font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--tfpp-accent);
}
.tfpp-property-wrapper .tftpl-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tfpp-property-wrapper .tftpl-info-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}
.tfpp-property-wrapper .tftpl-info-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.tfpp-property-wrapper .tftpl-info-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0;
  white-space: nowrap;
}
.tfpp-property-wrapper .tftpl-info-value {
  font-size: 15px;
  color: var(--tfpp-text);
  margin: 0;
  text-align: right;
}
.tfpp-property-wrapper .tftpl-info-value a {
  color: var(--tfpp-accent);
  text-decoration: none;
}
.tfpp-property-wrapper .tftpl-info-value a:hover {
  text-decoration: underline;
}
.tfpp-property-wrapper .tftpl-info-price {
  color: var(--tfpp-accent) !important;
  font-weight: 600;
}

.tfpp-stars-sidebar {
  color: #f5a623 !important;
}
.tfpp-stars-sidebar i {
  font-size: 14px;
}

/* ── Related Widget (sidebar) ──────────────────────────────── */
.tfpp-property-wrapper .tftpl-related-widget {
  background: var(--tfpp-white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
.tfpp-property-wrapper .tftpl-recent-tours {
  list-style: none;
  margin: 0;
  padding: 0;
}
.tfpp-property-wrapper .tftpl-recent-tours li {
  margin-bottom: 14px;
}
.tfpp-property-wrapper .tftpl-recent-tours li:last-child {
  margin-bottom: 0;
}
.tfpp-property-wrapper .tftpl-recent-tour {
  display: flex;
  gap: 12px;
  align-items: center;
}
.tfpp-property-wrapper .tftpl-recent-tour-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: var(--tfpp-radius);
  overflow: hidden;
}
.tfpp-property-wrapper .tftpl-recent-tour-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tfpp-property-wrapper .tftpl-recent-tour-info {
  flex: 1;
  min-width: 0;
}
.tfpp-property-wrapper .tftpl-recent-tour-title {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.3;
}
.tfpp-property-wrapper .tftpl-recent-tour-title a {
  color: var(--tfpp-primary);
  text-decoration: none;
}
.tfpp-property-wrapper .tftpl-recent-tour-title a:hover {
  color: var(--tfpp-accent);
}
.tfpp-property-wrapper .tftpl-recent-tour-meta {
  font-size: 12px;
  color: var(--tfpp-text-lt);
}
.tfpp-property-wrapper .tftpl-recent-tour-meta i {
  color: var(--tfpp-accent);
  margin-right: 3px;
}

/* ── Related Properties Grid ──────────────────────────────── */
.tfpp-related-section {
  margin-bottom: 30px;
}
.tfpp-property-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 4px;
}
.tfpp-prop-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: var(--tfpp-white);
  transition: box-shadow 0.3s, transform 0.3s;
}
.tfpp-prop-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}
.tfpp-prop-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.tfpp-prop-card-image {
  position: relative;
  overflow: hidden;
}
.tfpp-prop-card-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.tfpp-prop-card:hover .tfpp-prop-card-image img {
  transform: scale(1.06);
}
.tfpp-prop-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--tfpp-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 20px;
}
.tfpp-prop-card-badge i {
  margin-right: 4px;
}
.tfpp-prop-card-body {
  padding: 16px;
}
.tfpp-prop-card-loc {
  display: block;
  font-size: 12px;
  color: var(--tfpp-text-lt);
  margin-bottom: 6px;
}
.tfpp-prop-card-loc i {
  color: var(--tfpp-accent);
  margin-right: 3px;
}
.tfpp-prop-card-title {
  font-family: var(--tfpp-font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--tfpp-primary);
  margin: 0 0 10px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tfpp-prop-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f0f0f0;
  padding-top: 10px;
}
.tfpp-prop-card-stars {
  display: flex;
  gap: 2px;
  color: #f5a623;
  font-size: 12px;
}
.tfpp-prop-card-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--tfpp-accent);
}

/* ── Inquiry Widget ────────────────────────────────────────── */
.tfpp-inquiry-widget {
  background: var(--tfpp-bg);
  border-radius: 10px;
  padding: 24px;
}
.tfpp-inquiry-title {
  font-family: var(--tfpp-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0 0 18px;
}
.tfpp-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tfpp-field input[type="text"],
.tfpp-field input[type="email"],
.tfpp-field textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--tfpp-font-body);
  font-size: 14px;
  color: var(--tfpp-text-dk);
  background: var(--tfpp-white);
  border: 1px solid var(--tfpp-border);
  border-radius: var(--tfpp-radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none;
}
.tfpp-field input::placeholder,
.tfpp-field textarea::placeholder {
  color: #aaa;
  opacity: 1;
}
.tfpp-field input:focus,
.tfpp-field textarea:focus {
  border-color: var(--tfpp-accent);
  box-shadow: 0 0 0 3px rgba(63, 208, 212, 0.12);
}
.tfpp-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}
.tfpp-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 24px;
  font-family: var(--tfpp-font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--tfpp-white);
  background: var(--tfpp-accent);
  border: none;
  border-radius: var(--tfpp-radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.tfpp-submit-btn:hover {
  background: var(--tfpp-accent-dk);
}
.tfpp-submit-btn:active {
  transform: scale(0.98);
}
.tfpp-submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.tfpp-btn-loading {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── Message Box ───────────────────────────────────────────── */
.tfpp-message-box {
  margin-top: 4px;
  padding: 12px 16px;
  border-radius: var(--tfpp-radius);
  font-size: 13px;
  line-height: 1.5;
}
.tfpp-message-box.tfpp-success {
  background: #e8f9f0;
  border: 1px solid #a3e4bc;
  color: #1a7a42;
}
.tfpp-message-box.tfpp-error {
  background: #fef0ef;
  border: 1px solid #f5c2c0;
  color: #c0392b;
}

/* ── Input Error State ─────────────────────────────────────── */
.tfpp-field input.tfpp-input-error,
.tfpp-field textarea.tfpp-input-error {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

/* ── Showcase Sections (Bedrooms, Food, Activities, Facilities) ── */
.tfpp-showcase-section {
  margin-bottom: 48px;
}

/* Section Header */
.tfpp-showcase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--tfpp-border);
}

.tfpp-showcase-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #3fd0d4 0%, #1a9ea5 100%);
  color: #fff;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(63, 208, 212, 0.35);
}

.tfpp-showcase-heading {
  font-family: var(--tfpp-font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--tfpp-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

/* Grid Layout */
.tfpp-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Wide first card spans 2 columns */
.tfpp-showcase-card--wide {
  grid-column: span 2;
}

/* ── Card — immersive overlay style ── */
.tfpp-showcase-card {
  position: relative;
  height: 280px;
  border-radius: 16px;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}

.tfpp-showcase-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.tfpp-showcase-card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.tfpp-showcase-card:hover .tfpp-showcase-card-bg {
  transform: scale(1.08);
}

/* Placeholder when no image */
.tfpp-showcase-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f6f8 0%, #c4e5ea 100%);
  color: #8ec5cc;
  font-size: 52px;
}

/* Gradient overlay */
.tfpp-showcase-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 16, 35, 0.82) 0%,
    rgba(8, 16, 35, 0.40) 45%,
    rgba(8, 16, 35, 0.03) 100%
  );
  z-index: 1;
  transition: background 0.4s ease;
}

.tfpp-showcase-card:hover .tfpp-showcase-card-overlay {
  background: linear-gradient(
    0deg,
    rgba(8, 16, 35, 0.88) 0%,
    rgba(8, 16, 35, 0.50) 50%,
    rgba(8, 16, 35, 0.06) 100%
  );
}

/* Content — overlaid on image */
.tfpp-showcase-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 26px;
  z-index: 2;
}

.tfpp-showcase-card-name {
  font-family: var(--tfpp-font-head);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.2px;
}

.tfpp-showcase-card-name::after {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  border-radius: 2px;
  background: var(--tfpp-accent);
  margin-top: 6px;
  transition: width 0.35s ease;
}

.tfpp-showcase-card:hover .tfpp-showcase-card-name::after {
  width: 50px;
}

.tfpp-showcase-card-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

.tfpp-showcase-card:hover .tfpp-showcase-card-desc {
  max-height: 60px;
  opacity: 1;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 991px) {
  .tfpp-property-wrapper .tftpl-row {
    flex-direction: column;
  }
  .tfpp-property-wrapper .tftpl-col-8,
  .tfpp-property-wrapper .tftpl-col-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tfpp-property-wrapper .tftpl-col-4 {
    position: static;
  }
  .tfpp-property-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tfpp-amenities-grid-front {
    grid-template-columns: repeat(3, 1fr);
  }
  .tfpp-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tfpp-showcase-card--wide {
    grid-column: span 2;
  }
  .tfpp-showcase-card {
    height: 220px;
  }
}
@media (max-width: 600px) {
  .tfpp-property-wrapper .tftpl-featured-image img {
    height: 240px;
  }
  .tfpp-property-wrapper .tftpl-tour-header-title {
    font-size: 22px;
  }
  .tfpp-property-wrapper .tftpl-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .tfpp-property-wrapper .tftpl-gallery-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .tfpp-property-grid {
    grid-template-columns: 1fr;
  }
  .tfpp-amenities-grid-front {
    grid-template-columns: repeat(2, 1fr);
  }
  .tfpp-showcase-grid {
    grid-template-columns: 1fr;
  }
  .tfpp-showcase-card--wide {
    grid-column: span 1;
  }
  .tfpp-showcase-card {
    height: 200px;
  }
  .tfpp-showcase-heading {
    font-size: 20px;
  }
  .tfpp-property-wrapper .tftpl-tab-links {
    flex-wrap: wrap;
  }
}
