/* ============================================
   FOM BOOKING - PROPERTY DETAIL PAGE
   Clean Final CSS
   ============================================ */

:root {
  --pd-bg: #f7f9fc;
  --pd-surface: #ffffff;
  --pd-surface-soft: #f8f9fb;

  --pd-border: #eef2f6;
  --pd-border-strong: #e2e8f0;
  --pd-border-subtle: rgba(15, 23, 42, 0.06);

  --pd-text: #101828;
  --pd-text-soft: #475467;
  --pd-text-muted: #667085;
  --pd-text-light: #98a2b3;

  --pd-accent: #008489;
  --pd-accent-dark: #006a6e;
  --pd-accent-light: #e0f4f5;

  --pd-accent-blue: #2563eb;
  --pd-accent-blue-dark: #1d4ed8;

  --pd-success: #067647;
  --pd-success-light: #ecfdf3;
  --pd-warning: #f5b042;
  --pd-warning-light: #fff4e6;
  --pd-danger: #d92d20;
  --pd-danger-light: #fff1f3;

  --pd-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.03);
  --pd-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --pd-shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06);
  --pd-shadow-lg: 0 14px 32px rgba(15, 23, 42, 0.08);
  --pd-shadow-xl: 0 28px 80px rgba(15, 23, 42, 0.12);

  --pd-radius-sm: 8px;
  --pd-radius-md: 12px;
  --pd-radius-lg: 16px;
  --pd-radius-xl: 20px;
  --pd-radius-2xl: 24px;
  --pd-radius-full: 9999px;

  --pd-transition-fast: 150ms ease;
  --pd-transition-base: 250ms ease;

  /* legacy bridge */
  --pb-text: var(--pd-text);
  --pb-text-soft: var(--pd-text-soft);
  --pb-text-muted: var(--pd-text-muted);
  --pb-accent: var(--pd-accent);
  --pb-accent-dark: var(--pd-accent-dark);
  --pb-border: var(--pd-border);
}

body {
  background: var(--pd-bg);
  color: var(--pd-text);
  -webkit-font-smoothing: antialiased;
}

body.pd-sheet-open {
  overflow: hidden !important;
}

::selection {
  background: var(--pd-accent-light);
  color: var(--pd-accent-dark);
}

/* ===== Layout ===== */
.pd-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 24px 64px;
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px;
  align-items: start;
}

.pd-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pd-sidebar {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: sticky;
  top: 24px;
}

/* ===== Breadcrumb ===== */
.pd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--pd-text-soft);
  font-size: 0.875rem;
}

.pd-breadcrumb a {
  color: var(--pd-text-soft);
  text-decoration: none;
  transition: color var(--pd-transition-fast);
}

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

.pd-breadcrumb i {
  font-size: 10px;
  color: var(--pd-text-light);
}

.pd-breadcrumb span {
  color: var(--pd-text);
  font-weight: 500;
}

/* ===== Hero ===== */
.pd-hero {
  margin-bottom: 32px;
}

.pd-title-group {
  margin-bottom: 16px;
}

.pd-title {
  margin: 0 0 8px;
  color: var(--pd-text);
  font-size: clamp(2rem, 3.1vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.pd-subtitle {
  margin: 0;
  color: var(--pd-text-muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 980px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.pd-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-bottom: 16px;
}

.pd-meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pd-text-muted);
}

.pd-meta-chip i {
  color: var(--pd-text-light);
}

.pd-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--pd-warning-light);
  border-radius: var(--pd-radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--pd-warning);
}

.pd-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 7px 14px;
  background: var(--pd-surface);
  border: 1px solid var(--pd-border);
  border-radius: var(--pd-radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--pd-text-soft);
}

.pd-badge i {
  color: var(--pd-accent);
}

.pd-badge--primary {
  background: var(--pd-accent-light);
  border-color: rgba(0, 132, 137, 0.15);
  color: var(--pd-accent-dark);
}

.pd-badge--success {
  background: var(--pd-success-light);
  border-color: rgba(6, 118, 71, 0.15);
  color: var(--pd-success);
}

.pd-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===== Buttons ===== */
.pd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--pd-radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--pd-transition-base);
  border: none;
  line-height: 1;
}

.pd-btn--primary {
  background: var(--pd-accent);
  color: #fff;
  box-shadow: var(--pd-shadow-xs);
}

.pd-btn--primary:hover {
  background: var(--pd-accent-dark);
  transform: translateY(-1px);
  box-shadow: var(--pd-shadow-md);
  color: #fff;
}

.pd-btn--outline {
  background: var(--pd-surface);
  color: var(--pd-text);
  border: 1px solid var(--pd-border-strong);
}

.pd-btn--outline:hover {
  border-color: var(--pd-accent);
  color: var(--pd-accent);
  background: var(--pd-accent-light);
}

.pd-btn--ghost {
  background: transparent;
  color: var(--pd-text-soft);
}

.pd-btn--ghost:hover {
  background: var(--pd-surface-soft);
  color: var(--pd-text);
}

.pd-btn--block {
  width: 100%;
}

/* ===== Cards ===== */
.pd-card {
  padding: 24px;
  border-radius: var(--pd-radius-2xl);
  background: var(--pd-surface);
  border: 1px solid var(--pd-border-subtle);
  box-shadow: var(--pd-shadow-md);
}

.pd-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.pd-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--pd-text);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
}

.pd-card__title i {
  color: var(--pd-accent);
}

/* ===== Gallery ===== */
.pd-gallery--modern {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

.pd-gallery__main {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 460px;
  border-radius: 26px;
  overflow: hidden;
  background: var(--pd-surface-soft);
  cursor: pointer;
  box-shadow: var(--pd-shadow-lg);
}

.pd-gallery__main img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.25s ease;
}

.pd-gallery__main:hover img {
  transform: scale(1.02);
}

.pd-gallery__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.5), transparent);
  color: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.pd-gallery__tag,
.pd-gallery__count {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(15, 23, 42, 0.44);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--pd-radius-full);
  font-size: 0.8125rem;
  font-weight: 700;
}

.pd-gallery__thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}

.pd-gallery__thumb {
  width: 116px;
  min-width: 116px;
  height: 84px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  cursor: pointer;
  opacity: 0.8;
  border: 2px solid transparent;
  box-shadow: var(--pd-shadow-sm);
  transition: all var(--pd-transition-base);
}

.pd-gallery__thumb:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.pd-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--pd-accent);
}

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

/* ===== About ===== */
.pd-about {
  position: relative;
}

.pd-about__content {
  color: var(--pd-text-soft);
  line-height: 1.85;
  font-size: 0.97rem;
}

.pd-about__content.is-collapsed {
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  line-clamp: 6;
  overflow: hidden;
  max-height: 11.4em;
}

.pd-about__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 44px;
  height: 70px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 72%);
  pointer-events: none;
}

.pd-about__content:not(.is-collapsed) + .pd-about__fade {
  display: none;
}

