/* ================================================
   FURNITURE DETAIL PAGE
   ================================================ */

:root {
  --gold: #e1ae42;
  --gold-light: #c6a47e;
  --bg-dark: #0b0b0b;
  --bg-card: #111111;
  --border-gold: rgba(199, 120, 30, 0.5);
  --text-muted: #9f9f9f;
}

body {
  background: var(--bg-dark);
}

/* ── HERO ─────────────────────────────────── */
.fd-hero {
  background: var(--bg-dark);
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: url(../img/furniture/furniture-bg-left.jpg) center / cover
    no-repeat;
  background-color: #000;
  background-position: right;
  background-size: 100% 100%;
}

.fd-hero-left {
  padding: 20px 60px 20px 80px;
  position: relative;
  z-index: 2;
}

.fd-hero-right {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.fd-hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fd-hero-right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(to right, var(--bg-dark), transparent);
  z-index: 1;
  pointer-events: none;
}

.fd-hero-right::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(225, 174, 66, 0.4);
}

.fd-origin-label {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fd-origin-label::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.fd-hero-title {
  font-family: "Playfair Display", serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.fd-sup-mark {
  font-size: 0.4em;
  vertical-align: super;
}

.fd-hero-subtitle {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #fff;
  margin-bottom: 24px;
}

.fd-hero-desc {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.9;
  max-width: 420px;
  margin-bottom: 36px;
}

.fd-btn-primary {
  background-image: linear-gradient(180deg, #f6e27a 20%, #cb9b51 80%);
  border-radius: 999px;
  color: #000;
  border: none;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}

.fd-btn-primary:hover {
  opacity: 0.88;
  color: #000;
}

.fd-btn-outline {
  border: 1px solid rgba(214, 180, 107, 0.85);
  color: var(--gold);
  background: transparent;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.fd-btn-outline:hover {
  border: 1px solid rgba(214, 180, 107, 1) !important;
  color: var(--gold) !important;
  background: rgba(255, 211, 126, 0.12);
}

/* ── SPECS STRIP ──────────────────────────── */
.fd-specs-strip {
  background: #061812;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 0;
}

.fd-specs-strip .d-flex {
  align-items: stretch;
  min-height: 80px;
}

.fd-spec-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  position: relative;
}

.fd-spec-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fd-spec-item + .fd-spec-item::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 0;
  height: 100%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--border-gold),
    transparent
  );
}

.fd-spec-icon {
  color: var(--gold);
  font-size: 30px;
  margin-bottom: 2px;
}

.fd-spec-label {
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--gold);
  text-transform: uppercase;
}

.fd-spec-value {
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-align: left;
}

.fd-spec-note {
  font-size: 11px;
  color: #888;
}

/* ── SECTION SHARED ───────────────────────── */
.fd-section {
  padding: 40px 0;
}

.fd-section-alt {
  padding: 40px 0;
}

.fd-section-num {
  font-size: 16px;
  letter-spacing: 3px;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.fd-section-num span {
  border: 1px solid var(--gold);
  padding: 6px 6px;
  display: inline-block;
}

.fd-section-num::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-gold);
}

.fd-section-heading {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0;
}

/* ── 01 VISUAL CHARACTER ──────────────────── */
.fd-vc-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.fd-vc-table tr {
  border-bottom: 1px solid rgba(198, 164, 126, 0.15);
}

.fd-vc-table tr:first-child {
  border-top: 1px solid rgba(198, 164, 126, 0.15);
}

.fd-vc-table td {
  padding: 12px 0;
  font-size: 14px;
}

.fd-vc-table td:first-child {
  color: var(--text-muted);
  letter-spacing: 2px;
  font-size: 11px;
  text-transform: uppercase;
  width: 40%;
}

.fd-vc-table td:last-child {
  color: #fff;
  font-weight: 400;
}

.fd-intensity {
  display: inline-flex;
  gap: 4px;
}

