/* ===== Project View ===== */

.pv-wrapper {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 20px 60px;
  font-family: 'Poppins', sans-serif;
  background: #f6f8fb;
  border-radius: 28px;
}

.pv-header-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(15, 30, 69, 0.06);
  padding: 22px 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
  margin-bottom: 28px;
}

.pv-badges {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pv-badge {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 5px 11px;
  border-radius: 999px;
  text-transform: uppercase;
}

.pv-badge-rera {
  background: #f3e8ff;
  color: #9333ea;
}

.pv-badge-verified {
  background: #dcfce7;
  color: #16a34a;
}

.pv-badge-new {
  background: #dbeafe;
  color: #2563eb;
}

.pv-title {
  font-size: 24px;
  font-weight: 800;
  color: #202431;
  margin: 0 0 7px;
  line-height: 1.18;
}

.pv-location {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #667085;
  margin: 0;
}

.pv-location i {
  color: #f97316;
  font-size: 15px;
}

.pv-header-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  width: 210px;
}

.pv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 11px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
  width: 100%;
}

.pv-btn-outline {
  color: #f97316;
  background: #ffffff;
  border: 1.5px solid #f97316;
}

.pv-btn-outline:hover {
  background: #fff7ed;
}

.pv-btn-filled {
  color: #ffffff;
  background: #f97316;
  border: 1.5px solid #f97316;
}

.pv-btn-filled:hover {
  background: #ea6a0c;
}

.pv-media-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 28px;
}

.pv-gallery {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 14px;
  height: 480px;
  align-items: stretch;
  margin-bottom: 14px;
}

.pv-gallery--single {
  grid-template-columns: 1fr;
}

.pv-gallery-main {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 30, 69, 0.08);
}

button.pv-gallery-main,
button.pv-gallery-thumb {
  border: 0;
  padding: 0;
  background: #ffffff;
  cursor: pointer;
}

.pv-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.pv-gallery-main--video {
  background: #0f172a;
}

.pv-gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv-gallery-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 14px;
  height: 100%;
  min-height: 0;
}

.pv-gallery-thumb {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 30, 69, 0.08);
}

.pv-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.35s ease;
}

.pv-gallery-thumb:hover img {
  transform: scale(1.05);
}

.pv-gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 30, 69, 0.5);
  backdrop-filter: blur(2px);
}

.pv-gallery-overlay span {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(15, 23, 42, 0.36);
}

.pv-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
}

.pv-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.82);
}

.pv-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
  height: min(86vh, 760px);
  margin: 7vh auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pv-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 18px;
  object-fit: contain;
  background: #ffffff;
}

.pv-lightbox__close,
.pv-lightbox__nav {
  position: absolute;
  border: 0;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.pv-lightbox__close {
  top: 8px;
  right: 8px;
}

.pv-lightbox__nav--prev {
  left: 8px;
}

.pv-lightbox__nav--next {
  right: 8px;
}

.pv-quickfacts {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(15, 30, 69, 0.06);
  padding: 26px 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.pv-qf-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  flex: 0 0 auto;
  min-width: 240px;
}

.pv-qf-icon {
  font-size: 22px;
  color: #f97316;
  margin-top: 2px;
}

.pv-qf-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.pv-qf-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #94a3b8;
}

.pv-qf-value {
  font-size: 17px;
  font-weight: 700;
  color: #0f1e45;
}

.pv-qf-divider {
  width: 1px;
  height: 40px;
  background: #eef1f6;
  flex-shrink: 0;
}

.pv-properties {
  margin-top: 30px;
  margin-bottom: 28px;
}

.pv-properties-title {
  font-size: 26px;
  font-weight: 800;
  color: #0f1e45;
  margin: 0 0 8px;
}

.pv-properties-subtitle {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 20px;
}

.pv-section-pagination {
  margin-top: 18px;
}

.pv-section-pagination .properties-pagination {
  margin-top: 0 !important;
  padding-top: 18px !important;
}

.pv-filters-bar {
  background: #f6f8fb;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.pv-filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pv-tab {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pv-tab:hover {
  border-color: #1a5cdc;
  color: #1a5cdc;
}

.pv-tab.active {
  background: #0f1e45;
  border-color: #0f1e45;
  color: #ffffff;
}

