.pdv2 {
  --pdv2-radius: 22px;
  --pdv2-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --pdv2-gold: #D4AF37;
  --pdv2-dark: #1E293B;
  --pdv2-muted: #4B5563;
  --pdv2-border: #E5E7EB;
  --pdv2-surface: #FAFAFA;
  --pdv2-card: #ffffff;
  color: #4B5563;
  background: var(--pdv2-surface);
}

.dark .pdv2 {
  --pdv2-surface: #121820;
  --pdv2-card: #1a2330;
  --pdv2-border: rgba(255, 255, 255, 0.08);
  --pdv2-muted: #9ca3af;
  color: #d1d5db;
}

.pdv2-nav {
  position: sticky;
  top: 4.5rem;
  z: 35;
  z-index: 35;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--pdv2-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.pdv2-nav::-webkit-scrollbar { display: none; }
.pdv2-nav__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  gap: 0.5rem;
}
.pdv2-nav__link {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pdv2-muted);
  transition: all 0.25s;
}
.pdv2-nav__link:hover, .pdv2-nav__link.is-active {
  background: var(--pdv2-dark);
  color: #fff;
}

.pdv2-wrap { max-width: 80rem; margin: 0 auto; padding: 1.5rem 1rem 5rem; }
@media (min-width: 1024px) { .pdv2-wrap { padding: 2rem 1.5rem 6rem; } }

.pdv2-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .pdv2-grid { grid-template-columns: 1fr 320px; align-items: start; gap: 2.5rem; }
}

.pdv2-sidebar {
  align-self: start;
}

.pdv2-sidebar__stack {
  position: sticky;
  top: 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: calc(100vh - 8.5rem);
  overflow-y: auto;
  scrollbar-width: thin;
  padding-bottom: 1rem;
}

/* Responsive visibility — standalone (no Tailwind) */
.pdv2-mobile-only { display: block; }
.pdv2-sidebar--desktop { display: none; }
@media (min-width: 1024px) {
  .pdv2-mobile-only { display: none !important; }
  .pdv2-sidebar--desktop { display: block; }
}

.pdv2-breadcrumb {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pdv2-muted);
  margin-bottom: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.pdv2-breadcrumb a { color: var(--pdv2-muted); transition: color 0.2s; }
.pdv2-breadcrumb a:hover { color: var(--pdv2-gold); }
.pdv2-breadcrumb__current { color: #806130; font-weight: 600; }

.pdv2-hero-head { margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .pdv2-hero-head { margin-bottom: 2rem; } }

.pdv2-btn--block { width: 100%; }
.pdv2-btn--grow { flex: 1; min-width: 0; }

.pdv2-form { display: flex; flex-direction: column; gap: 0.5rem; }
.pdv2-form__input {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 12px;
  border: 1px solid var(--pdv2-border);
  background: var(--pdv2-surface);
  font-size: 0.875rem;
  color: var(--pdv2-dark);
}
.pdv2-form__input:focus {
  outline: none;
  border-color: rgba(199, 168, 109, 0.5);
  box-shadow: 0 0 0 3px rgba(199, 168, 109, 0.12);
}

.pdv2-stock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
}
.pdv2-stock-stats__val { display: block; font-weight: 700; font-size: 1.125rem; color: var(--pdv2-dark); }
.pdv2-stock-stats__val--sold { color: #059669; }
.pdv2-stock-stats__val--avail { color: #806130; }
.pdv2-stock-stats__lbl { color: var(--pdv2-muted); font-size: 0.6875rem; }

.pdv2-section-head-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.pdv2-filter-select {
  padding: 0.5rem 0.75rem;
  border-radius: 12px;
  border: 1px solid var(--pdv2-border);
  background: var(--pdv2-card);
  font-size: 0.8125rem;
  max-width: 10rem;
}

.pdv2-plans-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .pdv2-plans-grid { grid-template-columns: repeat(2, 1fr); } }

.pdv2-plan-media {
  aspect-ratio: 4/3;
  border-radius: 14px;
  overflow: hidden;
  background: var(--pdv2-surface);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdv2-plan-media img { max-height: 100%; object-fit: contain; width: 100%; height: 100%; object-fit: cover; }
.pdv2-plan-title { font-family: 'Playfair Display', Georgia, serif; font-size: 1.125rem; font-weight: 600; color: var(--pdv2-dark); }
.pdv2-plan-meta { font-size: 0.75rem; color: var(--pdv2-muted); margin-top: 0.5rem; list-style: none; padding: 0; }
.pdv2-plan-meta li + li { margin-top: 0.25rem; }

.pdv2-map-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .pdv2-map-grid { grid-template-columns: 3fr 2fr; }
}
.pdv2-map-frame {
  border-radius: var(--pdv2-radius);
  overflow: hidden;
  min-height: 240px;
  border: 1px solid var(--pdv2-border);
}
.pdv2-map-frame iframe { width: 100%; height: 100%; min-height: 240px; border: 0; display: block; }
.pdv2-nearby-list { list-style: none; padding: 0; margin: 0; font-size: 0.875rem; }
.pdv2-nearby-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--pdv2-border);
}
.pdv2-nearby-list li:last-child { border-bottom: 0; }
.pdv2-nearby-list span:last-child { color: #806130; font-weight: 600; font-size: 0.75rem; flex-shrink: 0; }

.pdv2-reviews-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .pdv2-reviews-grid { grid-template-columns: repeat(2, 1fr); } }

