﻿/* -- Site Header (always fixed) -- */
.vd-site-header {
  position: relative;
  z-index: 100;
  background:
    linear-gradient(120deg, rgba(18, 13, 10, 0.82), rgba(18, 13, 10, 0.42)),
    url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff8ef;
}

.vd-site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 18%, rgba(232, 120, 60, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(9, 8, 7, 0.15), rgba(9, 8, 7, 0.34));
  pointer-events: none;
}

.vd-site-header .topbar,
.vd-site-header .navbar-wrap {
  position: relative;
  z-index: 40;
}

/* -- Gallery -- */
.vd-gallery {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 12px;
  width: min(1240px, calc(100% - 80px));
  margin: 28px auto 36px;
  height: 500px;
  padding: 12px;
  background: rgba(12, 9, 6, 0.26);
  border: 1px solid rgba(255, 248, 239, 0.14);
  border-radius: 24px;
  box-shadow: 0 20px 52px rgba(6, 5, 3, 0.28);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.vd-gallery__main {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  cursor: pointer;
}

.vd-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

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

.vd-gallery__meta {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-width: min(70%, 420px);
  padding: 12px 14px;
  border: 1px solid rgba(255, 248, 239, 0.28);
  border-radius: 14px;
  background: rgba(18, 13, 10, 0.56);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.vd-gallery__meta-kicker {
  margin: 0;
  color: rgba(255, 248, 239, 0.76);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.vd-gallery__meta-title {
  margin: 0;
  color: #fff8ef;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.25;
}

.vd-gallery__all-btn {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: none;
  background: rgba(14, 11, 8, 0.82);
  backdrop-filter: blur(12px);
  color: #fff8ef;
  font: 600 0.85rem "Poppins", "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease;
}

.vd-gallery__all-btn:hover {
  background: rgba(232, 120, 60, 0.85);
}

.vd-gallery__counter {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(14, 11, 8, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff8ef;
  font: 600 0.82rem "Poppins", "Inter", sans-serif;
  pointer-events: none;
}

.vd-thumbs {
  display: grid;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  border-radius: 18px;
  overflow: hidden;
}

.vd-thumb {
  overflow: hidden;
  cursor: pointer;
  position: relative;
  border-radius: 14px;
  border: 2px solid rgba(255, 248, 239, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.vd-thumb:hover img {
  transform: scale(1.06);
}

.vd-thumb:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(232, 120, 60, 0.15);
}

.vd-thumb--active {
  border-color: rgba(232, 120, 60, 0.75);
  box-shadow: inset 0 0 0 1px rgba(232, 120, 60, 0.45);
}


.no-scroll {
  overflow: hidden;
}

.vd-gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 420;
  display: grid;
  place-items: center;
  padding: 26px;
  background: rgba(8, 6, 4, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.vd-gallery-modal--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.vd-gallery-modal img {
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 70px);
  width: auto;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.vd-gallery-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 239, 0.3);
  background: rgba(25, 18, 13, 0.75);
  color: #fff8ef;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vd-gallery-modal__close:hover {
  background: rgba(232, 120, 60, 0.32);
  border-color: rgba(232, 120, 60, 0.55);
}

.vd-gallery-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 248, 239, 0.26);
  background: rgba(25, 18, 13, 0.74);
  color: #fff8ef;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.vd-gallery-modal__nav--prev { left: 18px; }
.vd-gallery-modal__nav--next { right: 18px; }

.vd-gallery-modal__nav:hover {
  background: rgba(232, 120, 60, 0.32);
  border-color: rgba(232, 120, 60, 0.55);
}

/* -- Content Layout -- */
.vd-content {
  padding: 44px 0 80px;
}

.vd-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 44px;
  align-items: start;
}

/* -- Property Header -- */
.vd-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(30, 18, 8, 0.40);
}

.vd-breadcrumb a {
  color: rgba(30, 18, 8, 0.40);
  transition: color 0.2s ease;
}

.vd-breadcrumb a:hover { color: var(--accent); }
.vd-breadcrumb span { opacity: 0.4; }

.vd-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.vd-title {
  margin: 0 0 14px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text);
}