.pv-filter-dropdowns {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pv-select {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.pv-select:focus {
  outline: none;
  border-color: #1a5cdc;
}

.pv-units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pv-unit-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(15, 30, 69, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.pv-unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 30, 69, 0.1);
}

.pv-unit-image {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.pv-unit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv-unit-wishlist {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 30, 69, 0.55);
  border: none;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(2px);
  transition: background 0.2s ease;
}

.pv-unit-wishlist:hover {
  background: rgba(249, 115, 22, 0.85);
}

.pv-unit-wishlist.wishlist-added {
  background: rgba(15, 30, 69, 0.55);
  color: #dc3545 !important;
}

.pv-unit-photos {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(15, 30, 69, 0.65);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pv-unit-body {
  padding: 20px;
  background: #ffffff;
  border-top: 1px solid #eef1f6;
  min-height: 176px;
}

.pv-unit-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.pv-unit-heading h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f1e45;
  margin: 0 0 4px;
}

.pv-unit-heading p {
  font-size: 13px;
  color: #94a3b8;
  margin: 0;
}

.pv-unit-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  flex-shrink: 0;
  min-width: 132px;
  text-align: right;
  margin-bottom: 0;
}

/* Quick Facts pills */
.pv-quickfacts {
  background: transparent;
  border: 0;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.pv-quickfacts::-webkit-scrollbar {
  display: none;
}

.pv-qf-pill {
  display: inline-flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 72px;
  padding: 14px 22px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  flex: 0 0 auto;
  max-width: 100%;
}

.pv-qf-icon {
  font-size: 20px;
  color: #f97316;
  margin-top: 0;
  flex-shrink: 0;
}

.pv-qf-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.pv-qf-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #1e293b;
  white-space: nowrap;
}

.pv-qf-value {
  font-size: 20px;
  font-weight: 600;
  color: #0f172a;
  white-space: nowrap;
}

.pv-qf-divider,
.pv-qf-item {
  display: none !important;
}

.pv-price-value {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  color: #1d4ed8;
}

.pv-price-label {
  margin-top: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #94a3b8;
}

.pv-unit-specs {
  background: #f6f8fb;
  border-radius: 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin-bottom: 18px;
  align-items: start;
}

.pv-spec {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pv-spec-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #94a3b8;
}

.pv-spec-value {
  font-size: 14px;
  font-weight: 700;
  color: #0f1e45;
}

.pv-unit-actions {
  display: flex;
  gap: 10px;
}

.pv-btn-view,
.pv-btn-pdf {
  flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 10px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.pv-btn-view {
  background: #0f1e45;
  color: #ffffff;
  border: 1px solid #0f1e45;
}

.pv-btn-view:hover {
  background: #16295e;
}

.pv-btn-pdf {
  background: #f1f5f9;
  color: #334155;
  border: 1px solid #e2e8f0;
}

.pv-btn-pdf:hover {
  background: #e2e8f0;
}

.pv-builder-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 30, 69, 0.06);
  padding: 24px 26px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.pv-builder-card__brand {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  flex: 1;
  min-width: 0;
}

.pv-builder-card__logo-wrap {
  width: 82px;
  height: 82px;
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  flex-shrink: 0;
}

.pv-builder-card__logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv-builder-card__copy h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #201f2c;
}

.pv-builder-card__copy p {
  margin: 0;
  color: #5c677d;
  font-size: 16px;
  line-height: 1.95;
  max-width: 760px;
  white-space: pre-line;
}

.pv-builder-card__stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.pv-builder-card__stat strong {
  display: block;
  color: #f97316;
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
}

.pv-builder-card__stat span {
  display: block;
  margin-top: 6px;
  color: #23293a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.45px;
}

.pv-builder-card__actions {
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

.pv-builder-card__action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1.5px solid #f97316;
  border-radius: 12px;
  color: #f97316;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  background: #fff;
  cursor: pointer;
  appearance: none;
}

.pv-builder-card__action:hover {
  background: #fff7ed;
}

.pv-about-project {
  margin-bottom: 32px;
}

.pv-about-project h2 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: #25202a;
}

.pv-about-project__card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(15, 30, 69, 0.06);
  padding: 26px 28px;
}

.pv-about-project__card p {
  margin: 0;
  color: #3d4658;
  font-size: 16px;
  line-height: 1.85;
  white-space: pre-line;
}

.pv-about-project__highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 22px;
}