.pd-more-btn {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: var(--pd-accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.pd-more-btn .pd-more-btn__label-less {
  display: none;
}

.pd-more-btn.is-expanded .pd-more-btn__label-more {
  display: none;
}

.pd-more-btn.is-expanded .pd-more-btn__label-less {
  display: inline;
}

.pd-more-btn.is-expanded i {
  transform: rotate(180deg);
}

/* ===== Facts ===== */
.pd-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pd-fact {
  min-height: 84px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, #fbfcfe 0%, #f8fafc 100%);
  border: 1px solid var(--pd-border-subtle);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pd-fact__label {
  display: block;
  margin-bottom: 4px;
  color: var(--pd-text-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.pd-fact__value {
  display: block;
  color: var(--pd-text);
  font-size: 1rem;
  font-weight: 800;
}

/* ===== Amenities ===== */
.pd-amenities--compact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-amenities--compact.is-collapsed .pd-amenity-pill:nth-child(n+9) {
  display: none;
}

.pd-amenity-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 8px 13px;
  border-radius: var(--pd-radius-full);
  background: var(--pd-surface-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--pd-text-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.pd-amenity-pill i {
  color: var(--pd-accent);
}

/* ===== Review Summary ===== */
.pd-card--reviews .pd-review-summary {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 20px;
  align-items: start;
}

.pd-review-summary__score {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, #f3fbfb 0%, #eaf8f8 100%);
  border: 1px solid rgba(0, 132, 137, 0.08);
  text-align: center;
}

.pd-review-summary__number {
  display: block;
  font-size: 2.35rem;
  font-weight: 700;
  color: var(--pd-accent-dark);
  line-height: 1;
}

.pd-review-summary__label {
  display: block;
  margin: 8px 0 4px;
  color: var(--pd-text-muted);
  font-size: 0.875rem;
}

.pd-review-summary__count {
  color: var(--pd-text-light);
  font-size: 0.8125rem;
  font-weight: 600;
}

.pd-review-summary__bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pd-progress {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pd-progress__label {
  min-width: 100px;
  color: var(--pd-text-soft);
  font-size: 0.875rem;
}

.pd-progress__value {
  color: var(--pd-text);
  font-weight: 600;
}

/* ===== Reviews ===== */
.pd-reviews {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pd-review {
  padding: 20px;
  border-radius: 20px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border-subtle);
}

.pd-review__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 12px;
}

.pd-review__author {
  display: block;
  font-weight: 700;
  color: var(--pd-text);
}

.pd-review__date {
  display: block;
  margin-top: 4px;
  color: var(--pd-text-light);
  font-size: 0.8125rem;
}

.pd-review__rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: var(--pd-warning-light);
  border-radius: var(--pd-radius-full);
  color: var(--pd-warning);
  font-weight: 700;
}

.pd-review__title {
  margin: 0 0 10px;
  color: var(--pd-text);
  font-size: 1rem;
  font-weight: 700;
}

.pd-review__text {
  margin: 0;
  color: var(--pd-text-soft);
  line-height: 1.7;
}

.pd-review__reply {
  margin-top: 16px;
  padding: 14px;
  background: #fff;
  border-radius: var(--pd-radius-md);
  border-left: 3px solid var(--pd-accent);
}

.pd-review__reply strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pd-text);
}

.pd-review__reply p {
  margin: 0;
  color: var(--pd-text-soft);
}

/* ===== Rooms Agoda Style ===== */
.pd-card--rooms {
  padding: 22px;
  border: 1px solid #dde3ee;
}

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

.pd-section-head__sub {
  margin: 6px 0 0;
  color: var(--pd-text-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 760px;
}

.pd-search-summary {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pd-search-summary span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: var(--pd-radius-full);
  background: #f6f8fc;
  border: 1px solid #e4e9f2;
  font-size: 0.88rem;
  font-weight: 700;
  color: #344054;
}

.pd-room-results {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pd-room-result {
  display: grid;
  grid-template-columns: minmax(300px, 372px) 1fr;
  border: 1px solid #d9e2f1;
  border-radius: var(--pd-radius-2xl);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--pd-shadow-lg);
}

.pd-room-result__left {
  border-right: 1px solid #e6ebf3;
  background: linear-gradient(180deg, #fcfdff 0%, #f8fbff 100%);
}

.pd-room-media {
  position: relative;
}

.pd-room-media__slider,
.pd-room-media__single {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #eef2f8;
}

.pd-room-media__slide {
  display: none;
  width: 100%;
  height: 100%;
}

.pd-room-media__slide.is-active {
  display: block;
}

.pd-room-media img,
.pd-room-media__single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-room-media__placeholder {
  aspect-ratio: 16 / 11;
  display: grid;
  place-items: center;
  color: var(--pd-text-light);
  font-size: 1.6rem;
  background: #f2f4f7;
}

.pd-room-media__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  padding: 8px 12px;
  border-radius: var(--pd-radius-full);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.pd-room-media__badge--alert {
  background: #fff1ec;
  border: 1px solid #fdc9b4;
  color: #c2410c;
}

.pd-room-media__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: var(--pd-radius-full);
  border: 0;
  background: rgba(255, 255, 255, 0.96);
  color: #0f172a;
  box-shadow: var(--pd-shadow-lg);
  cursor: pointer;
  z-index: 4;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.pd-room-media__nav:hover {
  transform: translateY(-50%) scale(1.02);
}

.pd-room-media__nav--prev {
  left: 12px;
}

.pd-room-media__nav--next {
  right: 12px;
}

.pd-room-media__dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 4;
}

.pd-room-media__dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: var(--pd-radius-full);
  background: rgba(255, 255, 255, 0.55);
}

.pd-room-media__dot.is-active {
  background: #fff;
}

.pd-room-info {
  padding: 18px 18px 20px;
}

.pd-room-info__title {
  margin: 0 0 8px;
  color: var(--pd-text);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.pd-room-info__desc {
  margin: 0 0 13px;
  color: var(--pd-text-muted);
  line-height: 1.6;
  font-size: 0.92rem;
}

.pd-room-info__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-bottom: 14px;
  color: #344054;
  font-size: 0.9rem;
  font-weight: 600;
}

.pd-room-info__meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pd-room-info__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-room-info__amenity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 7px 11px;
  border-radius: var(--pd-radius-full);
  background: #fff;
  border: 1px solid #e5e7eb;
  color: #344054;
  font-size: 0.82rem;
  font-weight: 700;
}

.pd-room-info__link {
  display: inline-flex;
  margin-top: 14px;
  font-size: 0.9rem;
  font-weight: 800;
  color: #175cd3;
  text-decoration: none;
}

.pd-room-result__center {
  background: #fff;
}

.pd-offer-list {
  display: flex;
  flex-direction: column;
}

.pd-offer-row {
  display: grid;
  grid-template-columns: 1fr 238px;
  border-bottom: 1px solid #e8edf5;
}

.pd-offer-row:last-child {
  border-bottom: 0;
}

.pd-offer-row.is-best {
  background: linear-gradient(180deg, #fffdfa 0%, #ffffff 100%);
}

.pd-offer-row__summary {
  padding: 20px 22px;
}

.pd-offer-row__ribbon {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 11px;
  border-radius: 10px;
  background: #fff1ec;
  color: #c2410c;
  font-size: 0.79rem;
  font-weight: 800;
}

.pd-offer-row__title {
  margin: 0;
  color: var(--pd-text);
  font-size: 1.04rem;
  font-weight: 800;
}

.pd-offer-row__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.pd-mini-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border-radius: var(--pd-radius-full);
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1;
}

.pd-mini-badge--primary {
  background: #e8f1ff;
  color: #175cd3;
}

.pd-mini-badge--promo {
  background: var(--pd-success-light);
  color: var(--pd-success);
}

.pd-mini-badge--danger {
  background: var(--pd-danger-light);
  color: #c01048;
}

.pd-offer-row__features {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

.pd-offer-row__features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #344054;
  line-height: 1.45;
  font-size: 0.92rem;
}

.pd-offer-row__features li i {
  width: 16px;
  margin-top: 2px;
}

.pd-offer-row__features li.is-positive {
  color: var(--pd-success);
  font-weight: 700;
}

.pd-offer-row__features li.is-negative {
  color: #b42318;
  font-weight: 700;
}

.pd-offer-row__features li.is-neutral {
  color: var(--pd-text-soft);
}

.pd-offer-row__details {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #d0d5dd;
}

.pd-offer-row__details summary {
  cursor: pointer;
  color: #175cd3;
  font-size: 0.9rem;
  font-weight: 800;
}

.pd-offer-breakdown {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.pd-offer-breakdown__row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #344054;
  font-size: 0.9rem;
}

.pd-offer-row__pricebox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding: 20px 18px;
  text-align: right;
  border-left: 1px solid #e8edf5;
  background: linear-gradient(180deg, #fcfdff 0%, #f9fbff 100%);
}

.pd-offer-row__savings {
  align-self: flex-end;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  background: var(--pd-success-light);
  color: var(--pd-success);
  font-size: 0.8rem;
  font-weight: 800;
}

.pd-offer-row__oldprice {
  color: var(--pd-text-light);
  text-decoration: line-through;
  font-size: 0.92rem;
}

.pd-offer-row__price {
  margin-top: 4px;
  color: var(--pd-danger);
  font-size: 2rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.pd-offer-row__price span {
  font-size: 0.98rem;
  font-weight: 800;
}

.pd-offer-row__price-note {
  margin-top: 8px;
  color: var(--pd-text-soft);
  font-size: 0.84rem;
  font-weight: 600;
}

.pd-offer-row__taxnote {
  margin-top: 10px;
  color: var(--pd-text-muted);
  font-size: 0.79rem;
  line-height: 1.45;
}

.pd-offer-row__cta {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 14px;
  background: var(--pd-accent-blue);
  color: #fff;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.18);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.pd-offer-row__cta:hover {
  transform: translateY(-1px);
  background: var(--pd-accent-blue-dark);
  color: #fff;
}

.pd-offer-row__cta-note {
  margin-top: 10px;
  color: var(--pd-text-muted);
  font-size: 0.82rem;
  line-height: 1.4;
}

.pd-offer-row__cta-note.is-positive {
  color: var(--pd-success);
  font-weight: 700;
}

.pd-room-result__empty {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 26px;
  color: var(--pd-text-muted);
}

.pd-room-result__empty i {
  color: var(--pd-text-light);
  font-size: 1.2rem;
}

/* ===== Sidebar Booking ===== */
.pd-card--booking {
  padding: 22px;
  border-radius: var(--pd-radius-2xl);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--pd-shadow-lg);
  position: relative;
  overflow: visible;
}

.pd-form__group {
  margin-bottom: 14px;
}

.pd-form__group label {
  display: block;
  margin-bottom: 8px;
  color: var(--pd-text);
  font-size: 0.86rem;
  font-weight: 800;
}

.pd-form__group label i {
  color: var(--pd-text-light);
  margin-right: 6px;
}

.pd-form__trigger {
  width: 100%;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--pd-surface-soft);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  cursor: pointer;
  transition: all var(--pd-transition-fast);
  position: relative;
  z-index: 2;
}

.pd-form__trigger:hover {
  border-color: rgba(0, 132, 137, 0.35);
  background: #fff;
  box-shadow: var(--pd-shadow-md);
}

.pd-form__trigger-text {
  color: var(--pd-text);
  font-weight: 700;
}

.pd-form__trigger:focus-visible,
.pd-counter__btn:focus-visible,
.pd-sheet__close:focus-visible,
.pd-sheet__footer .pd-btn:focus-visible {
  outline: 3px solid rgba(0, 132, 137, 0.20);
  outline-offset: 2px;
}

.pd-results {
  margin-top: 18px;
}

.pd-results__title {
  margin-bottom: 12px;
  color: var(--pd-text);
  font-size: 1rem;
  font-weight: 800;
}

.pd-result-card {
  padding: 16px;
  margin-bottom: 12px;
  border-radius: 18px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border-subtle);
}