.pdv2-mobile-bar {
  margin-top: 1rem;
}

.pdv2-mobile-inquiry {
  scroll-margin-top: 6rem;
}

.pdv2-mobile-dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 44;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--pdv2-border);
  box-shadow: 0 -10px 40px rgba(26, 35, 48, 0.1);
}
@media (min-width: 1024px) { .pdv2-mobile-dock { display: none; } }
.pdv2-mobile-dock__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 0.5rem;
  border-radius: 12px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pdv2-dark);
  border: 1px solid var(--pdv2-border);
  background: var(--pdv2-surface);
  text-align: center;
}
.pdv2-mobile-dock__btn--primary {
  background: var(--pdv2-gold);
  border-color: var(--pdv2-gold);
  color: var(--pdv2-dark);
}
.pdv2-mobile-dock__btn--wa {
  background: #25d366;
  border-color: #25d366;
  color: #fff;
}

#inquiry-form-section {
  scroll-margin-top: 7rem;
}

#inquiry-form-section-mobile {
  scroll-margin-top: 6rem;
}

.pdv2-consultant { padding: 1rem 1.25rem; }
.pdv2-consultant__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}
.pdv2-consultant__avatar {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(199, 168, 109, 0.35);
}
.pdv2-consultant__info { min-width: 0; flex: 1; }

.pdv2-card {
  background: var(--pdv2-card);
  border: 1px solid var(--pdv2-border);
  border-radius: var(--pdv2-radius);
  box-shadow: var(--pdv2-shadow);
}

.pdv2-hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 600;
  color: var(--pdv2-dark);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.dark .pdv2-hero-title { color: #f8f7f4; }

.pdv2-hero-summary { font-size: 1.0625rem; line-height: 1.65; color: var(--pdv2-muted); margin-top: 1rem; max-width: 40rem; }

.pdv2-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.25rem; }
.pdv2-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--pdv2-border);
  background: var(--pdv2-card);
  color: var(--pdv2-dark);
}
.pdv2-chip--gold { border-color: rgba(199, 168, 109, 0.35); background: rgba(199, 168, 109, 0.12); color: #806130; }

.pdv2-sticky-card {
  position: static;
  padding: 1.25rem;
}
.pdv2-sticky-card__price {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--pdv2-dark);
}
.dark .pdv2-sticky-card__price { color: #fff; }

.pdv2-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; margin: 1.25rem 0; }
.pdv2-stat-item {
  padding: 0.75rem;
  border-radius: 14px;
  background: var(--pdv2-surface);
  border: 1px solid var(--pdv2-border);
}
.pdv2-stat-item__val { font-size: 1.125rem; font-weight: 700; color: var(--pdv2-dark); display: block; }
.dark .pdv2-stat-item__val { color: #fff; }
.pdv2-stat-item__lbl { font-size: 0.5625rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--pdv2-muted); margin-top: 0.25rem; display: block; }

