/* ═══ PROPERTY DETAIL PAGE — Professional 99acres-style ═══ */

/* ── Hero Gallery ── */
.pd-hero {
  background: #0a1628;
  padding-top: 80px;
}

.pd-gallery-wrap {
  position: relative;
}

.pd-gallery-main {
  position: relative;
  height: 480px;
  overflow: hidden;
  cursor: pointer;
}

.pd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .35s;
}

.pd-gallery-prev,
.pd-gallery-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, .55);
  color: #fff;
  border: none;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 5;
  backdrop-filter: blur(4px);
}

.pd-gallery-prev {
  left: 16px;
}

.pd-gallery-next {
  right: 16px;
}

.pd-gallery-prev:hover,
.pd-gallery-next:hover {
  background: rgba(0, 0, 0, .85);
}

.pd-gallery-count {
  position: absolute;
  bottom: 14px;
  right: 16px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.pd-gallery-expand {
  position: absolute;
  bottom: 14px;
  left: 16px;
  background: rgba(0, 0, 0, .6);
  color: #fff;
  border: none;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: .2s;
}

.pd-gallery-expand:hover {
  background: rgba(0, 0, 0, .9);
}

.pd-gallery-expand svg {
  width: 14px;
  height: 14px;
}

.pd-thumbs {
  display: flex;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(0, 0, 0, .7);
  overflow-x: auto;
}

.pd-thumb {
  width: 90px;
  min-width: 90px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: .2s;
  flex-shrink: 0;
}

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

.pd-thumb.active {
  border-color: var(--gold);
}

.pd-thumb:hover {
  border-color: rgba(201, 168, 76, .6);
}

/* ── Breadcrumb ── */
.pd-breadcrumb {
  background: #f8f6f1;
  padding: 12px 20px;
  font-size: .82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.pd-breadcrumb a {
  color: var(--text-mid);
  text-decoration: none;
  transition: .15s;
}

.pd-breadcrumb a:hover {
  color: var(--gold-dark);
}

.pd-breadcrumb svg {
  width: 13px;
  height: 13px;
  color: var(--border);
}

/* ── Main Layout ── */
.pd-layout {
  display: flex;
  max-width: 1300px;
  margin: 0 auto;
  padding: 28px 20px 60px;
  gap: 28px;
  align-items: flex-start;
}

.pd-left {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-right {
  width: 330px;
  min-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
  align-self: flex-start;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(201, 168, 76, .3) transparent;
}

.pd-right::-webkit-scrollbar {
  width: 6px;
}

.pd-right::-webkit-scrollbar-track {
  background: transparent;
}

.pd-right::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, .3);
  border-radius: 3px;
}

.pd-right::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 168, 76, .5);
}

/* ── Cards ── */
.pd-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  padding: 26px;
  border: 1px solid #f0ece4;
}

.pd-section-h {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--off-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-section-h svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* ── Header Card ── */
.pd-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 12px;
  align-items: center;
}

.pd-badge {
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
}

.badge-sale {
  background: var(--gold);
  color: var(--navy);
}

.badge-rent {
  background: #3182ce;
  color: #fff;
}

.badge-sold {
  background: #e53e3e;
  color: #fff;
}

.badge-upcoming {
  background: #6b46c1;
  color: #fff;
}

.pd-type-badge {
  background: #f0ece4;
  color: var(--text-mid);
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
}

.pd-featured {
  background: #fef3c7;
  color: #92400e;
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
}

.pd-negotiable {
  background: #f0fff4;
  color: #276749;
  padding: 4px 13px;
  border-radius: 50px;
  font-size: .73rem;
  font-weight: 700;
}

.pd-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pd-location {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  color: var(--text-mid);
  font-size: .9rem;
  margin-bottom: 16px;
}

.pd-location svg {
  width: 15px;
  height: 15px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.pd-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.pd-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--navy);
  font-weight: 700;
}

.pd-price span {
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 2px;
}

.pd-maint {
  font-size: .85rem;
  color: var(--text-mid);
  background: #f8f6f1;
  padding: 4px 12px;
  border-radius: 6px;
}

.pd-deposit {
  font-size: .85rem;
  color: var(--text-mid);
  margin-top: 4px;
}

.pd-deposit strong {
  color: var(--navy);
}

/* ── Quick Share ── */
.pd-share-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.pd-share-label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.pd-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .2s;
  text-decoration: none;
  color: var(--text-mid);
}

.pd-share-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.pd-share-btn svg {
  width: 15px;
  height: 15px;
}

/* ── Stats Bar ── */
.pd-stats-bar {
  display: flex;
  gap: 0;
  padding: 0;
  flex-wrap: wrap;
}

.pd-stat {
  flex: 1;
  min-width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 18px 10px;
  border-right: 1px solid var(--off-white);
  text-align: center;
}