.vd-location {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.vd-location svg { color: var(--whatsapp); flex-shrink: 0; }

.vd-price-block {
  margin-bottom: 28px;
  padding: 22px 24px;
  background: rgba(232, 120, 60, 0.08);
  border: 1px solid rgba(232, 120, 60, 0.2);
  border-radius: 18px;
}

.vd-price {
  margin: 0 0 4px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.vd-price-label {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
}


/* -- Property Features Table -- */
.vd-prop-features {
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: 16px 0 36px;
}

.vd-prop-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.vd-prop-row:last-child { border-bottom: none; }

.vd-prop-cell {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 20px;
  gap: 12px;
}

.vd-prop-cell:first-child { border-right: 1px solid var(--line); }

.vd-prop-cell:nth-child(odd) { background: rgba(30, 18, 8, 0.014); }

.vd-prop-key {
  font-size: 0.84rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.vd-prop-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  text-align: right;
}

.vd-prop-val--accent { color: var(--accent); }

/* -- Key Stats Bar -- */
.vd-stats {
  display: flex;
  gap: 0;
  margin-bottom: 36px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

.vd-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 16px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.vd-stat strong {
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
  line-height: 1;
}

.vd-stat small {
  font-size: 0.74rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vd-stat svg {
  color: var(--accent);
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

/* -- Description -- */
.vd-section-title {
  margin: 0 0 16px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
}

.vd-desc p {
  margin: 0 0 16px;
  color: var(--text-soft);
  line-height: 1.8;
  font-size: 0.97rem;
}

/* -- Amenities -- */
.vd-amenities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 16px 0 36px;
}

.vd-amenity {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(232, 120, 60, 0.04);
  border: 1px solid rgba(232, 120, 60, 0.12);
  border-radius: 12px;
  font-size: 0.87rem;
  color: var(--text-soft);
}

.vd-amenity svg { color: var(--whatsapp); flex-shrink: 0; }

/* -- Location -- */
.vd-map-placeholder {
  height: 320px;
  background: var(--surface);
  border: 1px solid rgba(232, 120, 60, 0.12);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-soft);
  margin: 16px 0 16px;
}

.vd-map-placeholder--embed {
  position: relative;
  height: 360px;
  overflow: hidden;
  justify-content: flex-end;
  padding: 22px;
  margin-bottom: 36px;
}

.vd-map-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vd-map-placeholder--embed > svg,
.vd-map-placeholder--embed > span,
.vd-map-placeholder--embed > .btn {
  position: relative;
  z-index: 1;
}

.vd-map-placeholder svg { color: var(--whatsapp); opacity: 0.6; }

.vd-map-placeholder .btn--ghost {
  border-color: rgba(30, 18, 8, 0.16);
  color: var(--text);
  background: rgba(255, 255, 255, 0.86);
}

.vd-map-placeholder .btn--ghost:hover {
  border-color: rgba(232, 120, 60, 0.42);
  color: var(--accent-deep);
  background: rgba(232, 120, 60, 0.10);
}

.vd-nearby {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin: 0 0 36px;
}

.vd-location-details {
  margin: 4px 0 36px;
}

.vd-location-details h3 {
  margin: 0 0 18px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
}

.vd-location-details ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text);
}

.vd-location-details li {
  margin: 0 0 14px;
  line-height: 1.65;
  color: var(--text);
}

.vd-location-details li:last-child {
  margin-bottom: 0;
}

/* -- Investment Section -- */
.vd-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 16px 0 0;
}

.vd-metric {
  text-align: center;
  padding: 20px 14px;
  background: rgba(232, 120, 60, 0.06);
  border: 1px solid rgba(232, 120, 60, 0.14);
  border-radius: 16px;
}

