.fp-d { background: var(--cream); padding: 96px 0 120px; position: relative; }
.fp-d__head { max-width: 700px; margin-bottom: 48px; }
.fp-d__head h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(32px, 4vw, 48px); margin: 0 0 12px; }
.fp-d__head p { color: var(--ink-muted); }
.fp-d__grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .fp-d__grid { grid-template-columns: repeat(3, 1fr); } }
.fp-d__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.15s ease;
}
.fp-d__card:hover { transform: translateY(-3px); }
.fp-d__img { aspect-ratio: 1; border-radius: var(--radius-sm); overflow: hidden; }
.fp-d__img img { width: 100%; height: 100%; object-fit: cover; }
.fp-d__card h3 { font-family: var(--font-serif); font-weight: 400; font-size: 22px; margin: 0; }
.fp-d__price { font-family: var(--font-serif); font-size: 18px; color: var(--navy); }
.fp-d__quick { align-self: flex-start; padding: 10px 20px; font-size: 12px; }

.fp-d__overlay {
  position: fixed;
  inset: 0;
  background: rgba(36, 34, 83, 0.5);
  z-index: 50;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.fp-d__overlay.is-open { opacity: 1; }
.fp-d__overlay[hidden] { display: none; }

.fp-d__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(100%, 460px);
  height: 100vh;
  background: var(--white);
  z-index: 51;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.3, 0.8, 0.3, 1);
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.25);
}
.fp-d__drawer[hidden] { display: none; }
.fp-d__drawer.is-open { transform: translateX(0); }
.fp-d__drawer-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: 0;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  color: var(--navy);
}
.fp-d__drawer-inner { padding: 48px 36px 40px; display: flex; flex-direction: column; gap: 14px; }
.fp-d__drawer-img { aspect-ratio: 1; border-radius: var(--radius-md); overflow: hidden; margin-bottom: 8px; }
.fp-d__drawer-img img { width: 100%; height: 100%; object-fit: cover; }
.fp-d__drawer-cat { color: var(--teal); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.fp-d__drawer h3 { font-family: var(--font-serif); font-weight: 400; font-size: 26px; margin: 0; }
.fp-d__drawer-meta { display: flex; gap: 12px; align-items: center; font-size: 14px; }
.fp-d__stars { color: #f5a623; letter-spacing: 2px; }
.fp-d__drawer-price { margin-left: auto; font-family: var(--font-serif); font-size: 20px; color: var(--navy); }
.fp-d__drawer p { color: var(--ink-muted); margin: 0; }
.fp-d__drawer-opts { display: flex; flex-wrap: wrap; gap: 8px; margin: 6px 0 8px; }
.fp-d__drawer-opts label {
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  cursor: pointer;
}
.fp-d__drawer-opts input { display: none; }
.fp-d__drawer-opts label:has(input:checked) { background: var(--navy); color: var(--white); border-color: var(--navy); }