.pd-stat:last-child {
  border-right: none;
}

.pd-stat svg {
  color: var(--gold);
}

.pd-stat span {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 700;
}

.pd-stat small {
  font-size: .68rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* ── Description ── */
.pd-desc {
  font-size: .93rem;
  color: var(--text-mid);
  line-height: 1.9;
}

.pd-desc-toggle {
  background: none;
  border: none;
  color: var(--gold-dark);
  font-size: .88rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 8px;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

/* ── Specs ── */
.pd-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pd-spec-item {
  display: flex;
  flex-direction: column;
  padding: 11px 0;
  border-bottom: 1px solid var(--off-white);
}

.pd-spec-item:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--off-white);
}

.pd-spec-item:nth-child(even) {
  padding-left: 20px;
}

.pd-spec-label {
  font-size: .72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .7px;
  font-weight: 600;
}

.pd-spec-val {
  font-size: .92rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* ── Amenities ── */
.pd-amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 9px;
}

.pd-amenity {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .86rem;
  color: var(--text-dark);
  padding: 9px 12px;
  background: var(--off-white);
  border-radius: 8px;
  border: 1px solid transparent;
  transition: .2s;
}

.pd-amenity:hover {
  border-color: var(--gold);
  background: #fff;
}

.pd-amenity svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* ── Nearby ── */
.pd-nearby-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 12px;
}

.pd-nearby-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  background: var(--off-white);
  border-radius: 10px;
  transition: .2s;
}

.pd-nearby-item:hover {
  background: #eee8da;
}

.pd-nearby-icon {
  width: 38px;
  height: 38px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .08);
}

.pd-nearby-icon svg {
  color: var(--gold);
}

.pd-nearby-name {
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
}

.pd-nearby-dist {
  font-size: .75rem;
  color: var(--text-mid);
}

/* ── Map ── */
.pd-map-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 340px;
}

.pd-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ──────────────────────────────────────
   REVIEW SYSTEM
────────────────────────────────────── */
.pd-rating-summary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 12px;
  padding: 24px;
  color: var(--white);
}

.pd-rating-big {
  text-align: center;
  flex-shrink: 0;
}

.pd-rating-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.pd-rating-stars-big {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 4px 0;
}

.pd-rating-count {
  font-size: .78rem;
  color: rgba(255, 255, 255, .65);
}

.pd-rating-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pd-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .8);
}

.pd-bar-row span:first-child {
  width: 16px;
  text-align: right;
  font-weight: 600;
}

.pd-bar-track {
  flex: 1;
  height: 7px;
  background: rgba(255, 255, 255, .15);
  border-radius: 4px;
  overflow: hidden;
}

.pd-bar-fill {
  height: 100%;
  background: var(--gold);
  border-radius: 4px;
  transition: width .8s ease;
}

.pd-bar-row span:last-child {
  width: 22px;
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
}

/* Review card (slider) */
.pd-review-card {
  flex: 0 0 calc(50% - 7px);
  min-width: calc(50% - 7px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 16px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, .05);
  transition: .2s;
}

.pd-review-card:hover {
  border-color: #d8cfbe;
  box-shadow: 0 3px 12px rgba(0, 0, 0, .08);
}

.pd-review-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}

.pd-review-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: .2s;
}

.pd-review-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

@media(max-width:600px) {
  .pd-review-card {
    flex: 0 0 100%;
    min-width: 100%;
  }
}

/* Review list */
.pd-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pd-review-item {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  transition: .2s;
}

.pd-review-item:hover {
  box-shadow: var(--shadow-sm);
  border-color: #d8cfbe;
}

.pd-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pd-reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.pd-reviewer-name {
  font-weight: 700;
  font-size: .92rem;
  color: var(--text-dark);
}

.pd-reviewer-date {
  font-size: .75rem;
  color: var(--text-light);
}

.pd-review-stars {
  color: var(--gold);
  font-size: .95rem;
  margin-bottom: 2px;
}

.pd-review-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Write review form */
.pd-review-form {
  background: var(--off-white);
  border-radius: 10px;
  padding: 22px;
  margin-top: 8px;
}

.pd-review-form h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

.pd-star-picker {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.pd-star-picker input {
  display: none;
}

.pd-star-picker label {
  font-size: 1.6rem;
  color: #d1c5ab;
  cursor: pointer;
  transition: .15s;
  line-height: 1;
}

.pd-star-picker input:checked~label,
.pd-star-picker label:hover,
.pd-star-picker label:hover~label {
  color: var(--gold);
}

.pd-review-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem;
  color: var(--text-dark);
  outline: none;
  resize: vertical;
  background: var(--white);
  transition: .2s;
  margin-bottom: 12px;
}

.pd-review-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, .1);
}

.pd-review-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 11px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: .2s;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pd-review-submit:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}