.vd-metric strong {
  display: block;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.7rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.vd-metric span {
  font-size: 0.78rem;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* -- Sidebar -- */
.vd-sidebar {
  position: sticky;
  top: 96px;
  align-self: start;
  z-index: 20;
  height: fit-content;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 28px rgba(120, 70, 30, 0.09);
}

.vd-ownership-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 3px;
  border-radius: 12px;
  background: rgba(30, 18, 8, 0.05);
  border: 1px solid var(--line);
  margin-bottom: 14px;
}

.ownership-tab {
  padding: 9px 12px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font: 600 0.82rem "Poppins", "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}

.ownership-tab:hover { color: var(--text); }

.ownership-tab--active {
  background: var(--accent);
  color: #fff8ef;
}

.vd-sidebar__label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vd-sidebar__top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.currency-tabs {
  display: flex;
  flex: 1 1 100%;
  gap: 3px;
  padding: 2px;
  border-radius: 9px;
  background: rgba(30, 18, 8, 0.04);
  border: 1px solid var(--line);
  margin: 0;
  width: 100%;
  max-width: 100%;
}

.currency-tab {
  flex: 1 1 0;
  min-width: 0;
  padding: 7px 8px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--text-soft);
  font: 600 0.72rem "Poppins", "Inter", sans-serif;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.currency-tab:hover {
  color: var(--text);
}

.currency-tab--active {
  background: var(--accent);
  color: #fff8ef;
}

.vd-sidebar__price {
  margin: 0;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: clamp(1.72rem, 3.2vw, 2.15rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.vd-sidebar__price-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  color: var(--text-soft);
}

.vd-side-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  border-radius: 10px;
  border: 1px solid var(--line);
  margin-top: 6px;
  font-weight: 500;
  font-size: 0.9rem;
  font-family: "Poppins", "Inter", sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.vd-side-btn:hover {
  transform: translateY(-1px);
}

.vd-side-btn--primary {
  margin-top: 6px;
  background: var(--accent);
  border-color: var(--accent);
  color: #fff8ef;
  font-size: 0.98rem;
  font-family: "Poppins", "Inter", sans-serif;
  letter-spacing: 0.01em;
}

.vd-side-btn--primary:hover {
  background: var(--accent-deep);
  border-color: var(--accent-deep);
}

.vd-side-btn--line {
  background: transparent;
  color: var(--text);
}

.vd-side-btn--line:hover {
  border-color: rgba(232, 120, 60, 0.42);
  background: rgba(232, 120, 60, 0.06);
  color: var(--accent);
}

.vd-side-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 6px;
}

.vd-side-btn--ghost {
  min-height: 48px;
  margin-top: 0;
  background: transparent;
  color: var(--text-soft);
  justify-content: center;
}

.vd-side-btn--ghost:hover {
  border-color: rgba(232, 120, 60, 0.36);
  color: var(--accent);
  background: rgba(232, 120, 60, 0.06);
}

.vd-side-btn--saved {
  border-color: rgba(232, 120, 60, 0.55);
  background: rgba(232, 120, 60, 0.08);
  color: var(--accent-deep);
}

/* -- Related Section -- */
.vd-related {
  padding: 60px 0;
  background: #f8f2e8;
}

.vd-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

/* -- Compact Footer -- */
.page-footer {
  padding: 28px 0;
  border-top: 1px solid rgba(30, 18, 8, 0.08);
  background: rgba(253, 248, 242, 0.98);
}

.page-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(30, 18, 8, 0.45);
}

.page-footer__inner a {
  color: var(--accent);
  transition: color 0.2s ease;
}

.page-footer__inner a:hover { color: var(--accent-deep); }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .vd-layout {
    grid-template-columns: 1fr 340px;
    gap: 36px;
  }
  .vd-metrics { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .vd-site-header {
    padding-bottom: 16px;
  }

  .vd-gallery {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: auto;
    width: min(calc(100% - 24px), 1180px);
    margin: 10px auto 0;
  }
  .vd-gallery__main {
    height: 320px;
  }
  .vd-thumbs {
    display: flex;
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 248, 239, 0.2) transparent;
    padding-bottom: 2px;
    border-radius: 0;
    overflow-y: visible;
  }
  .vd-thumbs::-webkit-scrollbar { height: 4px; }
  .vd-thumbs::-webkit-scrollbar-track { background: transparent; }
  .vd-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 248, 239, 0.2);
    border-radius: 2px;
  }
  .vd-thumb {
    flex: 0 0 auto;
    width: 116px;
    height: 80px;
    border-radius: 10px;
  }
  .vd-gallery__meta {
    max-width: calc(100% - 120px);
  }
  .vd-layout {
    grid-template-columns: 1fr;
  }
  .vd-sidebar {
    position: static;
    top: auto;
    margin-bottom: 8px;
  }
  .vd-sidebar__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .vd-related__grid {
    grid-template-columns: 1fr 1fr;
  }
  .vd-amenities {
    grid-template-columns: repeat(2, 1fr);
  }
  .vd-prop-cell { padding: 12px 14px; }
}