.pd-result-card:last-child {
  margin-bottom: 0;
}

.pd-result__title {
  margin-bottom: 10px;
  color: var(--pd-text);
  font-size: 0.98rem;
  font-weight: 800;
}

.pd-result__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
  color: var(--pd-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.pd-result__price {
  margin-bottom: 12px;
  color: var(--pd-success);
  font-weight: 800;
}

.pd-result__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 42px;
  padding: 10px 16px;
  background: var(--pd-success);
  color: #fff;
  text-decoration: none;
  border-radius: var(--pd-radius-md);
  font-weight: 700;
  font-size: 0.875rem;
  transition: all var(--pd-transition-fast);
}

.pd-result__book-btn:hover {
  filter: brightness(0.97);
  transform: translateY(-1px);
  color: #fff;
}

/* ===== Sidebar Rate Option ===== */
.pd-rate-option {
  margin-top: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #e4e7ec;
  background: #fff;
}

.pd-rate-option__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.pd-rate-option__name {
  color: var(--pd-text);
  font-size: 0.98rem;
  font-weight: 800;
}

.pd-rate-option__sub,
.pd-rate-option__tax {
  color: var(--pd-text-muted);
  font-size: 0.84rem;
}

.pd-rate-option__oldprice {
  color: var(--pd-text-light);
  text-decoration: line-through;
  font-size: 0.84rem;
  text-align: right;
}

.pd-rate-option__price {
  color: var(--pd-danger);
  font-size: 1.35rem;
  font-weight: 900;
  text-align: right;
}

.pd-rate-option__features {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 7px;
}

.pd-rate-option__features li {
  display: flex;
  gap: 8px;
  color: var(--pd-text-soft);
  line-height: 1.45;
  font-size: 0.9rem;
}

.pd-rate-option__features li.is-positive {
  color: var(--pd-success);
  font-weight: 700;
}

.pd-rate-option__features li.is-neutral {
  color: var(--pd-text-soft);
}

.pd-rate-option__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.pd-rate-option__tags span {
  padding: 6px 10px;
  border-radius: var(--pd-radius-full);
  background: #f5f7fa;
  color: #344054;
  font-size: 0.76rem;
  font-weight: 800;
}

.pd-rate-option__details {
  margin-top: 12px;
}

.pd-rate-option__details summary {
  cursor: pointer;
  color: #175cd3;
  font-weight: 800;
  font-size: 0.88rem;
}

.pd-rate-option__breakdown {
  margin-top: 10px;
  display: grid;
  gap: 7px;
}

.pd-rate-option__breakrow {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #344054;
  font-size: 0.88rem;
}

.pd-rate-option__actions {
  margin-top: 14px;
}

.pd-rate-toggle {
  width: 100%;
  border: 1px solid var(--pb-border);
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 700;
  color: var(--pb-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.18s ease;
}

.pd-rate-toggle:hover {
  border-color: var(--pd-accent);
  background: #f8fbff;
}

/* ===== Policies ===== */
.pd-policies {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-policy {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--pd-surface-soft);
  border-radius: 18px;
  border: 1px solid var(--pd-border-subtle);
}

.pd-policy i {
  color: var(--pd-accent);
  font-size: 1.125rem;
}

.pd-policy strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pd-text);
  font-size: 0.96rem;
}

.pd-policy p {
  margin: 0;
  color: var(--pd-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Map ===== */
.pd-map {
  width: 100%;
  height: 200px;
  border-radius: var(--pd-radius-lg);
  overflow: hidden;
  border: 1px solid var(--pd-border);
}

.pd-map__address {
  margin-top: 12px;
  color: var(--pd-text-soft);
  font-size: 0.875rem;
}

.pd-map__placeholder {
  min-height: 160px;
  border-radius: var(--pd-radius-lg);
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--pd-text-soft);
}

.pd-map__placeholder i {
  font-size: 1.5rem;
  color: var(--pd-accent);
}

/* ===== Lightbox ===== */
.pd-lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1200;
}

.pd-lightbox.active {
  display: flex;
}

.pd-lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--pd-radius-lg);
}

.pd-lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
}

/* ===== Sheets / Modals ===== */
.pd-sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, visibility .22s ease;
  z-index: 10010;
}

.pd-sheet-backdrop.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pd-sheet {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10020;
  transition: opacity .22s ease, visibility .22s ease;
}

.pd-sheet.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.pd-sheet__content {
  width: min(860px, 100%);
  max-width: 860px;
  max-height: min(88vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(15, 23, 42, 0.22);
  transform: translateY(14px) scale(.985);
  transition: transform .22s ease;
}

.pd-sheet.active .pd-sheet__content {
  transform: translateY(0) scale(1);
}

.pd-sheet__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 22px 22px 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.pd-sheet__header h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.pd-sheet__close {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 14px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}

.pd-sheet__close:hover {
  background: #e2e8f0;
  transform: translateY(-1px);
}

.pd-sheet__body {
  padding: 20px 22px;
  overflow: auto;
}

.pd-sheet__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: #fff;
}

.pd-sheet__footer .pd-btn {
  min-height: 50px;
  border-radius: 16px;
  padding-inline: 24px;
}

/* ===== Guest Counter ===== */
.pd-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

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

.pd-counter strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.pd-counter span {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  color: #64748b;
}

.pd-counter__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pd-counter__controls > span {
  min-width: 28px;
  margin-top: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.pd-counter__btn {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.22);
  background: #fff;
  color: #2563eb;
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: all .18s ease;
}

.pd-counter__btn:hover {
  background: rgba(37, 99, 235, 0.06);
  transform: translateY(-1px);
}


/* ===== Loading / Empty ===== */
.pd-loading,
.pd-empty,
.pd-calendar__loading,
.pd-room-calendar__empty {
  padding: 24px;
  text-align: center;
  color: var(--pd-text-soft);
  border-radius: var(--pd-radius-md);
  background: var(--pd-surface-soft);
  border: 1px dashed var(--pd-border);
}

.pd-loading i,
.pd-empty i,
.pd-calendar__loading i {
  margin-right: 6px;
  color: var(--pd-accent);
}

/* ===== Mobile Search Bar ===== */
.pd-mobile-searchbar {
  display: none;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .pd-layout {
    grid-template-columns: 1fr 350px;
  }

  .pd-room-result {
    grid-template-columns: minmax(280px, 330px) 1fr;
  }
}

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

  .pd-sidebar {
    position: static;
  }

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

  .pd-room-result__left {
    border-right: 0;
    border-bottom: 1px solid #e6ebf3;
  }
}