.pd-review-submit svg {
  width: 15px;
  height: 15px;
}

.pd-no-reviews {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-light);
  font-size: .92rem;
}

.pd-no-reviews svg {
  width: 44px;
  height: 44px;
  color: var(--border);
  margin: 0 auto 12px;
  display: block;
}

.pd-login-notice {
  background: #fff8e6;
  border: 1px solid rgba(201, 168, 76, .4);
  border-radius: 8px;
  padding: 13px 16px;
  font-size: .87rem;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-login-notice a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: underline;
}

/* ── Right Panel ── */
.pd-contact-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 22px;
  color: var(--white);
}

.pd-contact-head {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .65);
  margin-bottom: 6px;
}

.pd-price-sm {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 4px;
}

.pd-neg-tag {
  display: inline-block;
  background: rgba(201, 168, 76, .2);
  color: var(--gold);
  padding: 3px 11px;
  border-radius: 20px;
  font-size: .73rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.pd-contact-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.pd-contact-form input,
.pd-contact-form textarea {
  padding: 10px 13px;
  border: 1.5px solid rgba(255, 255, 255, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: .88rem;
  outline: none;
  transition: .2s;
}

.pd-contact-form input::placeholder,
.pd-contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .45);
}

.pd-contact-form input:focus,
.pd-contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, .12);
}

.pd-contact-form textarea {
  resize: none;
}

.pd-contact-btn {
  padding: 12px;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: .2s;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.pd-contact-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.pd-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: var(--white);
  border-radius: 8px;
  font-weight: 600;
  font-size: .88rem;
  text-decoration: none;
  transition: .2s;
  margin-top: 8px;
}

.pd-call-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .55);
}

/* Key Highlights Card */
.pd-highlights {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #f0ece4;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.pd-highlights h4 {
  font-family: 'Playfair Display', serif;
  font-size: .95rem;
  color: var(--navy);
  margin-bottom: 14px;
}

.pd-highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--off-white);
  font-size: .85rem;
}

.pd-highlight-item:last-child {
  border-bottom: none;
}

.pd-highlight-item svg {
  color: var(--gold);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.pd-highlight-item span {
  color: var(--text-light);
}

.pd-highlight-item strong {
  color: var(--text-dark);
  margin-left: auto;
}

/* Meta Card */
.pd-meta-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
  padding: 18px;
  border: 1px solid #f0ece4;
}

.pd-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--off-white);
  font-size: .85rem;
}

.pd-meta-item:last-child {
  border-bottom: none;
}

.pd-meta-item span {
  color: var(--text-light);
}

.pd-meta-item strong {
  color: var(--text-dark);
}

/* ── Similar Properties ── */
.pd-similar {
  background: #f5f2ec;
  padding: 60px 0;
}

.pd-similar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

.pd-similar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.pd-similar-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
}

.pd-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

/* Similar property card */
.pd-sim-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid #f0ece4;
}

.pd-sim-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
}

.pd-sim-img {
  height: 180px;
  overflow: hidden;
  position: relative;
}

.pd-sim-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  display: block;
}

.pd-sim-card:hover .pd-sim-img img {
  transform: scale(1.06);
}

.pd-sim-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 700;
}

.pd-sim-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pd-sim-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 4px;
}

.pd-sim-price span {
  font-size: .75rem;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.pd-sim-title {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

.pd-sim-loc {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .76rem;
  color: var(--text-light);
  margin-bottom: auto;
  padding-bottom: 10px;
}

.pd-sim-loc svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
  flex-shrink: 0;
}

.pd-sim-feats {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.pd-sim-feat {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: .73rem;
  color: var(--text-mid);
}

.pd-sim-feat svg {
  width: 11px;
  height: 11px;
  color: var(--gold);
}

/* ── Responsive ── */
@media(max-width:1100px) {
  .pd-similar-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:1024px) {
  .pd-layout {
    flex-direction: column;
  }

  .pd-right {
    width: 100%;
    position: static;
  }

  .pd-contact-card,
  .pd-highlights,
  .pd-meta-card {
    max-width: 600px;
  }
}

@media(max-width:700px) {
  .pd-gallery-main {
    height: 260px;
  }

  .pd-specs-grid {
    grid-template-columns: 1fr;
  }

  .pd-spec-item {
    border-right: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .pd-stats-bar {
    flex-wrap: wrap;
  }

  .pd-stat {
    min-width: 45%;
  }

  .pd-rating-summary {
    flex-direction: column;
  }

  .pd-similar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media(max-width:480px) {
  .pd-similar-grid {
    grid-template-columns: 1fr;
  }

  .pd-thumbs {
    gap: 6px;
  }

  .pd-thumb {
    width: 70px;
    min-width: 70px;
    height: 48px;
  }
}