@media (max-width: 600px) {
  .vd-prop-row {
    grid-template-columns: 1fr;
  }
  .vd-prop-cell:first-child { border-right: none; border-bottom: 1px solid var(--line); }

  .vd-site-header {
    padding-bottom: 12px;
  }

  .vd-gallery {
    width: min(calc(100% - 16px), 1180px);
    margin-top: 8px;
    padding: 10px;
    gap: 8px;
  }
  .vd-gallery__main {
    height: 240px;
  }
  .vd-gallery__meta {
    display: none;
  }
  .vd-gallery__all-btn {
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    font-size: 0.76rem;
  }
  .vd-thumb {
    width: 88px;
    height: 62px;
  }
  .vd-stats {
    flex-wrap: wrap;
  }
  .vd-stat {
    min-width: 33%;
  }
  .vd-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .vd-amenities {
    grid-template-columns: 1fr 1fr;
  }
  .vd-related__grid {
    grid-template-columns: 1fr;
  }
  .vd-sidebar {
    padding: 22px;
    top: 82px;
  }
  .currency-tabs {
    width: 100%;
  }
  .currency-tab {
    flex: 1;
    min-width: 0;
  }
  .vd-side-split {
    grid-template-columns: 1fr;
  }
  .page-footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* Keep sticky sidebar behavior available on this page */
.page-shell {
  overflow: visible;
}

/* -- Download Brochure Modal -- */
.brochure-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(8, 5, 3, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.brochure-overlay--open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brochure-card {
  position: relative;
  width: min(460px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px 32px;
  box-shadow: 0 24px 64px rgba(120, 70, 30, 0.18);
}

.brochure-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.brochure-close:hover {
  background: rgba(232, 120, 60, 0.08);
  border-color: rgba(232, 120, 60, 0.4);
  color: var(--accent);
}

.brochure-title {
  margin: 0 0 8px;
  font-family: "Poppins", "Inter", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text);
}

.brochure-sub {
  margin: 0 0 20px;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.brochure-prop {
  margin-bottom: 24px;
  padding: 13px 16px;
  background: rgba(232, 120, 60, 0.07);
  border: 1px solid rgba(232, 120, 60, 0.18);
  border-radius: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.brochure-prop strong {
  color: var(--text);
  font-weight: 600;
}

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

.brochure-input {
  width: 100%;
  padding: 13px 16px;
  margin-bottom: 18px;
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font: 0.9rem "Poppins", "Inter", sans-serif;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brochure-input::placeholder { color: rgba(30, 18, 8, 0.3); }
.brochure-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 120, 60, 0.12);
}

.brochure-status {
  min-height: 20px;
  margin: -6px 0 10px;
  color: var(--text-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.brochure-status--success { color: #21804b; }
.brochure-status--error { color: #c43b2f; }

.brochure-btn {
  width: 100%;
  padding: 15px;
  margin-top: 4px;
  background: var(--accent);
  border: none;
  border-radius: 10px;
  color: #fff8ef;
  font: 600 0.98rem "Poppins", "Inter", sans-serif;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.brochure-btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}