@media (max-width: 900px) {
  .pd-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-card--reviews .pd-review-summary {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pd-container {
    padding: 16px 16px 80px;
  }

  .pd-title {
    font-size: 1.9rem;
  }

  .pd-actions {
    flex-direction: column;
  }

  .pd-btn {
    width: 100%;
  }

  .pd-gallery__main,
  .pd-gallery__main img {
    min-height: 260px;
  }

  .pd-gallery__thumb {
    width: 94px;
    min-width: 94px;
    height: 68px;
  }

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

  .pd-card--reviews .pd-review-summary {
    grid-template-columns: 1fr;
  }

  .pd-section-head {
    flex-direction: column;
  }

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

  .pd-offer-row__summary {
    padding: 18px 18px 16px;
  }

  .pd-offer-row__pricebox {
    padding: 16px 18px 18px;
    text-align: left;
    border-left: 0;
    border-top: 1px solid #e8edf5;
    align-items: stretch;
  }

  .pd-offer-row__savings {
    align-self: flex-start;
  }

  .pd-offer-row__price {
    font-size: 1.7rem;
  }

  .pd-rate-option__head {
    flex-direction: column;
  }

  .pd-rate-option__oldprice,
  .pd-rate-option__price {
    text-align: left;
  }

  .pd-mobile-searchbar {
    display: block;
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 9999;
    pointer-events: none;
  }

  .pd-mobile-searchbar__btn {
    pointer-events: auto;
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 0;
    border-radius: var(--pd-radius-full);
    background: var(--pd-accent);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: var(--pd-shadow-xl);
  }

  .pd-sidebar {
    padding-bottom: 76px;
  }

  .pd-sheet {
    padding: 0;
    align-items: stretch;
    justify-content: stretch;
  }

  .pd-sheet__content {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    transform: translateY(18px);
  }

  .pd-sheet.active .pd-sheet__content {
    transform: translateY(0);
  }

  .pd-sheet__header {
    min-height: 70px;
    padding: 16px 18px;
  }

  .pd-sheet__body {
    flex: 1;
    padding: 16px 16px 112px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pd-sheet__footer {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.10);
  }

  .pd-sheet__footer .pd-btn {
    flex: 1;
  }

  .pd-mobile-calendar-list {
    display: block;
  }

 

  .pd-mobile-month {
    padding: 14px 12px;
    border-radius: 20px;
  }

  .pd-mobile-month__grid {
    gap: 5px;
  }

  .pd-mobile-month__weekday {
    font-size: 0.74rem;
  }

  .pd-mobile-month__empty,
  .pd-mobile-day {
    height: 40px;
  }

  .pd-mobile-day {
    font-size: 0.92rem;
    border-radius: 11px;
  }

  .pd-mobile-day.is-start.is-end {
    border-radius: 11px;
  }

  .pd-map,
  #pdPropertyMap,
  .leaflet-container,
  .leaflet-pane,
  .leaflet-top,
  .leaflet-bottom,
  .leaflet-control {
    z-index: 1 !important;
  }
}

@media (max-width: 520px) {
  .pd-card,
  .pd-card--rooms,
  .pd-card--about,
  .pd-card--facts,
  .pd-card--amenities,
  .pd-card--reviews {
    padding: 18px;
    border-radius: 20px;
  }

  .pd-room-info__title {
    font-size: 1.15rem;
  }

  .pd-room-info__amenity,
  .pd-amenity-pill {
    font-size: 0.78rem;
  }

  .pd-offer-row__title {
    font-size: 0.96rem;
  }

  .pd-offer-row__features li,
  .pd-offer-breakdown__row,
  .pd-rate-option__features li,
  .pd-rate-option__breakrow {
    font-size: 0.84rem;
  }
}


.pd-rate-more {
  margin-top: 12px;
}

.pd-rate-more-list {
  margin-top: 10px;
}

.pd-rate-more-list[hidden] {
  display: none !important;
}

.pd-inventory__desc {
  margin-top: 10px;
  color: #b45309;
  font-size: 0.9rem;
  line-height: 1.5;
}




/* =========================================================
   CUSTOM DESKTOP CALENDAR
   ========================================================= */

#pdDateSheet .pd-sheet__content--calendar {
  width: min(1040px, calc(100vw - 36px));
  max-width: 1040px;
  max-height: 92vh;
}

#pdDateSheet .pd-sheet__body--calendar {
  padding: 16px 22px 10px;
  overflow: hidden;
}

.pd-calendar-shell {
  width: 100%;
  border: 1px solid #dde6f0;
  border-radius: 20px;
  background: #fff;
  padding: 18px 18px 14px;
  box-sizing: border-box;
}

.pd-custom-calendar {
  width: 100%;
}

.pd-custom-calendar__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.pd-cal-nav {
  width: 40px;
  height: 40px;
  border: 1px solid #d8e0ea;
  border-radius: 999px;
  background: #fff;
  color: #475467;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .18s ease;
}

.pd-cal-nav:hover {
  background: #f8fafc;
  color: #0f172a;
}

.pd-custom-calendar__months {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
}

.pd-cal-month {
  padding: 0 12px 8px;
  min-width: 0;
}

.pd-cal-month + .pd-cal-month {
  border-left: 1px solid #e5ebf3;
}

.pd-cal-month__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 800;
  color: #202939;
  margin-bottom: 12px;
}

.pd-cal-month__weekdays,
.pd-cal-month__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.pd-cal-month__weekdays {
  margin-bottom: 6px;
}

.pd-cal-weekday {
  text-align: center;
  color: #6b7280;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 0;
}

.pd-cal-day,
.pd-cal-day--empty {
  height: 46px;
}

.pd-cal-day {
  border: none;
  background: #fff;
  color: #111827;
  border-radius: 12px;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .18s ease;
}

.pd-cal-day:hover:not(:disabled) {
  background: #eef6ff;
}

.pd-cal-day.is-muted {
  color: #cbd5e1;
}

.pd-cal-day.is-disabled {
  color: #d7dee8;
  cursor: not-allowed;
  background:
    repeating-linear-gradient(
      -45deg,
      #fafbfd,
      #fafbfd 6px,
      #f2f5f9 6px,
      #f2f5f9 12px
    );
}

.pd-cal-day.is-today {
  box-shadow: inset 0 0 0 1px rgba(15, 139, 148, 0.22);
}

.pd-cal-day.is-start,
.pd-cal-day.is-end {
  background: #0f8b94;
  color: #fff;
}

.pd-cal-day.is-in-range {
  background: rgba(15, 139, 148, 0.14);
  color: #111827;
  border-radius: 0;
}

.pd-cal-day.is-start {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pd-cal-day.is-end {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pd-cal-day.is-start.is-end {
  border-radius: 12px;
}

.pd-date-modal__note {
  margin-top: 14px;
  padding: 0 2px;
  color: #667085;
  font-size: 0.92rem;
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .pd-calendar-shell {
    display: none;
  }

  .pd-mobile-calendar-list {
    display: block;
  }
}


/* =========================================================
   CUSTOM CALENDAR - MOBILE FINAL
   ========================================================= */

@media (max-width: 767.98px) {
  #pdDateSheet {
    padding: 0;
  }

  #pdDateSheet .pd-sheet__content--calendar {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    border: none;
    box-shadow: none;
    display: flex;
    flex-direction: column;
  }

  #pdDateSheet .pd-sheet__header--calendar {
    min-height: 68px;
    padding: 16px 18px;
    border-bottom: 1px solid #e7edf4;
    background: #fff;
  }

  #pdDateSheet .pd-sheet__body--calendar {
    flex: 1;
    padding: 14px 14px 110px;
    overflow: auto;
    background: #fff;
    -webkit-overflow-scrolling: touch;
  }

  #pdDateSheet .pd-sheet__footer--calendar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
    padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid #e7edf4;
    box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.10);
  }

  #pdDateSheet .pd-sheet__footer--calendar .pd-btn {
    flex: 1;
    min-height: 48px;
    border-radius: 14px;
  }

  .pd-calendar-shell {
    display: none;
  }

  .pd-mobile-calendar-list {
    display: block;
  }

  .pd-mobile-month {
    margin-bottom: 14px;
    padding: 14px 10px 12px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
  }

  .pd-mobile-month:last-child {
    margin-bottom: 0;
  }

  .pd-mobile-month__title {
    margin-bottom: 12px;
    text-align: center;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
    text-transform: capitalize;
  }

  .pd-mobile-month__grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 4px;
    align-items: center;
  }

  .pd-mobile-month__weekday {
    text-align: center;
    font-size: 0.72rem;
    font-weight: 800;
    color: #64748b;
    padding: 4px 0 6px;
  }

  .pd-mobile-month__empty {
    height: 42px;
  }

  .pd-mobile-day {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 11px;
    background: #fff;
    color: #0f172a;
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all .18s ease;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
  }

  .pd-mobile-day:hover:not(:disabled) {
    background: #eef6ff;
  }

  .pd-mobile-day.is-start,
  .pd-mobile-day.is-end {
    background: #0d9488;
    color: #fff;
    box-shadow: 0 8px 18px rgba(13, 148, 136, 0.20);
  }

  .pd-mobile-day.is-in-range {
    background: rgba(13, 148, 136, 0.12);
    color: #0f172a;
    border-radius: 0;
  }

  .pd-mobile-day.is-start {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }

  .pd-mobile-day.is-end {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .pd-mobile-day.is-start.is-end {
    border-radius: 11px;
  }

  .pd-mobile-day.is-past,
  .pd-mobile-day:disabled {
    opacity: 0.38;
    cursor: not-allowed;
    background:
      repeating-linear-gradient(
        -45deg,
        #fafbfd,
        #fafbfd 6px,
        #f2f5f9 6px,
        #f2f5f9 12px
      );
    color: #94a3b8;
  }

  .pd-date-modal__note {
    margin-top: 14px;
    padding: 0 2px;
    font-size: 0.84rem;
    line-height: 1.45;
    color: #667085;
  }
}