.fd-intensity span {
  width: 14px;
  height: 14px;
  background: var(--gold);
  display: inline-block;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.fd-vc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.fd-vc-tag {
  border: 1px solid var(--border-gold);
  padding: 10px 14px;
  text-align: center;
  min-width: 90px;
  flex: 1;
}

.fd-vc-tag i {
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
}

.fd-vc-tag span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #bbb;
  text-transform: uppercase;
  display: block;
  line-height: 1.4;
}

.fd-vc-image {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  border: 1px solid var(--border-gold);
  display: block;
}

.fd-vc-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.fd-vc-image:hover img {
  transform: scale(1.04);
}

.fd-vc-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
  padding: 24px 18px 16px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

.fd-vc-zoom {
  width: 36px;
  height: 36px;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
}

/* ── 02 COLLECTION GALLERY ────────────────── */
.fd-slab-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
}

.fd-view-full {
  color: var(--gold);
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 4px;
  transition: color 0.3s;
}

.fd-view-full:hover {
  color: #fff;
  border-color: #fff;
}

.fd-slab-slide {
  padding: 0 8px;
}

.fd-slab-slide a {
  display: block;
  overflow: hidden;
  position: relative;
}

.fd-slab-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  border: 1px solid rgba(198, 164, 126, 0.15);
}

.fd-slab-slide a:hover img {
  transform: scale(1.05);
}

.fd-slab-slide a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.45);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='22' height='22' viewBox='0 0 16 16' fill='white'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001q.044.06.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1 1 0 0 0-.115-.099zm-5.242 1.156a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11M6.5 7.5h-2a.5.5 0 0 1 0-1h2v-2a.5.5 0 0 1 1 0v2h2a.5.5 0 0 1 0 1h-2v2a.5.5 0 0 1-1 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition:
    transform 0.3s ease,
    opacity 0.3s;
  opacity: 0;
}

.fd-slab-slide a:hover::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* Owl Nav */
.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.6) !important;
  border: 1px solid var(--border-gold) !important;
  color: var(--gold) !important;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px !important;
  transition: all 0.3s;
}

.owl-carousel .owl-nav button:hover {
  background: var(--gold) !important;
  color: #000 !important;
}

.owl-carousel .owl-nav button.owl-prev {
  left: -20px;
}
.owl-carousel .owl-nav button.owl-next {
  right: -20px;
}

.owl-carousel .owl-dots {
  margin-top: 18px;
  text-align: center;
}

.owl-carousel .owl-dots .owl-dot span {
  background: var(--border-gold) !important;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  transition: all 0.3s;
}

.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--gold) !important;
  width: 24px;
  border-radius: 4px;
}

/* ── 03 APPLICATION & USAGE ───────────────── */
.fd-app-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.fd-app-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.fd-app-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.8);
}

.fd-app-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.fd-app-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  padding: 24px 14px 10px;
  text-align: center;
}

.fd-app-label span {
  font-size: 11px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
}

.fd-usage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.fd-usage-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border-gold);
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  transition: all 0.3s;
}

.fd-usage-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.fd-usage-tag i {
  font-size: 16px;
  color: var(--gold);
}

/* ── 04-05 PRICING & CURATION ROW ─────────── */
.fd-pricing-card {
  border: 1px solid var(--border-gold);
  background: #0e0e0e;
  padding: 32px;
  height: 100%;
}

.fd-price-from {
  font-size: 10px;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.fd-price-big {
  font-family: "Playfair Display", serif;
  font-size: 38px;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 6px;
}

.fd-price-big small {
  font-size: 18px;
  vertical-align: middle;
  margin-right: 4px;
}

.fd-display-price {
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.fd-display-price-val {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin-bottom: 4px;
}

.fd-display-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 24px;
  font-style: italic;
}

.fd-divider {
  height: 1px;
  background: var(--border-gold);
  margin: 20px 0;
}

.fd-avail-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #bbb;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.fd-avail-badge i {
  color: var(--gold);
  font-size: 16px;
}