.pdv2-cta-stack { display: flex; flex-direction: column; gap: 0.5rem; }
.pdv2-cta-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.pdv2-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s;
  border: 1px solid transparent;
  cursor: pointer;
}
.pdv2-btn--primary { background: var(--pdv2-gold); color: var(--pdv2-dark); }
.pdv2-btn--primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.pdv2-btn--outline { background: transparent; border-color: var(--pdv2-border); color: var(--pdv2-dark); }
.pdv2-btn--wa { background: #25d366; color: #fff; }
.pdv2-btn--ghost { background: var(--pdv2-surface); color: var(--pdv2-muted); border-color: var(--pdv2-border); }

.pdv2-gallery {
  border-radius: calc(var(--pdv2-radius) + 4px);
  overflow: hidden;
  position: relative;
  background: #eef1f5;
  aspect-ratio: 16/9;
  min-height: 280px;
}
@media (min-width: 768px) { .pdv2-gallery { min-height: 420px; } }
.pdv2-gallery__pane {
  position: absolute;
  inset: 0;
}
.pdv2-gallery__pane[hidden] { display: none; }
.pdv2-gallery__pane.is-active { display: block; }
.pdv2-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdv2-gallery__embed {
  position: relative;
  width: 100%;
  height: 100%;
  background: #1a2330;
}
.pdv2-gallery__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}
.pdv2-gallery__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(26,35,48,0.72);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}
.pdv2-gallery__play:hover {
  transform: scale(1.04);
  background: rgba(26,35,48,0.88);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.pdv2-gallery__play-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pdv2-gold);
  color: var(--pdv2-dark);
  font-size: 0.875rem;
  font-weight: 800;
}
.pdv2-gallery__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.pdv2-gallery__tabs {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.35rem;
  z-index: 5;
}
.pdv2-gallery__tab {
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pdv2-gallery__tab.is-active { background: var(--pdv2-gold); color: var(--pdv2-dark); border-color: var(--pdv2-gold); }
.pdv2-gallery__expand {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 5;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.pdv2-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; overflow-x: auto; scrollbar-width: none; }
.pdv2-thumbs::-webkit-scrollbar { display: none; }
.pdv2-thumb {
  width: 4.5rem;
  height: 3.25rem;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  flex-shrink: 0;
  opacity: 0.75;
  cursor: pointer;
  padding: 0;
}
.pdv2-thumb.is-active { border-color: var(--pdv2-gold); opacity: 1; }
.pdv2-thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdv2-section { margin-top: 3rem; scroll-margin-top: 7rem; }
.pdv2-section__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--pdv2-dark);
  margin-bottom: 1.25rem;
}
.dark .pdv2-section__title { color: #fff; }
.pdv2-section__eyebrow {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pdv2-gold);
  margin-bottom: 0.35rem;
}
.pdv2-section__meta { font-size: 0.75rem; color: var(--pdv2-muted); margin-bottom: 1rem; line-height: 1.5; }
.pdv2-inquiry__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--pdv2-dark);
  margin-bottom: 0.25rem;
}