/* =========================================================
   PROPERTY DETAIL - MINIMAL REVIEW STYLE OVERRIDES
   Bunu dosyanın EN ALTINA ekle
   ========================================================= */

:root {
  --pd-bg: #f8fafc;
  --pd-surface: #ffffff;
  --pd-surface-soft: #f8fafc;

  --pd-border: #e9eef5;
  --pd-border-strong: #dbe4ee;
  --pd-border-subtle: rgba(15, 23, 42, 0.05);

  --pd-text: #101828;
  --pd-text-soft: #667085;
  --pd-text-muted: #667085;
  --pd-text-light: #98a2b3;

  --pd-shadow-xs: 0 1px 2px rgba(16, 24, 40, 0.03);
  --pd-shadow-sm: 0 4px 12px rgba(16, 24, 40, 0.04);
  --pd-shadow-md: 0 8px 18px rgba(16, 24, 40, 0.05);
  --pd-shadow-lg: 0 10px 24px rgba(16, 24, 40, 0.06);
  --pd-shadow-xl: 0 16px 36px rgba(16, 24, 40, 0.08);

  --pd-radius-md: 12px;
  --pd-radius-lg: 14px;
  --pd-radius-xl: 16px;
  --pd-radius-2xl: 18px;
}

/* ===== Genel Layout ===== */

.pd-container {
  max-width: 1320px;
  padding: 18px 20px 56px;
}

.pd-layout {
  grid-template-columns: 1fr 360px;
  gap: 22px;
}

.pd-main {
  gap: 16px;
}

.pd-sidebar {
  gap: 14px;
  top: 18px;
}

/* ===== Hero / Başlık ===== */

.pd-hero {
  margin-bottom: 22px;
}

.pd-title-group {
  margin-bottom: 12px;
}

.pd-title {
  font-size: clamp(1.8rem, 2.4vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}

.pd-subtitle {
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 860px;
}

.pd-meta {
  gap: 8px 14px;
  margin-bottom: 12px;
}

.pd-meta-chip {
  font-size: 0.83rem;
  font-weight: 600;
}

.pd-rating {
  padding: 4px 10px;
  font-size: 0.82rem;
  border-radius: 999px;
}

.pd-badges {
  gap: 8px;
  margin-bottom: 14px;
}

.pd-badge {
  min-height: 30px;
  padding: 6px 11px;
  font-size: 0.76rem;
  font-weight: 700;
  border-radius: 999px;
}

/* ===== Butonlar ===== */

.pd-btn {
  min-height: 42px;
  padding: 10px 16px;
  font-size: 0.9rem;
  border-radius: 12px;
}

.pd-btn--primary {
  box-shadow: none;
}

.pd-btn--primary:hover {
  box-shadow: var(--pd-shadow-sm);
  transform: translateY(-1px);
}

/* ===== Kartlar ===== */

.pd-card,
.pd-card--rooms,
.pd-card--booking,
.pd-summary-card,
.pd-card--about,
.pd-card--facts,
.pd-card--amenities,
.pd-card--reviews {
  background: var(--pd-surface);
  border: 1px solid var(--pd-border);
  border-radius: 16px;
  box-shadow: none;
}

.pd-card,
.pd-card--rooms,
.pd-card--booking {
  padding: 18px;
}

.pd-card__header {
  margin-bottom: 12px;
}

.pd-card__title {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 700;
  gap: 8px;
}

/* ===== Gallery ===== */

.pd-gallery--modern {
  gap: 10px;
  margin-top: 16px;
}

.pd-gallery__main {
  min-height: 400px;
  border-radius: 18px;
  box-shadow: none;
}

.pd-gallery__main img {
  min-height: 400px;
}

.pd-gallery__overlay {
  padding: 16px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.34), transparent);
}

.pd-gallery__tag,
.pd-gallery__count {
  padding: 5px 10px;
  font-size: 0.74rem;
  font-weight: 700;
}

.pd-gallery__thumbs {
  gap: 8px;
}

.pd-gallery__thumb {
  width: 98px;
  min-width: 98px;
  height: 72px;
  border-radius: 12px;
  box-shadow: none;
  border: 1px solid var(--pd-border);
}

.pd-gallery__thumb.is-active {
  border-width: 1px;
}

/* ===== About ===== */

.pd-about__content {
  font-size: 0.94rem;
  line-height: 1.75;
}

.pd-about__fade {
  height: 56px;
  bottom: 38px;
}

.pd-more-btn {
  margin-top: 10px;
  font-size: 0.88rem;
}

/* ===== Facts ===== */

.pd-facts {
  gap: 10px;
}

.pd-fact {
  min-height: 72px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border);
}

.pd-fact__label {
  font-size: 0.68rem;
  margin-bottom: 3px;
}

.pd-fact__value {
  font-size: 0.94rem;
  font-weight: 700;
}

/* ===== Amenities ===== */

.pd-amenities--compact {
  gap: 8px;
}

.pd-amenity-pill,
.pd-room-info__amenity {
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border);
  font-size: 0.78rem;
  font-weight: 700;
}

/* ===== Reviews ===== */

.pd-card--reviews .pd-review-summary {
  grid-template-columns: 190px 1fr;
  gap: 16px;
}

.pd-review-summary__score {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 132, 137, 0.10);
}

.pd-review-summary__number {
  font-size: 2rem;
}

.pd-review {
  padding: 16px;
  border-radius: 16px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border);
}

.pd-review__title {
  font-size: 0.95rem;
}

.pd-review__text {
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Rooms / Offer Cards ===== */

.pd-card--rooms {
  border: 1px solid var(--pd-border);
}

.pd-section-head {
  gap: 14px;
  margin-bottom: 14px;
}

.pd-section-head__sub {
  font-size: 0.9rem;
  line-height: 1.55;
}

.pd-search-summary {
  gap: 8px;
}

.pd-search-summary span {
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border);
  font-size: 0.78rem;
}

.pd-room-results {
  gap: 14px;
}

.pd-room-result {
  grid-template-columns: minmax(280px, 340px) 1fr;
  border: 1px solid var(--pd-border);
  border-radius: 16px;
  box-shadow: none;
}

.pd-room-result__left {
  border-right: 1px solid var(--pd-border);
  background: #fcfdff;
}

.pd-room-media__slider,
.pd-room-media__single,
.pd-room-media__placeholder {
  aspect-ratio: 16 / 10;
}

.pd-room-media__nav {
  width: 34px;
  height: 34px;
  box-shadow: var(--pd-shadow-sm);
}

.pd-room-media__badge {
  top: 10px;
  left: 10px;
  padding: 6px 10px;
  font-size: 0.72rem;
}

.pd-room-info {
  padding: 14px 14px 16px;
}