.pv-about-project__highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #394253;
  font-size: 15px;
  line-height: 1.65;
}

.pv-about-project__highlight i {
  color: #f97316;
  font-size: 17px;
  margin-top: 3px;
}

.pv-amenities-section,
.pv-layouts-section,
.pv-neighbourhood-section,
.pv-faq-section {
  margin-bottom: 32px;
}

.pv-similar-projects-section {
  margin-bottom: 32px;
}

.pv-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.pv-section-head h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #25202a;
}

.pv-section-head span {
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
}

.pv-amenities-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.pv-amenity-card {
  background: #ffffff;
  border: 1px solid #eef1f6;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(15, 30, 69, 0.05);
  padding: 22px 18px;
  text-align: center;
}

.pv-amenity-card__icon {
  color: #f97316;
  font-size: 25px;
  margin-bottom: 14px;
}

.pv-amenity-card__label {
  color: #202431;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.pv-layouts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 400px);
    gap: 16px;
    justify-content: start;
}

.pv-layout-card {
    max-width: 400px;
    width: 100%;
    border-radius: 32px;
    padding: 24px;
    background: #F2F4F8;
    box-shadow: none;
    border: none;
    overflow: hidden;
}

.pv-layout-card__media {
    padding: 0;
    margin-bottom: 16px;
    background: transparent;
}

.pv-layout-card__media img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.pv-layout-card__body {
  padding: 0;
}

.pv-layout-card__body h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #25202a;
}

.pv-layout-card__body p {
  margin: 18px;
  color: #667085;
  font-size: 14px;
  line-height: 1.6;
}

.pv-layout-card__actions {
    display: flex;
    gap: 10px;
}

.pv-layout-card__actions a {
    flex: 1;
    height: 42px;
    border-radius: 999px;
}

.pv-layout-card__download {
  min-width: 160px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  background: #0a6c9c;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.pv-layout-card__download:hover {
  background: #09597f;
}

.pv-neighbourhood-section h2 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: #25202a;
}

.pv-neighbourhood-card {
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(15, 30, 69, 0.05);
  padding: 18px;
}

.pv-neighbourhood-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.pv-neighbourhood-map-wrap {
  min-height: 360px;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f7fb;
}

.pv-neighbourhood-map {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}

.pv-neighbourhood-panel {
  display: flex;
  flex-direction: column;
}

.pv-neighbourhood-panel h3 {
  margin: 4px 0 14px;
  font-size: 22px;
  font-weight: 800;
  color: #25202a;
}

.pv-neighbourhood-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pv-neighbourhood-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 16px;
  background: #f9fafc;
  border: 1px solid #edf1f6;
}