.pdv2-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .pdv2-info-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .pdv2-info-grid { grid-template-columns: repeat(4, 1fr); } }
.pdv2-info-card {
  padding: 1rem;
  border-radius: 16px;
  border: 1px solid var(--pdv2-border);
  background: var(--pdv2-card);
  transition: transform 0.25s, box-shadow 0.25s;
}
.pdv2-info-card:hover { transform: translateY(-2px); box-shadow: var(--pdv2-shadow); }
.pdv2-info-card__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(199, 168, 109, 0.12);
  color: var(--pdv2-gold);
  margin-bottom: 0.65rem;
}
.pdv2-info-card__lbl { font-size: 0.5625rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pdv2-muted); }
.pdv2-info-card__val { font-size: 0.8125rem; font-weight: 700; color: var(--pdv2-dark); margin-top: 0.15rem; }
.dark .pdv2-info-card__val { color: #fff; }

.pdv2-stock-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .pdv2-stock-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pdv2-stock-grid { grid-template-columns: repeat(3, 1fr); } }
.pdv2-stock-card { padding: 1.25rem; border-radius: var(--pdv2-radius); border: 1px solid var(--pdv2-border); background: var(--pdv2-card); }
.pdv2-stock-card__type { font-family: 'Playfair Display', Georgia, serif; font-size: 1.25rem; font-weight: 600; color: var(--pdv2-dark); }
.dark .pdv2-stock-card__type { color: #fff; }
.pdv2-progress { height: 6px; border-radius: 999px; background: var(--pdv2-surface); margin-top: 0.75rem; overflow: hidden; }
.pdv2-progress__bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--pdv2-gold), #e6d9b3); transition: width 0.8s ease; }

.pdv2-table-wrap { overflow-x: auto; border-radius: var(--pdv2-radius); border: 1px solid var(--pdv2-border); }
.pdv2-table { width: 100%; border-collapse: collapse; font-size: 0.8125rem; }
.pdv2-table th {
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--pdv2-muted);
  background: var(--pdv2-surface);
  border-bottom: 1px solid var(--pdv2-border);
}
.pdv2-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--pdv2-border); color: var(--pdv2-dark); }
.dark .pdv2-table td { color: #e5e7eb; }
.pdv2-status--sale { color: #059669; font-weight: 700; }
.pdv2-status--reserve { color: #d97706; font-weight: 700; }
.pdv2-status--sold { color: var(--pdv2-muted); font-weight: 700; }

.pdv2-invest-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 768px) { .pdv2-invest-grid { grid-template-columns: repeat(3, 1fr); } }
.pdv2-invest-card {
  padding: 1.25rem;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--pdv2-card), var(--pdv2-surface));
  border: 1px solid var(--pdv2-border);
}
.pdv2-invest-card__val { font-size: 1.375rem; font-weight: 700; color: var(--pdv2-gold); }
.pdv2-invest-card__lbl { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pdv2-muted); margin-top: 0.25rem; }

.pdv2-timeline { display: grid; gap: 0.75rem; }
@media (min-width: 768px) { .pdv2-timeline { grid-template-columns: repeat(7, 1fr); } }
.pdv2-timeline__step {
  padding: 1rem 0.75rem;
  border-radius: 16px;
  border: 1px solid var(--pdv2-border);
  text-align: center;
  background: var(--pdv2-card);
  opacity: 0.55;
}
.pdv2-timeline__step.is-done { opacity: 1; border-color: rgba(5, 150, 105, 0.25); }
.pdv2-timeline__step.is-active { opacity: 1; border-color: rgba(199, 168, 109, 0.45); box-shadow: 0 0 0 1px rgba(199, 168, 109, 0.2); }

.pdv2-amenity-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .pdv2-amenity-grid { grid-template-columns: repeat(4, 1fr); } }
.pdv2-amenity {
  padding: 1rem 0.5rem;
  border-radius: 16px;
  border: 1px solid var(--pdv2-border);
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  transition: all 0.3s;
  background: var(--pdv2-card);
}
.pdv2-amenity:hover { border-color: rgba(199, 168, 109, 0.4); transform: scale(1.02); }