.pd-room-info__title {
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.pd-room-info__desc {
  margin-bottom: 10px;
  font-size: 0.88rem;
  line-height: 1.55;
}

.pd-room-info__meta {
  gap: 8px 12px;
  margin-bottom: 10px;
  font-size: 0.82rem;
}

.pd-room-info__link {
  margin-top: 10px;
  font-size: 0.84rem;
}

/* ===== Offer satırları ===== */

.pd-offer-row {
  grid-template-columns: 1fr 214px;
  border-bottom: 1px solid var(--pd-border);
}

.pd-offer-row.is-best {
  background: #fff;
}

.pd-offer-row__summary {
  padding: 16px 18px;
}

.pd-offer-row__ribbon {
  margin-bottom: 8px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.7rem;
}

.pd-offer-row__title {
  font-size: 0.96rem;
}

.pd-offer-row__badges {
  gap: 6px;
  margin-top: 8px;
}

.pd-mini-badge {
  min-height: 24px;
  padding: 4px 8px;
  font-size: 0.69rem;
  border-radius: 999px;
}

.pd-offer-row__features {
  margin-top: 10px;
  gap: 6px;
}

.pd-offer-row__features li {
  font-size: 0.84rem;
  line-height: 1.45;
  gap: 8px;
}

.pd-offer-row__details {
  margin-top: 10px;
  padding-top: 10px;
}

.pd-offer-row__details summary {
  font-size: 0.84rem;
}

.pd-offer-breakdown {
  margin-top: 10px;
  gap: 6px;
}

.pd-offer-breakdown__row {
  font-size: 0.84rem;
}

.pd-offer-row__pricebox {
  padding: 16px 16px;
  border-left: 1px solid var(--pd-border);
  background: #fff;
}

.pd-offer-row__savings {
  margin-bottom: 6px;
  padding: 5px 8px;
  font-size: 0.72rem;
  border-radius: 999px;
}

.pd-offer-row__oldprice {
  font-size: 0.82rem;
}

.pd-offer-row__price {
  font-size: 1.55rem;
  margin-top: 2px;
  letter-spacing: -0.02em;
}

.pd-offer-row__price span {
  font-size: 0.88rem;
}

.pd-offer-row__price-note {
  margin-top: 6px;
  font-size: 0.78rem;
}

.pd-offer-row__taxnote {
  margin-top: 8px;
  font-size: 0.74rem;
}

.pd-offer-row__cta {
  min-height: 42px;
  margin-top: 12px;
  border-radius: 12px;
  font-size: 0.88rem;
  box-shadow: none;
}

.pd-offer-row__cta:hover {
  box-shadow: var(--pd-shadow-sm);
}

.pd-offer-row__cta-note {
  margin-top: 8px;
  font-size: 0.76rem;
}

/* ===== Booking Sidebar ===== */

.pd-card--booking {
  padding: 18px;
  border-radius: 16px;
  box-shadow: none;
}

.pd-form__group {
  margin-bottom: 12px;
}

.pd-form__group label {
  margin-bottom: 6px;
  font-size: 0.8rem;
  font-weight: 700;
}

.pd-form__trigger {
  min-height: 50px;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--pd-surface-soft);
  border: 1px solid var(--pd-border);
  box-shadow: none;
}

.pd-form__trigger:hover {
  background: #fff;
  border-color: var(--pd-border-strong);
  box-shadow: none;
}

.pd-form__trigger-text {
  font-size: 0.9rem;
  font-weight: 700;
}

.pd-results {
  margin-top: 14px;
}

.pd-result-card,
.pd-rate-option,
.pd-policy {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--pd-border);
  box-shadow: none;
}

.pd-results__title,
.pd-rate-option__name {
  font-size: 0.94rem;
}

.pd-result__details,
.pd-rate-option__sub,
.pd-rate-option__tax,
.pd-rate-option__features li,
.pd-rate-option__breakrow,
.pd-policy p {
  font-size: 0.82rem;
}

.pd-rate-option__price {
  font-size: 1.15rem;
}

.pd-rate-option__tags {
  gap: 6px;
  margin-top: 10px;
}

.pd-rate-option__tags span {
  padding: 5px 8px;
  font-size: 0.68rem;
}

.pd-rate-toggle {
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
}

/* ===== Map ===== */

.pd-map {
  height: 184px;
  border-radius: 14px;
}

.pd-map__address {
  margin-top: 10px;
  font-size: 0.82rem;
}

/* ===== Sheet / Modal ===== */

.pd-sheet__content {
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.pd-sheet__header {
  padding: 18px 18px 14px;
}

.pd-sheet__header h3 {
  font-size: 0.98rem;
}

.pd-sheet__close {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}

.pd-sheet__body {
  padding: 16px 18px;
}

.pd-sheet__footer {
  padding: 14px 18px 18px;
}

.pd-sheet__footer .pd-btn {
  min-height: 44px;
  border-radius: 12px;
}

/* ===== Mobil ===== */

@media (max-width: 1100px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pd-sidebar {
    position: static;
    top: auto;
  }

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

  .pd-room-result__left {
    border-right: 0;
    border-bottom: 1px solid var(--pd-border);
  }
}

@media (max-width: 768px) {
  .pd-container {
    padding: 14px 12px 78px;
  }

  .pd-title {
    font-size: 1.6rem;
  }

  .pd-card,
  .pd-card--rooms,
  .pd-card--booking,
  .pd-card--about,
  .pd-card--facts,
  .pd-card--amenities,
  .pd-card--reviews {
    padding: 15px;
    border-radius: 15px;
  }

  .pd-gallery__main,
  .pd-gallery__main img {
    min-height: 240px;
  }

  .pd-gallery__thumb {
    width: 84px;
    min-width: 84px;
    height: 62px;
  }

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

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

  .pd-offer-row__summary {
    padding: 14px 14px 12px;
  }

  .pd-offer-row__pricebox {
    padding: 14px;
    border-left: 0;
    border-top: 1px solid var(--pd-border);
    text-align: left;
  }

  .pd-offer-row__price {
    font-size: 1.38rem;
  }

  .pd-btn {
    width: 100%;
  }

  .pd-actions {
    flex-direction: column;
  }
}


.pd-selection-summary {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.pd-selection-summary__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pd-selection-summary__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-selection-summary__count {
  min-width: 28px;
  height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #eef2ff;
  color: #4338ca;
  font-size: 0.84rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pd-selection-summary__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pd-selection-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 13px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.pd-selection-line__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.pd-selection-line__info strong {
  font-size: 0.95rem;
  color: #0f172a;
  line-height: 1.25;
}

.pd-selection-line__info span {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.25;
}

.pd-selection-line__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  white-space: nowrap;
}

.pd-selection-line__meta span {
  font-size: 0.8rem;
  color: #64748b;
}

.pd-selection-line__meta strong {
  font-size: 0.92rem;
  color: #0f172a;
}

.pd-selection-summary__footer {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed rgba(15, 23, 42, 0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pd-selection-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.pd-selection-summary__total span {
  font-size: 0.9rem;
  color: #64748b;
}

.pd-selection-summary__total strong {
  font-size: 1.05rem;
  color: #0f172a;
}

.pd-room-select {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
}

.pd-room-select__stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.pd-room-select__btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.pd-room-select__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.12);
  background: #f8fafc;
}

.pd-room-select__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pd-room-select__value {
  min-width: 34px;
  text-align: center;
  font-size: 0.96rem;
  font-weight: 700;
  color: #0f172a;
}

.pd-room-select__meta {
  text-align: center;
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.3;
}

@media (max-width: 768px) {
  .pd-selection-line {
    flex-direction: column;
  }

  .pd-selection-line__meta {
    align-items: flex-start;
    text-align: left;
    white-space: normal;
  }

  .pd-room-select__stepper {
    width: 100%;
  }
}

.pd-room-select {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: stretch;
}

.pd-room-select__stepper {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  padding: 4px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  max-width: 124px;
  min-height: 34px;
}

.pd-room-select__btn {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.pd-room-select__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
  background: #f8fafc;
}

.pd-room-select__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pd-room-select__value {
  min-width: 24px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #0f172a;
}

.pd-room-select__meta {
  text-align: center;
  font-size: 0.74rem;
  color: #64748b;
  line-height: 1.25;
}

@media (max-width: 768px) {
  .pd-room-select__stepper {
    width: 100%;
    max-width: 112px;
  }
}



.pd-room-qv-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.pd-room-qv-modal.is-active {
  display: block;
}

.pd-room-qv-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
  backdrop-filter: blur(6px);
}

.pd-room-qv-modal__dialog {
  position: relative;
  width: min(1120px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  margin: 20px auto;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
}

.pd-room-qv {
  background: #fff;
}

.pd-room-qv__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  max-height: calc(100vh - 40px);
}

.pd-room-qv__gallery {
  padding: 20px;
  background: #f8fafc;
  border-right: 1px solid #e2e8f0;
  overflow: hidden;
}

.pd-room-qv__hero {
  position: relative;
  height: 430px;
  border-radius: 24px;
  overflow: hidden;
  background: #e2e8f0;
}

.pd-room-qv__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .2s ease;
}

.pd-room-qv__caption {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  max-width: calc(100% - 32px);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.pd-room-qv__hero-badges {
  position: absolute;
  left: 16px;
  top: 16px;
  right: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-room-qv__chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
}

.pd-room-qv__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.pd-room-qv__thumb {
  flex: 0 0 auto;
  width: 78px;
  height: 78px;
  border: 2px solid transparent;
  border-radius: 16px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
}

.pd-room-qv__thumb.is-active {
  border-color: #008489;
  box-shadow: 0 0 0 3px rgba(0, 132, 137, 0.16);
}

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

.pd-room-qv__content {
  padding: 26px;
  overflow-y: auto;
  max-height: calc(100vh - 40px);
}

.pd-room-qv__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.pd-room-qv__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #008489;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
}

.pd-room-qv__title {
  margin: 0;
  color: #0f172a;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 850;
}

.pd-room-qv__headline {
  margin: 8px 0 0;
  color: #475569;
  line-height: 1.55;
}