.pv-neighbourhood-item__icon {
  width: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pv-neighbourhood-item__copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pv-neighbourhood-item__copy strong {
  color: #222733;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

.pv-neighbourhood-item__copy span {
  color: #60697b;
  font-size: 14px;
  line-height: 1.5;
}

.pv-neighbourhood-empty {
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #667085;
  font-size: 15px;
  line-height: 1.7;
  background: #f9fafc;
  border-radius: 18px;
  padding: 24px;
}

.pv-neighbourhood-empty--panel {
  min-height: 100%;
}

.pv-faq-section h2 {
  margin: 0 0 18px;
  font-size: 24px;
  font-weight: 800;
  color: #25202a;
}

.pv-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pv-faq-item {
  background: #ffffff;
  border: 1px solid #edf0f5;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(15, 30, 69, 0.04);
  overflow: hidden;
}

.pv-faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 20px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: #25202a;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.pv-faq-question i {
  color: #f97316;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.pv-faq-item.is-open .pv-faq-question i {
  transform: rotate(180deg);
}

.pv-faq-answer {
  padding: 0 18px 18px;
  border-top: 1px solid #f1f3f7;
}

.pv-faq-answer p {
  margin: 14px 0 0;
  color: #667085;
  font-size: 15px;
  line-height: 1.8;
}

.pv-similar-projects-section h2 {
  margin: 0 0 20px;
  font-size: 24px;
  font-weight: 800;
  color: #25202a;
}

.pv-similar-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pv-similar-project-card {
  background: #ffffff;
  border: 1px solid #f0c5a8;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 30, 69, 0.04);
}

.pv-similar-project-card__media {
  display: block;
  height: 164px;
  overflow: hidden;
}

.pv-similar-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv-similar-project-card__body {
  padding: 18px 20px 20px;
}

.pv-similar-project-card__copy h3 {
  margin: 0 0 4px;
  color: #25202a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.pv-similar-project-card__copy p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.55;
}

.pv-similar-project-card__footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pv-similar-project-card__footer strong {
  color: #f97316;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}

.pv-similar-project-card__footer a {
  color: #f97316;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.pv-similar-project-card__footer a:hover {
  text-decoration: underline;
}

@media (max-width: 1000px) {
  .pv-units-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pv-builder-card {
    flex-direction: column;
  }

  .pv-builder-card__actions {
    width: 100%;
  }

  .pv-amenities-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pv-layouts-grid {
    grid-template-columns: 1fr;
  }

  .pv-neighbourhood-grid {
    grid-template-columns: 1fr;
  }

  .pv-neighbourhood-panel h3 {
    margin-top: 0;
  }

  .pv-similar-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .pv-gallery {
    grid-template-columns: 1fr;
    height: auto;
  }

  .pv-gallery-main {
    height: 280px;
  }

  .pv-gallery-side {
    height: auto;
    grid-template-rows: repeat(2, 140px);
  }

  .pv-header-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .pv-header-actions {
    width: min(100%, 320px);
  }

  .pv-btn {
    flex: none;
  }

  .pv-quickfacts {
    flex-direction: column;
    align-items: flex-start;
  }

  .pv-qf-divider {
    display: none;
  }

  .pv-filters-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .pv-builder-card__brand {
    flex-direction: column;
  }

  .pv-about-project__highlights {
    grid-template-columns: 1fr;
  }

  .pv-amenities-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pv-neighbourhood-map-wrap,
  .pv-neighbourhood-map {
    min-height: 300px;
  }

  .pv-similar-projects-grid {
    grid-template-columns: 1fr;
  }

  .pv-lightbox__dialog {
    width: min(94vw, 1100px);
    height: min(78vh, 620px);
    margin: 10vh auto;
  }

  .pv-gallery-overlay span {
    font-size: 14px;
  }
}

@media (max-width: 640px) {
  .pv-units-grid {
    grid-template-columns: 1fr;
  }

  .pv-filter-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 4px;
  }

  .pv-tab {
    flex-shrink: 0;
  }

  .pv-neighbourhood-item {
    padding: 16px 14px;
  }

  .pv-neighbourhood-item__copy strong {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .pv-title {
    font-size: 22px;
  }

  .pv-header-actions {
    width: 100%;
  }
}
/* Similar Projects Card Hover */
.pv-similar-project-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

.pv-similar-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(15, 30, 69, 0.14);
}

/* Image Zoom Effect */
.pv-similar-project-card__media {
    overflow: hidden;
}

.pv-similar-project-card__media img {
    transition: transform 0.45s ease;
}

.pv-similar-project-card:hover .pv-similar-project-card__media img {
    transform: scale(1.08);
}

/* View Details Hover */
.pv-similar-project-card__footer a {
    transition: color 0.3s ease;
}

.pv-similar-project-card:hover .pv-similar-project-card__footer a {
    color: #ea580c;
}
/* ===== Available Properties - Mobile Fix ===== */
@media (max-width: 640px) {
  .pv-wrapper {
    padding-left: 14px;
    padding-right: 14px;
  }

  .pv-properties {
    margin-top: 24px;
  }

  .pv-properties-title {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 7px;
  }

  .pv-properties-subtitle {
    font-size: 12px;
    line-height: 1.65;
    margin-bottom: 14px;
  }

  .pv-filters-bar {
    padding: 14px;
    gap: 14px;
    border-radius: 15px;
    margin-bottom: 20px;
  }

  .pv-filter-tabs {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 8px;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .pv-filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .pv-tab {
    flex: 0 0 auto;
    font-size: 12px;
    padding: 9px 16px;
    white-space: nowrap;
  }

  .pv-filter-dropdowns {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pv-select {
    width: 100%;
    min-width: 0;
    height: 36px;
    font-size: 11px;
    padding: 7px 30px 7px 11px;
    background-position: right 9px center;
    background-size: 13px;
  }

  .pv-filter-dropdowns .pv-select:last-child {
    grid-column: 1 / 2;
  }

  .pv-units-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pv-unit-card {
    width: 100%;
    border-radius: 14px;
  }

  .pv-unit-image {
    height: 190px;
  }

  .pv-unit-wishlist {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }

  .pv-unit-body {
    padding: 15px;
    min-height: auto;
  }

  .pv-unit-top {
    gap: 10px;
    margin-bottom: 12px;
  }

  .pv-unit-heading {
    min-width: 0;
  }

  .pv-unit-heading h3 {
    font-size: 15px;
  }

  .pv-unit-heading p {
    font-size: 11px;
  }

  .pv-unit-price {
    min-width: 100px;
  }

  .pv-price-value {
    font-size: 16px;
  }

  .pv-price-label {
    font-size: 9px;
  }

  .pv-unit-specs {
    padding: 12px;
    gap: 10px;
    margin-bottom: 0;
  }

  .pv-spec-label {
    font-size: 9px;
  }

  .pv-spec-value {
    font-size: 12px;
  }
}
/* ===== Builder Card Mobile Fix ===== */
@media (max-width: 640px) {
  .pv-builder-card {
    padding: 18px 16px;
    border-radius: 18px;
    gap: 18px;
    margin-bottom: 24px;
  }

  .pv-builder-card__brand {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 14px;
    row-gap: 8px;
    align-items: start;
    width: 100%;
  }

  .pv-builder-card__logo-wrap {
    width: 64px;
    height: 64px;
    border-radius: 13px;
    grid-column: 1;
    grid-row: 1;
  }

  .pv-builder-card__copy {
    display: contents;
  }

  .pv-builder-card__copy h3 {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .pv-builder-card__copy p {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.8;
    max-width: 100%;
  }

  .pv-builder-card__stats {
    grid-column: 1 / -1;
    grid-row: 3;
    width: 100%;
    margin-top: 8px;
    gap: 20px;
  }

  .pv-builder-card__stat strong {
    font-size: 21px;
  }

  .pv-builder-card__stat span {
    margin-top: 5px;
    font-size: 9px;
    letter-spacing: 0.35px;
  }

  .pv-builder-card__actions {
    width: 100%;
    gap: 8px;
  }

  .pv-builder-card__action {
    width: 100%;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 12px;
  }
}
/* ===== Connect Builder Modal - Mobile ===== */
@media (max-width: 640px) {

  #pvConnectBuilderModal .modal-dialog {
    margin: 12px;
  }

  #pvConnectBuilderModal .modal-content {
    border-radius: 18px;
  }

  #pvConnectBuilderModal .modal-header {
    padding: 16px;
  }

  #pvConnectBuilderModal .modal-body {
    padding: 16px;
  }

  #pvConnectBuilderModal .modal-footer {
    padding: 14px 16px 18px;
    gap: 10px;
    flex-direction: column-reverse;
  }

  #pvConnectBuilderModal .modal-title {
    font-size: 22px;
    line-height: 1.2;
  }

  #pvConnectBuilderModal .modal-header small {
    display: block;
    font-size: 13px;
    line-height: 1.5;
  }

  #pvConnectBuilderModal .alert {
    padding: 12px;
    font-size: 13px;
    border-radius: 12px;
    margin-bottom: 16px;
  }

  #pvConnectBuilderModal .form-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  #pvConnectBuilderModal .form-control {
    font-size: 14px;
    min-height: 46px;
    border-radius: 10px;
  }

  #pvConnectBuilderModal textarea.form-control {
    min-height: 120px;
    resize: vertical;
  }

  #pvConnectBuilderModal .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
  }

  #pvConnectBuilderModal .btn-close {
    transform: scale(.9);
  }
}
/* ===== Project Detail Mobile Gallery + Header ===== */
@media (max-width: 640px) {

  /* Gallery */
  .pv-gallery {
    gap: 10px;
    margin-bottom: 16px;
  }

  .pv-gallery-main {
    height: 220px;
    border-radius: 14px;
  }

  .pv-gallery-side {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 95px;
    gap: 8px;
  }

  .pv-gallery-thumb {
    border-radius: 12px;
  }

  .pv-gallery-overlay span {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Header Card */
  .pv-header-card {
    padding: 18px 16px;
    border-radius: 18px;
    margin-bottom: 20px;
  }

  .pv-title {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .pv-location {
    font-size: 13px;
  }

  .pv-header-actions {
    width: 100%;
    margin-top: 14px;
    gap: 10px;
  }

  .pv-btn {
    width: 100%;
    min-height: 42px;
    font-size: 13px;
    border-radius: 10px;
  }

  .pv-btn i {
    font-size: 13px;
  }

  /* Quick Facts */
  .pv-quickfacts {
    padding: 16px;
    gap: 14px;
    border-radius: 18px;
  }

  .pv-qf-item {
    min-width: calc(50% - 8px);
    gap: 10px;
  }

  .pv-qf-icon {
    font-size: 18px;
  }

  .pv-qf-label {
    font-size: 10px;
  }

  .pv-qf-value {
    font-size: 16px;
  }
}
/* ===== Project Detail Remaining Mobile UI ===== */
@media (max-width:640px){

  /* About Project */
  .pv-about-project{
    margin-bottom:24px;
  }

  .pv-about-project h2{
    font-size:20px;
    line-height:1.25;
    margin-bottom:14px;
  }

  .pv-about-project__card{
    padding:18px 16px;
    border-radius:18px;
  }

  .pv-about-project__card p{
    font-size:14px;
    line-height:1.8;
  }

  .pv-about-project__highlights{
    gap:14px;
    margin-top:18px;
  }

  .pv-about-project__highlight{
    font-size:13px;
    gap:8px;
  }


  /* Architecture & Layout */
  .pv-layouts-section{
    margin-bottom:24px;
  }

  .pv-layouts-section h2{
    font-size:20px;
    margin-bottom:14px;
  }

  .pv-layout-card{
    max-width:100%;
    padding:16px;
    border-radius:22px;
  }

  .pv-layout-card__media img{
    height:180px;
    border-radius:14px;
  }

  .pv-layout-card__body h3{
    font-size:18px;
    margin-top:12px;
  }

  .pv-layout-card__body p{
    margin:8px 0 14px;
    font-size:13px;
  }

  .pv-layout-card__download{
    width:100%;
    min-height:44px;
    font-size:13px;
  }


  /* Neighbourhood */
  .pv-neighbourhood-section h2{
    font-size:20px;
    margin-bottom:14px;
  }

  .pv-neighbourhood-card{
    padding:14px;
    border-radius:18px;
  }

  .pv-neighbourhood-map-wrap,
  .pv-neighbourhood-map{
    min-height:260px;
    border-radius:14px;
  }

  .pv-neighbourhood-panel h3{
    font-size:18px;
    margin:16px 0 12px;
  }


  /* Nearby Landmark Card */
  .pv-neighbourhood-list{
    gap:10px;
  }

  .pv-neighbourhood-item{
    padding:14px;
    border-radius:14px;
    gap:10px;
  }

  .pv-neighbourhood-item__icon{
    font-size:16px;
    width:20px;
  }

  .pv-neighbourhood-item__copy strong{
    font-size:15px;
    line-height:1.35;
  }

  .pv-neighbourhood-item__copy span{
    font-size:12px;
  }

}
/* ===== FAQ + Similar Projects Mobile Fix ===== */
@media (max-width: 640px) {

  /* FAQ Section */
  .pv-faq-section {
    margin-bottom: 26px;
  }

  .pv-faq-section h2 {
    font-size: 21px;
    line-height: 1.2;
    margin-bottom: 14px;
  }

  .pv-faq-list {
    gap: 10px;
  }

  .pv-faq-item {
    border-radius: 14px;
  }

  .pv-faq-question {
    padding: 16px 14px;
    gap: 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .pv-faq-question span {
    flex: 1;
    min-width: 0;
  }

  .pv-faq-question i {
    flex-shrink: 0;
    font-size: 12px;
  }

  .pv-faq-answer {
    padding: 0 14px 15px;
  }

  .pv-faq-answer p {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.75;
  }


  /* Similar Projects */
  .pv-similar-projects-section {
    margin-bottom: 24px;
  }

  .pv-similar-projects-section h2 {
    font-size: 21px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .pv-similar-projects-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pv-similar-project-card {
    width: 100%;
    border-radius: 14px;
  }

  .pv-similar-project-card__media {
    height: 175px;
  }

  .pv-similar-project-card__body {
    padding: 14px 16px 16px;
  }

  .pv-similar-project-card__copy h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .pv-similar-project-card__copy p {
    font-size: 12px;
  }

  .pv-similar-project-card__footer {
    margin-top: 14px;
    gap: 10px;
  }

  .pv-similar-project-card__footer strong {
    font-size: 14px;
  }

  .pv-similar-project-card__footer a {
    font-size: 12px;
    white-space: nowrap;
  }

  /* Mobile ma heavy hover movement remove */
  .pv-similar-project-card:hover {
    transform: none;
    box-shadow: 0 8px 22px rgba(15, 30, 69, 0.06);
  }

  .pv-similar-project-card:hover
  .pv-similar-project-card__media img {
    transform: none;
  }
}
/* ===== Tablet Gallery - Desktop Style ===== */
@media (min-width: 641px) and (max-width: 900px) {

  .pv-gallery {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 1fr);
    gap: 12px;
    height: 360px;
    margin-bottom: 18px;
    align-items: stretch;
  }

  .pv-gallery-main {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 16px;
  }

  .pv-gallery-main img,
  .pv-gallery-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pv-gallery-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .pv-gallery-thumb {
    width: 100%;
    height: 100%;
    min-height: 0;
    border-radius: 14px;
  }

  .pv-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .pv-gallery-overlay span {
    font-size: 12px;
    padding: 6px 10px;
  }
}
/* ===== Tablet Header + Quick Facts Fix ===== */
@media (min-width: 641px) and (max-width: 900px) {

  /* Project title card */
  .pv-header-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    align-items: center;
    gap: 24px;
    padding: 22px 24px;
    border-radius: 18px;
  }

  .pv-header-left {
    min-width: 0;
  }

  .pv-title {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 7px;
  }

  .pv-location {
    font-size: 13px;
  }

  .pv-header-actions {
    width: 230px;
    margin: 0;
    gap: 10px;
  }

  .pv-btn {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    font-size: 12px;
    border-radius: 10px;
  }

  /* Quick facts card */
  .pv-quickfacts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    gap: 22px 30px;
    padding: 22px 26px;
    border-radius: 18px;
  }

  .pv-qf-item {
    width: 100%;
    min-width: 0;
    align-items: center;
    gap: 12px;
  }

  .pv-qf-divider {
    display: none;
  }

  .pv-qf-icon {
    width: 24px;
    font-size: 20px;
    text-align: center;
    flex-shrink: 0;
  }

  .pv-qf-text {
    gap: 4px;
  }

  .pv-qf-label {
    font-size: 10px;
  }

  .pv-qf-value {
    font-size: 15px;
  }
}
/* ===== Tablet - Available Properties + Builder + About ===== */
@media (min-width: 641px) and (max-width: 900px) {

  /* Available Properties */
  .pv-properties {
    margin-top: 24px;
  }

  .pv-filters-bar {
    padding: 18px;
    gap: 16px;
    align-items: flex-start;
  }

  .pv-filter-tabs {
    width: 100%;
  }

  .pv-filter-dropdowns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 10px;
  }

  .pv-select {
    width: 100%;
    min-width: 0;
  }

  .pv-units-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .pv-unit-card {
    width: 100%;
  }

  .pv-unit-image {
    height: 180px;
  }

  .pv-unit-body {
    padding: 16px;
    min-height: auto;
  }

  .pv-unit-top {
    flex-direction: column;
    gap: 8px;
  }

  .pv-unit-price {
    align-items: flex-start;
    text-align: left;
    min-width: 0;
  }

  .pv-price-value {
    font-size: 20px;
  }

  /* Builder Card */
  .pv-builder-card {
    padding: 24px;
    gap: 20px;
  }

  .pv-builder-card__brand {
    display: flex;
    flex-direction: row;
    gap: 18px;
  }

  .pv-builder-card__logo-wrap {
    width: 72px;
    height: 72px;
  }

  .pv-builder-card__copy h3 {
    font-size: 22px;
  }

  .pv-builder-card__copy p {
    font-size: 14px;
    line-height: 1.8;
  }

  .pv-builder-card__stats {
    margin-top: 14px;
    gap: 24px;
  }

  .pv-builder-card__actions {
    width: 240px;
  }

  /* About Project */
  .pv-about-project h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .pv-about-project__card {
    padding: 22px;
    border-radius: 18px;
  }

  .pv-about-project__card p {
    font-size: 15px;
    line-height: 1.8;
  }

  .pv-about-project__highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 20px;
  }

  .pv-about-project__highlight {
    font-size: 14px;
  }
}
/* ===== Tablet Builder Card Fix ===== */
@media (min-width: 641px) and (max-width: 900px) {

  .pv-builder-card {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .pv-builder-card__brand {
    flex: 1;
    min-width: 0;
  }

  .pv-builder-card__actions {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    justify-content: flex-end;
    align-self: center;
  }

  .pv-builder-card__action {
    width: 100%;
    min-height: 46px;
    font-size: 14px;
  }
}
/* ===== Tablet - Neighbourhood + FAQ + Similar Projects ===== */
@media (min-width: 641px) and (max-width: 900px) {

  /* Explore Neighbourhood */
  .pv-neighbourhood-section {
    margin-bottom: 28px;
  }

  .pv-neighbourhood-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .pv-neighbourhood-card {
    padding: 18px;
    border-radius: 20px;
  }

  .pv-neighbourhood-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 18px;
    align-items: stretch;
  }

  .pv-neighbourhood-map-wrap,
  .pv-neighbourhood-map {
    min-height: 360px;
    height: 100%;
    border-radius: 16px;
  }

  .pv-neighbourhood-panel h3 {
    font-size: 20px;
    margin: 0 0 14px;
  }

  .pv-neighbourhood-list {
    gap: 10px;
  }

  .pv-neighbourhood-item {
    padding: 14px;
    border-radius: 14px;
    gap: 10px;
  }

  .pv-neighbourhood-item__copy strong {
    font-size: 15px;
  }

  .pv-neighbourhood-item__copy span {
    font-size: 12px;
  }


  /* FAQ */
  .pv-faq-section {
    margin-bottom: 28px;
  }

  .pv-faq-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .pv-faq-list {
    gap: 12px;
  }

  .pv-faq-item {
    border-radius: 15px;
  }

  .pv-faq-question {
    padding: 18px 16px;
    font-size: 15px;
    line-height: 1.45;
  }

  .pv-faq-answer {
    padding: 0 16px 16px;
  }

  .pv-faq-answer p {
    font-size: 14px;
    line-height: 1.75;
  }


  /* Similar Projects */
  .pv-similar-projects-section {
    margin-bottom: 28px;
  }

  .pv-similar-projects-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .pv-similar-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .pv-similar-project-card {
    width: 100%;
    border-radius: 16px;
  }

  .pv-similar-project-card__media {
    height: 190px;
  }

  .pv-similar-project-card__body {
    padding: 16px 18px 18px;
  }

  .pv-similar-project-card__copy h3 {
    font-size: 17px;
  }

  .pv-similar-project-card__copy p {
    font-size: 13px;
  }

  .pv-similar-project-card__footer {
    margin-top: 14px;
  }

  .pv-similar-project-card__footer strong {
    font-size: 15px;
  }

  .pv-similar-project-card__footer a {
    font-size: 13px;
  }

  /* Tablet par hover movement ochhu */
  .pv-similar-project-card:hover {
    transform: translateY(-4px);
  }
}
/* ===== Mobile Gallery - Fewer Images Gap Fix ===== */
@media (max-width: 640px) {

  .pv-gallery {
    display: flex;
    flex-direction: column;
    height: auto !important;
    gap: 8px;
    margin-bottom: 14px;
  }

  .pv-gallery-main {
    width: 100%;
    height: 220px;
    flex-shrink: 0;
  }

  .pv-gallery-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: 92px;
    height: auto !important;
    min-height: 0;
    gap: 8px;
  }

  .pv-gallery-thumb {
    width: 100%;
    height: 92px !important;
    min-height: 0;
  }

  /* Odd number of thumbnails hoy to last image full width */
  .pv-gallery-side .pv-gallery-thumb:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  /* Gallery pachi title card extra niche na jay */
  .pv-header-card {
    margin-top: 0;
  }
}

/* Final Quick Facts pill overrides */
.pv-quickfacts {
  margin-top: 0;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .pv-quickfacts {
    gap: 10px;
    flex-direction: row;
    align-items: center;
  }

  .pv-qf-pill {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .pv-quickfacts {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .pv-qf-pill {
    flex-shrink: 0;
    min-height: 68px;
    padding: 12px 18px;
  }

  .pv-qf-text {
    gap: 6px;
  }

  .pv-qf-label {
    font-size: 13px;
  }

  .pv-qf-value {
    font-size: 17px;
  }
}