.pdv2-online { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.625rem; color: #059669; font-weight: 700; margin-top: 0.25rem; }
.pdv2-online::before { content: ''; width: 6px; height: 6px; border-radius: 999px; background: #059669; animation: pdv2-pulse 2s infinite; }
@keyframes pdv2-pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.pdv2-faq-item { border: 1px solid var(--pdv2-border); border-radius: 16px; overflow: hidden; margin-bottom: 0.5rem; background: var(--pdv2-card); }
.pdv2-faq-q { width: 100%; text-align: left; padding: 1rem 1.25rem; font-weight: 600; font-size: 0.875rem; color: var(--pdv2-dark); display: flex; justify-content: space-between; gap: 1rem; background: transparent; border: none; cursor: pointer; }
.dark .pdv2-faq-q { color: #fff; }
.pdv2-faq-a { padding: 0 1.25rem 1rem; font-size: 0.8125rem; line-height: 1.6; color: var(--pdv2-muted); }

.pdv2-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}
.pdv2-fab__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.pdv2-fab__btn:hover { transform: scale(1.06); }
.pdv2-fab__btn--wa { background: #25d366; color: #fff; }
.pdv2-fab__btn--gold { background: var(--pdv2-gold); color: var(--pdv2-dark); }
.pdv2-fab__btn--dark { background: var(--pdv2-dark); color: #fff; }

.pdv2-lightbox[hidden] {
  display: none !important;
}

.pdv2-lightbox:not([hidden]) {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pdv2-lightbox img { max-width: 95vw; max-height: 90vh; object-fit: contain; border-radius: 8px; }
.pdv2-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
}
.pdv2-lightbox__nav--prev { left: 1rem; }
.pdv2-lightbox__nav--next { right: 1rem; }

.pdv2-ai[hidden] {
  display: none !important;
}

.pdv2-ai:not([hidden]) {
  position: fixed;
  bottom: 5.5rem;
  right: 1rem;
  z-index: 44;
  width: min(320px, calc(100vw - 2rem));
}
.pdv2-ai__panel {
  background: var(--pdv2-card);
  border: 1px solid var(--pdv2-border);
  border-radius: var(--pdv2-radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.15);
  padding: 1rem;
}
.pdv2-ai__q {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.65rem 0.85rem;
  margin-bottom: 0.35rem;
  border-radius: 12px;
  font-size: 0.75rem;
  border: 1px solid var(--pdv2-border);
  background: var(--pdv2-surface);
  cursor: pointer;
}
.pdv2-ai__q:hover { border-color: var(--pdv2-gold); color: var(--pdv2-dark); }

.pdv2-related { display: flex; gap: 1rem; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 0.5rem; }
.pdv2-related > * { scroll-snap-align: start; min-width: 280px; flex: 0 0 280px; }

.pdv2-skeleton { background: linear-gradient(90deg, #eee 25%, #f5f5f5 50%, #eee 75%); background-size: 200% 100%; animation: pdv2-shimmer 1.2s infinite; border-radius: 12px; }
@keyframes pdv2-shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

@media (max-width: 1023px) {
  .pdv2-nav { top: 3.75rem; }
  .pdv2-fab { display: none; }
  .pdv2-wrap { padding: 1rem 1rem 7.5rem; }
  .pdv2-hero-title { font-size: clamp(1.65rem, 6.5vw, 2.15rem); }
  .pdv2-hero-summary { font-size: 0.9375rem; }
  .pdv2-chips { gap: 0.35rem; }
  .pdv2-chip { font-size: 0.5625rem; padding: 0.3rem 0.6rem; }
  .pdv2-section { margin-top: 2.25rem; }
  .pdv2-gallery { min-height: 220px; aspect-ratio: 4/3; border-radius: var(--pdv2-radius); }
  .pdv2-gallery__expand { font-size: 0.625rem; padding: 0.5rem 0.75rem; }
  .pdv2-mobile-bar .pdv2-sticky-card__price { font-size: 1.75rem; margin-bottom: 0.75rem; }
  .pdv2-card.p-4, .pdv2-card.p-5 { padding: 1rem !important; }
  .pdv2-info-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
  .pdv2-invest-grid { grid-template-columns: repeat(2, 1fr); }
  .pdv2-table { font-size: 0.75rem; }
  .pdv2-table th, .pdv2-table td { padding: 0.5rem 0.65rem; }
}