.pd-room-qv__close {
  width: 38px;
  height: 38px;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  color: #0f172a;
  cursor: pointer;
}

.pd-room-qv__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.pd-room-qv__facts span,
.pd-room-qv__amenity {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 11px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
  font-size: 12px;
  font-weight: 750;
}

.pd-room-qv__facts i,
.pd-room-qv__amenity i {
  color: #008489;
}

.pd-room-qv__section {
  margin-top: 18px;
}

.pd-room-qv__section h3 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 850;
}

.pd-room-qv__desc {
  color: #475569;
  font-size: .92rem;
  line-height: 1.65;
}

.pd-room-qv__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pd-room-qv__empty,
.pd-room-qv-loading,
.pd-room-qv-error {
  padding: 28px;
  color: #64748b;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pd-room-qv__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pd-room-qv__btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.pd-room-qv__btn--primary {
  background: #008489;
  color: #fff;
}

.pd-room-qv__btn--secondary {
  background: #fff;
  color: #334155;
  border-color: #cbd5e1;
}

.pd-room-info__link--button {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

@media (max-width: 900px) {
  .pd-room-qv-modal__dialog {
    width: min(720px, calc(100vw - 20px));
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    border-radius: 22px;
  }

  .pd-room-qv__grid {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 20px);
  }

  .pd-room-qv__gallery {
    border-right: 0;
    border-bottom: 1px solid #e2e8f0;
    padding: 14px;
  }

  .pd-room-qv__hero {
    height: 260px;
    border-radius: 18px;
  }

  .pd-room-qv__content {
    padding: 18px;
    max-height: 52vh;
  }

  .pd-room-qv__title {
    font-size: 1.25rem;
  }

  .pd-room-qv__thumb {
    width: 62px;
    height: 62px;
    border-radius: 12px;
  }
}


.pd-room-info__link--button {
  margin-top: 12px;
  border: 1px solid rgba(0, 132, 137, 0.18);
  background: rgba(0, 132, 137, 0.07);
  color: #008489;
  padding: 9px 13px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  transition: all 0.18s ease;
}

.pd-room-info__link--button::after {
  content: "›";
  font-size: 18px;
  line-height: 1;
  transform: translateY(-1px);
}

.pd-room-info__link--button:hover {
  background: #008489;
  color: #fff;
  border-color: #008489;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 132, 137, 0.18);
}

.pd-room-info__link--button:focus-visible {
  outline: 3px solid rgba(0, 132, 137, 0.22);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .pd-room-info__link--button {
    padding: 8px 12px;
    font-size: 12px;
  }
}


/* =========================================================
   PROPERTY DETAIL - PROFESSIONAL BOOKING LAYOUT APPEND
   Bu bloğu property_detail.css dosyasının EN ALTINA ekle.
   Mevcut yalın yapıyı bozmaz; yeni content yerleşimini tamamlar.
   ========================================================= */

/* ===== Professional page structure ===== */

.pd-container--detail {
  max-width: 1360px;
}

.pd-layout--booking-focused {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 368px;
  gap: 24px;
  align-items: start;
}

.pd-main--professional {
  min-width: 0;
}

.pd-sidebar--booking {
  position: relative;
  min-width: 0;
}

.pd-sticky-search {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 20;
}

@supports (top: env(safe-area-inset-top)) {
  .pd-sticky-search {
    top: calc(88px + env(safe-area-inset-top));
  }
}

/* ===== Professional hero ===== */

.pd-hero--professional {
  position: relative;
  margin-bottom: 24px;
}

.pd-hero__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.pd-hero__copy {
  padding: 4px 0 0;
}

.pd-eyebrow,
.pd-section-kicker,
.pd-booking-card__kicker,
.pd-selection-summary__kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--pd-accent);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.055em;
}

.pd-eyebrow {
  margin-bottom: 9px;
}

.pd-meta--hero {
  margin-top: 14px;
}

.pd-badges--hero {
  margin-top: 2px;
}

.pd-actions--hero {
  margin-top: 14px;
}

.pd-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0;
}

.pd-trust-strip__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-height: 66px;
  padding: 12px 13px;
  border: 1px solid var(--pd-border);
  border-radius: 15px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.pd-trust-strip__item > i {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--pd-accent-light);
  color: var(--pd-accent-dark);
  font-size: 0.9rem;
}

.pd-trust-strip__item strong {
  display: block;
  color: var(--pd-text);
  font-size: 0.86rem;
  font-weight: 850;
  line-height: 1.25;
}

.pd-trust-strip__item span {
  display: block;
  margin-top: 3px;
  color: var(--pd-text-muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.pd-gallery--hero {
  margin-top: 18px;
}

.pd-gallery__footer--hero {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
}

/* ===== Professional section headers ===== */

.pd-card__header--split,
.pd-section-head--rooms {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.pd-section-head--rooms .pd-card__title,
.pd-card__header--split .pd-card__title {
  margin-top: 5px;
}

.pd-card--priority {
  border-color: rgba(0, 132, 137, 0.18);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.05);
}

.pd-search-summary--compact {
  justify-content: flex-end;
  max-width: 420px;
}

/* ===== Room card refinements for decision stage ===== */

.pd-room-info__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.pd-room-info__head .pd-room-info__title {
  margin-bottom: 0;
}

.pd-room-info__availability {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--pd-success-light);
  color: var(--pd-success);
  font-size: 0.68rem;
  font-weight: 850;
  white-space: nowrap;
}

.pd-room-result.is-has-offer {
  border-color: rgba(37, 99, 235, 0.16);
}

.pd-offer-row.is-best {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
}

.pd-offer-row.is-best::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--pd-accent-blue);
}

/* ===== Sticky booking card ===== */

.pd-card--booking-sticky {
  overflow: visible;
  border-color: rgba(0, 132, 137, 0.14);
  background:
    radial-gradient(circle at top right, rgba(0, 132, 137, 0.08), transparent 34%),
    #fff;
}

.pd-booking-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.pd-booking-card__head h2 {
  margin: 6px 0 4px;
  color: var(--pd-text);
  font-size: 1.18rem;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: -0.025em;
}

.pd-booking-card__head p {
  margin: 0;
  color: var(--pd-text-muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.pd-booking-card__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--pd-success-light);
  color: var(--pd-success);
  font-size: 0.72rem;
  font-weight: 850;
}

.pd-form--booking {
  position: relative;
  z-index: 3;
}

.pd-booking-benefits {
  display: grid;
  gap: 7px;
  margin-top: 12px;
  padding: 11px;
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.9);
  border: 1px solid var(--pd-border);
}

.pd-booking-benefits span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pd-text-soft);
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
}

.pd-booking-benefits i {
  color: var(--pd-accent);
}

/* ===== Smart select button ===== */

.pd-smart-select-btn {
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: var(--pd-accent-blue);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 850;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.pd-smart-select-btn:hover {
  background: var(--pd-accent-blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.18);
}

.pd-smart-select-btn i {
  font-size: 0.78rem;
}

.pd-smart-select-note {
  margin-top: 8px;
  color: var(--pd-text-muted);
  font-size: 0.74rem;
  line-height: 1.38;
  text-align: center;
}

/* ===== Selected rooms sticky summary ===== */

.pd-selection-summary--sticky {
  margin-top: 14px;
  border-radius: 16px;
  box-shadow: none;
}

.pd-selection-summary--sticky .pd-selection-summary__head {
  align-items: flex-start;
}

.pd-selection-summary--sticky .pd-selection-summary__title {
  margin-top: 4px;
}

/* ===== Location card inside sticky column ===== */

.pd-card--location {
  padding: 16px;
}

.pd-card--location .pd-card__title {
  margin-bottom: 12px;
}

/* ===== Mobile booking drawer ===== */

.pd-mobile-booking-drawer,
.pd-choice-drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 10050;
}

.pd-mobile-booking-drawer.is-active,
.pd-choice-drawer.is-active {
  display: block;
}

.pd-mobile-booking-drawer__backdrop,
.pd-choice-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.42);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

.pd-mobile-booking-drawer__panel,
.pd-choice-drawer__panel {
  position: absolute;
  left: 50%;
  bottom: 16px;
  width: min(430px, calc(100vw - 24px));
  transform: translateX(-50%);
  border: 1px solid var(--pd-border);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.pd-mobile-booking-drawer__handle,
.pd-choice-drawer__handle {
  width: 42px;
  height: 4px;
  margin: 10px auto 4px;
  border-radius: 999px;
  background: #cbd5e1;
}

.pd-mobile-booking-drawer__head,
.pd-choice-drawer__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 14px;
  border-bottom: 1px solid var(--pd-border);
}