.fd-curation-card {
  border: 1px solid var(--border-gold);
  background: #0e0e0e;
  padding: 32px;
  height: 100%;
}

.fd-curation-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.fd-curation-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  font-size: 14px;
  color: #bbb;
  border-bottom: 1px solid rgba(198, 164, 126, 0.1);
}

.fd-curation-list li:last-child {
  border-bottom: none;
}

.fd-curation-list li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

.fd-curation-notice {
  font-size: 11px;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-gold);
}

.fd-cc-card {
  background-image: url(../img/furniture/img2.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid rgba(225, 174, 66, 0.45);
  padding: 36px 28px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  isolation: isolate;
}
.fd-cc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
  pointer-events: none;
}

.fd-cc-card > * {
  position: relative;
  z-index: 1;
}

.fd-cc-crown {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}

.fd-cc-heading {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.fd-cc-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
}

.fd-cc-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 11px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
}

.fd-cc-btn:hover {
  background: var(--gold);
  color: #000;
}

/* ── 06-07 NOTES & CONCIERGE ──────────────── */
.fd-designer-card {
  border: 1px solid var(--border-gold);
  background: linear-gradient(155deg, #111 0%, #0b0b0b 100%);
  padding: 44px 42px;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.fd-designer-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.fd-designer-card::after {
  content: "\201C";
  font-family: "Playfair Display", Georgia, serif;
  position: absolute;
  bottom: -30px;
  right: 24px;
  font-size: 200px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
}

.fd-designer-inner {
  position: relative;
  z-index: 1;
}

.fd-quote-ornament {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 96px;
  line-height: 0.65;
  color: var(--gold);
  opacity: 0.45;
  display: block;
  letter-spacing: -4px;
}

.fd-quote-block {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: #e6e6e6;
  line-height: 2;
  font-style: italic;
  font-weight: 400;
  border: none;
  padding: 0;
  margin: 0 0 22px;
}

.fd-quote-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
  opacity: 0.55;
}

.fd-quote-note {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.fd-quote-attribution {
  display: flex;
  align-items: center;
  gap: 14px;
}

.fd-quote-attr-line {
  flex-shrink: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

.fd-quote-attr {
  font-size: 10px;
  letter-spacing: 3.5px;
  color: var(--gold);
  text-transform: uppercase;
}

.fd-concierge-card {
  border: 1px solid var(--border-gold);
  background-image: url(../img/furniture/img12.jpg);
  background-position: bottom right;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-size: 55%;
}

.fd-concierge-body {
  padding: 32px;
  flex: 1;
  width: 54%;
  background: #000;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 1) 60%,
    rgba(0, 0, 0, 0) 100%
  );
}

.fd-concierge-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.fd-concierge-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.fd-concierge-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: #bbb;
}

.fd-concierge-list li:last-child {
  border-bottom: none;
}

.fd-concierge-list li i {
  color: var(--gold);
}

/* ── BOTTOM CTA ───────────────────────────── */
.fd-bottom-cta {
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background-image: url(../img/furniture/img10.jpg);
  background-size: cover;
  background-position: center;
  background-color: #000;
  background-attachment: fixed;
}

.fd-bottom-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    ellipse at center,
    rgb(0 0 0 / 78%) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.fd-cta-heading {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #fff;
  font-weight: 400;
  letter-spacing: 2px;
  line-height: 1.3;
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 991px) {
  .fd-hero {
    min-height: auto;
    flex-direction: column;
  }

  .fd-hero-left {
    padding: 50px 30px;
  }

  .fd-hero-right {
    height: 50vw;
    min-height: 300px;
  }

  .fd-hero-title {
    font-size: 44px;
  }

  .fd-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fd-specs-strip .col {
    min-width: 150px;
  }
}

@media (max-width: 767px) {
  .fd-hero-title {
    font-size: 34px;
  }

  .fd-app-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .fd-vc-tags {
    gap: 8px;
  }

  .fd-vc-tag {
    min-width: 70px;
    font-size: 9px;
  }
}