.pd-mobile-booking-drawer__head span,
.pd-choice-drawer__head span {
  display: block;
  color: var(--pd-text-light);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pd-mobile-booking-drawer__head strong,
.pd-choice-drawer__head strong {
  display: block;
  margin-top: 4px;
  color: var(--pd-text);
  font-size: 1rem;
  font-weight: 850;
}

.pd-mobile-booking-drawer__head button,
.pd-choice-drawer__head button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: var(--pd-surface-soft);
  color: var(--pd-text);
  font-size: 1.15rem;
  cursor: pointer;
}

.pd-mobile-booking-drawer__summary {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
}

.pd-mobile-booking-drawer__summary button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--pd-border);
  border-radius: 14px;
  background: var(--pd-surface-soft);
  color: var(--pd-text);
  font-size: 0.86rem;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.pd-mobile-booking-drawer__summary i {
  color: var(--pd-accent);
}

.pd-mobile-booking-drawer__panel > .pd-btn {
  width: calc(100% - 32px);
  margin: 0 16px 16px;
}

/* ===== Choice drawer ===== */

.pd-choice-drawer__body {
  padding: 16px;
}

.pd-choice-drawer__rate {
  color: var(--pd-text-soft);
  font-size: 0.86rem;
  font-weight: 750;
}

.pd-choice-drawer__price {
  margin-top: 6px;
  color: var(--pd-danger);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.025em;
}

.pd-choice-drawer__stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding: 8px;
  border: 1px solid var(--pd-border);
  border-radius: 999px;
  background: var(--pd-surface-soft);
}

.pd-choice-drawer__stepper button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--pd-text);
  font-size: 1.2rem;
  font-weight: 850;
  cursor: pointer;
  box-shadow: var(--pd-shadow-xs);
}

.pd-choice-drawer__stepper button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pd-choice-drawer__stepper strong {
  color: var(--pd-text);
  font-size: 1.05rem;
  font-weight: 900;
}

.pd-choice-drawer__hint {
  margin-top: 10px;
  color: var(--pd-text-muted);
  font-size: 0.8rem;
  line-height: 1.45;
  text-align: center;
}

.pd-choice-drawer__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 14px 16px 16px;
  border-top: 1px solid var(--pd-border);
}

/* ===== Small cleanup for old duplicated counters ===== */

.pd-room-select {
  display: none;
}

/* ===== Responsive professional layer ===== */

@media (max-width: 1200px) {
  .pd-layout--booking-focused {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 20px;
  }

  .pd-sticky-search {
    top: 76px;
  }
}

@media (max-width: 1100px) {
  .pd-layout--booking-focused {
    grid-template-columns: 1fr;
  }

  .pd-sticky-search {
    position: static;
  }

  .pd-sidebar--booking {
    order: -1;
  }

  .pd-card--location {
    display: none;
  }
}

@media (max-width: 900px) {
  .pd-trust-strip {
    grid-template-columns: 1fr;
  }

  .pd-card__header--split,
  .pd-section-head--rooms {
    flex-direction: column;
  }

  .pd-search-summary--compact {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 768px) {
  .pd-container--detail {
    padding-bottom: 88px;
  }

  .pd-eyebrow {
    font-size: 0.68rem;
  }

  .pd-hero--professional {
    margin-bottom: 16px;
  }

  .pd-trust-strip {
    gap: 8px;
  }

  .pd-trust-strip__item {
    min-height: auto;
    padding: 10px 11px;
    border-radius: 14px;
  }

  .pd-trust-strip__item > i {
    width: 30px;
    height: 30px;
  }

  .pd-actions--hero .pd-btn--ghost {
    display: none;
  }

  .pd-sidebar--booking {
    order: -1;
  }

  .pd-card--booking-sticky {
    display: none;
  }

  .pd-mobile-booking-drawer__panel,
  .pd-choice-drawer__panel {
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    transform: none;
    border-radius: 22px 22px 0 0;
    padding-bottom: env(safe-area-inset-bottom);
  }

  .pd-choice-drawer__footer .pd-btn {
    width: 100%;
  }

  .pd-room-info__head {
    flex-direction: column;
    gap: 6px;
  }

  .pd-room-info__availability {
    width: fit-content;
  }

  .pd-offer-row.is-best::before {
    width: 100%;
    height: 3px;
    right: 0;
    bottom: auto;
  }
}

@media (max-width: 520px) {
  .pd-gallery__footer--hero {
    justify-content: stretch;
  }

  .pd-gallery__footer--hero .pd-btn {
    width: 100%;
  }

  .pd-booking-benefits {
    padding: 10px;
  }

  .pd-mobile-booking-drawer__summary,
  .pd-choice-drawer__body,
  .pd-choice-drawer__footer {
    padding-left: 14px;
    padding-right: 14px;
  }
}


/* =========================================================
   Choice drawer selected rooms cart
   ========================================================= */

.pd-choice-drawer__cart {
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.96), rgba(255, 255, 255, 0.98));
}

.pd-choice-drawer__cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.pd-choice-drawer__cart-head strong {
  color: var(--pd-text, #0f172a);
  font-size: 0.9rem;
  font-weight: 850;
}

.pd-choice-drawer__cart-head span {
  min-width: 42px;
  height: 24px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--pd-accent-light, #e0f2fe);
  color: var(--pd-accent-dark, #0369a1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 850;
  white-space: nowrap;
}

.pd-choice-drawer__cart-list {
  display: grid;
  gap: 8px;
}

.pd-choice-drawer__cart-empty {
  padding: 12px;
  border: 1px dashed rgba(148, 163, 184, 0.75);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--pd-text-muted, #64748b);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
}

.pd-choice-drawer__cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 32px;
  align-items: center;
  gap: 10px;
  padding: 10px 10px 10px 12px;
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

.pd-choice-drawer__cart-item > div {
  min-width: 0;
}

.pd-choice-drawer__cart-item strong {
  display: block;
  color: var(--pd-text, #0f172a);
  font-size: 0.84rem;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-choice-drawer__cart-item span {
  display: block;
  margin-top: 3px;
  color: var(--pd-text-soft, #475569);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pd-choice-drawer__cart-item small {
  display: block;
  margin-top: 4px;
  color: var(--pd-text-muted, #64748b);
  font-size: 0.74rem;
  font-weight: 750;
  line-height: 1.3;
}

.pd-choice-drawer__cart-remove {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.09);
  color: #dc2626;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  font-weight: 850;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease, color 0.18s ease;
}

.pd-choice-drawer__cart-remove:hover {
  background: #dc2626;
  color: #fff;
  transform: scale(1.04);
}

.pd-choice-drawer__cart-remove:focus-visible {
  outline: 3px solid rgba(220, 38, 38, 0.22);
  outline-offset: 2px;
}

/* Drawer body scroll safety */
.pd-choice-drawer__body {
  max-height: min(68vh, 560px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* Selected state for drawer when cart has items */
.pd-choice-drawer__cart:has(.pd-choice-drawer__cart-item) {
  border-color: rgba(16, 185, 129, 0.26);
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.08), transparent 38%),
    linear-gradient(180deg, #ffffff, #f8fafc);
}

@media (max-width: 768px) {
  .pd-choice-drawer__body {
    max-height: calc(100vh - 230px);
  }

  .pd-choice-drawer__cart {
    margin-bottom: 14px;
    padding: 10px;
    border-radius: 15px;
  }

  .pd-choice-drawer__cart-item {
    padding: 9px 9px 9px 10px;
    border-radius: 13px;
  }

  .pd-choice-drawer__cart-item strong {
    font-size: 0.82rem;
  }

  .pd-choice-drawer__cart-item span,
  .pd-choice-drawer__cart-item small {
    font-size: 0.72rem;
  }
}

/* =========================================================
   Mobile bottom CTA selected / ready states
   ========================================================= */

.pd-mobile-searchbar__btn.is-partial {
  background: #fff7ed;
  color: #9a3412;
  border-color: rgba(249, 115, 22, 0.28);
}

.pd-mobile-searchbar__btn.is-partial i {
  color: #ea580c;
}

.pd-mobile-searchbar__btn.is-ready {
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(16, 185, 129, 0.32);
}

.pd-mobile-searchbar__btn.is-ready i {
  color: #fff;
}

.pd-mobile-searchbar__btn.is-ready:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.38);
}


.pd-choice-drawer__continue {
  grid-column: 1 / -1;
  min-height: 46px;
  border-radius: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 14px 34px rgba(16, 185, 129, 0.28);
}

.pd-choice-drawer__continue:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(16, 185, 129, 0.36);
}

.pd-choice-drawer__continue[hidden] {
  display: none !important;
}

.pd-choice-drawer__footer:has(.pd-choice-drawer__continue:not([hidden])) {
  grid-template-columns: 1fr;
}