/* ============================================================
   Карточка площадки — изолированные стили
   Префикс: vd- (всё под .vd-root). Контейнер 1327px, Inter self-host.
   Карусели — нативный scroll-snap (см. venue-detail.js).
   ============================================================ */

/* Inter — self-hosted (вариативный, 400-600). Тот же домен, не зависит от
   внешнего Google Fonts (на деве body-инжектнутый <link> не подхватывался). */
@font-face{font-family:"Inter";font-style:normal;font-weight:400 600;font-display:swap;src:url(/fonts/inter/inter-cyrillic.woff2) format("woff2");unicode-range:U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;}
@font-face{font-family:"Inter";font-style:normal;font-weight:400 600;font-display:swap;src:url(/fonts/inter/inter-latin.woff2) format("woff2");unicode-range:U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;}
/* latin-ext: нужен ради символа рубля U+20BD (₽) — в latin/cyrillic-сабсетах его нет */
@font-face{font-family:"Inter";font-style:normal;font-weight:400 600;font-display:swap;src:url(/fonts/inter/inter-latin-ext.woff2) format("woff2");unicode-range:U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;}

.vd-root {
  --vd-accent: #FE5D26;
  --vd-accent-hover: #D95427;
  --vd-black: #312D2B;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--vd-black);
  line-height: 1.5;
  background: #F6F6F6; /* серый фон страницы — как --pg-bg в Next-версии */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.vd-root *,
.vd-root *::before,
.vd-root *::after { box-sizing: border-box; }

/* Сброс UA-отступов через :where() (нулевая специфичность): классы перебивают,
   а <main> с глобальным margin-top под фикс-шапку не затрагивается. */
.vd-root :where(h1, h2, h3, h4, p) { margin: 0; }

.vd-root a { text-decoration: none; color: inherit; }
.vd-root img { max-width: 100%; display: block; }
.vd-root button { font-family: inherit; }

.vd-container {
  max-width: 1327px; /* как .container шапки → контент 1297px */
  margin: 0 auto;
  padding: 0 15px;
}

/* спрятать нативный скроллбар у каруселей */
.vd-gallery-thumbs-viewport,
.vd-cross-sell-viewport,
.vd-similar-viewport { scrollbar-width: none; -ms-overflow-style: none; }
.vd-gallery-thumbs-viewport::-webkit-scrollbar,
.vd-cross-sell-viewport::-webkit-scrollbar,
.vd-similar-viewport::-webkit-scrollbar { display: none; height: 0; }

/* Layout */
.vd-page { padding: 24px 0 48px; }
.vd-layout {
  display: grid;
  grid-template-columns: 800px 1fr;
  gap: 40px;
  align-items: start;
}

/* Gallery */
.vd-gallery { position: relative; }
.vd-gallery-main {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #FFF;
  border: none;
  padding: 0;
}
.vd-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}
.vd-gallery-thumbs-viewport { overflow-x: auto; margin-top: 12px; }
.vd-gallery-thumbs { display: flex; gap: 5px; }
.vd-gallery-thumb {
  flex: 0 0 auto;
  aspect-ratio: 3 / 2;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  padding: 0;
  background: none;
}
.vd-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.vd-gallery-thumb--active { border-color: #FE5D26; }
/* запрет нативного ghost-drag картинки — мешает перетаскиванию ленты ЛКМ */
.vd-gallery-main img, .vd-gallery-thumb img { -webkit-user-drag: none; user-select: none; }
/* лента превью тянется мышью (ЛКМ) */
.vd-gallery-thumbs-viewport { cursor: grab; }
.vd-gallery-thumbs-viewport.vd-dragging { cursor: grabbing; }

/* кружочки-листалка поверх главного фото */
.vd-gallery-stage { position: relative; }
.vd-gallery-dots {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 80%;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(49, 45, 43, 0.35);
  z-index: 2;
}
.vd-gallery-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.vd-gallery-dot:hover { background: rgba(255, 255, 255, 0.85); }
.vd-gallery-dot--active { background: #FFF; transform: scale(1.15); }

/* Title section */
.vd-title-section { margin-top: 32px; }
.vd-title-row {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
}
.vd-title {
  font-size: 32px;
  font-weight: 500;
  line-height: 40px;
  color: #312D2B;
  margin-bottom: 12px;
}
.vd-meta { display: flex; flex-direction: column; gap: 6px; }
.vd-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: rgba(49, 45, 43, 0.6);
}
.vd-meta-icon { flex-shrink: 0; color: rgba(49, 45, 43, 0.3); }
.vd-metro-icon { flex-shrink: 0; margin-top: 1px; }
.vd-actions { display: flex; gap: 8px; position: relative; }
/* подсказка «Ссылка скопирована» над кнопкой действий — в стиле проектного тоста */
.vd-copy-tip {
  position: absolute;
  bottom: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: #FFF;
  border: 1px solid rgba(49, 45, 43, 0.08);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(49, 45, 43, 0.16);
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--vd-black);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
}
.vd-copy-tip--show { opacity: 1; transform: translateY(0); }
.vd-copy-tip svg { flex-shrink: 0; }

/* Тост-уведомление (отправка формы) — в стиле проекта (.cnt-toast/.pd-toast) */
.vd-toast {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 32px);
  padding: 14px 18px;
  background: #FFF;
  border: 1px solid rgba(49, 45, 43, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(49, 45, 43, 0.18);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
  color: var(--vd-black);
  opacity: 0;
  transform: translate(-50%, -16px);
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
}
.vd-toast--show { opacity: 1; transform: translate(-50%, 0); }
.vd-toast svg { flex-shrink: 0; }
.vd-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(49, 45, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  color: rgba(49, 45, 43, 0.5);
  background: #FFF;
}
.vd-action-btn:hover { border-color: #FE5D26; color: #FE5D26; }

/* Description */
.vd-description {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(49, 45, 43, 0.05);
}
.vd-desc-text {
  font-size: 16px;
  line-height: 26px;
  color: rgba(49, 45, 43, 0.8);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.vd-desc-text p + p { margin-top: 16px; }
.vd-desc-text--open { -webkit-line-clamp: unset; }
.vd-desc-toggle {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(49, 45, 43, 0.5);
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* Features */
.vd-features {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(49, 45, 43, 0.05);
}
.vd-features-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #312D2B;
  margin-bottom: 24px;
}
.vd-features-grid { display: flex; flex-direction: column; gap: 12px; }
.vd-feature-item { display: flex; align-items: flex-start; gap: 12px; }
.vd-feature-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vd-feature-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #312D2B;
}
.vd-features-toggle { display: none; }

/* Mobile info block */
.vd-mobile-info { display: none; }
.vd-mobile-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 20px;
}
.vd-mobile-stat {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  color: rgba(49, 45, 43, 0.6);
}
.vd-mobile-stat-divider {
  width: 1px;
  background: rgba(49, 45, 43, 0.1);
  margin: 8px 16px;
}
.vd-mobile-stat-info { display: flex; flex-direction: column; }
.vd-mobile-stat-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(49, 45, 43, 0.4);
}
.vd-mobile-stat-value { font-size: 15px; font-weight: 600; color: #312D2B; }
.vd-mobile-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #FE5D26;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.vd-mobile-cta:hover { background: #D95427; }
.vd-mobile-cta--done,
.vd-mobile-cta--done:hover {
  background: rgba(49, 45, 43, 0.05);
  color: rgba(49, 45, 43, 0.4);
  cursor: default;
  pointer-events: none;
}
.vd-mobile-form { margin-top: 16px; }

/* Sidebar */
.vd-sidebar { position: sticky; top: 115px; }
.vd-sidebar-card {
  border-radius: 16px;
  border: 1px solid rgba(49, 45, 43, 0.05);
  box-shadow: 0 8px 24px rgba(49, 45, 43, 0.08);
  padding: 32px;
  background: #FFF;
}
.vd-sidebar-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(49, 45, 43, 0.05);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.1;
  color: #FE5D26; /* число — оранжевое, крупное */
}
/* {{PlacePrice}} даёт «<span class=value_add>от</span> <span>45 000</span> ₽», постфикс
   оборачиваем в .value_add в шаблоне → «от»/«/час» серые мелкие, число оранжевое. */
.vd-sidebar-price .value_add { font-size: 20px; font-weight: 500; color: rgba(49, 45, 43, 0.5); }
.vd-sidebar-price .place_request_price { font-size: 22px; color: var(--vd-black); }

.vd-sidebar-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.vd-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(49, 45, 43, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(49, 45, 43, 0.05);
}
.vd-stat-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(49, 45, 43, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.vd-stat-value { font-size: 14px; font-weight: 600; color: #312D2B; }

/* Form */
.vd-form-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: #312D2B;
  margin-bottom: 20px;
}
.vd-form-fields { display: flex; flex-direction: column; gap: 12px; }
.vd-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.vd-form-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(49, 45, 43, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
  display: block;
}
.vd-form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(49, 45, 43, 0.1);
  background: #FFF;
  outline: none;
  font-family: inherit;
  font-size: 14px;
  color: #312D2B;
}
.vd-form-input:focus {
  border-color: #FE5D26;
  box-shadow: 0 0 0 2px rgba(254, 93, 38, 0.16);
}
.vd-form-textarea { min-height: 80px; resize: none; overflow: hidden; }
.vd-form-submit {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: #FE5D26;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.vd-form-submit:hover {
  background: #D95427;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(254, 93, 38, 0.25);
}
.vd-form-submit--done,
.vd-form-submit--done:hover {
  background: rgba(49, 45, 43, 0.05) !important;
  color: rgba(49, 45, 43, 0.4) !important;
  cursor: default;
  pointer-events: none;
  transform: none !important;
  box-shadow: none !important;
}
.vd-form-note {
  text-align: center;
  font-size: 12px;
  color: rgba(49, 45, 43, 0.4);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* Cross-sell */
.vd-cross-sell {
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(49, 45, 43, 0.05);
}
.vd-cross-sell-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  color: #312D2B;
  margin-bottom: 8px;
}
.vd-cross-sell-desc {
  font-size: 14px;
  line-height: 20px;
  color: rgba(49, 45, 43, 0.5);
  margin-bottom: 24px;
}
.vd-cross-sell-viewport { overflow: hidden; }
.vd-cross-sell-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.vd-cross-sell-dots { display: none; }
.vd-cross-sell-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 12px;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 1px 4px rgba(49, 45, 43, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}
.vd-cross-sell-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(49, 45, 43, 0.12);
}
.vd-cross-sell-img-wrap {
  width: 100%;
  aspect-ratio: 420 / 260;
  border-radius: 12px;
  overflow: hidden;
}
.vd-cross-sell-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.vd-cross-sell-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: #312D2B;
  text-align: center;
}

/* DatePicker */
.vd-date-picker { position: relative; }
.vd-date-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 20;
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(49, 45, 43, 0.15);
  border: 1px solid rgba(49, 45, 43, 0.08);
  padding: 16px;
  min-width: 280px;
}
.vd-date-dropdown[hidden] { display: none; }
.vd-date-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.vd-date-month-year { font-size: 15px; font-weight: 600; color: #312D2B; }
.vd-date-arrow {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: none;
  background: rgba(49, 45, 43, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #312D2B;
  transition: background 0.2s;
}
.vd-date-arrow:hover { background: rgba(49, 45, 43, 0.1); }
.vd-date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
}
.vd-date-weekday {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  color: rgba(49, 45, 43, 0.4);
  text-transform: uppercase;
  padding: 4px 0;
}
.vd-date-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.vd-date-day {
  aspect-ratio: 1;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #312D2B;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.vd-date-day:hover:not(:disabled) { background: rgba(49, 45, 43, 0.06); }
.vd-date-day--today { border: 1px solid rgba(49, 45, 43, 0.15); }
.vd-date-day--selected,
.vd-date-day--selected:hover { background: #FE5D26; color: #FFF; }
.vd-date-day--past { color: rgba(49, 45, 43, 0.2); cursor: default; }
.vd-date-day-empty { aspect-ratio: 1; }

/* Map */
.vd-map-section { margin-top: 48px; }
.vd-map-title { font-size: 24px; font-weight: 500; color: #312D2B; margin-bottom: 8px; }
.vd-map-address { font-size: 14px; color: rgba(49, 45, 43, 0.5); margin-bottom: 24px; }
.vd-map {
  width: 100%;
  height: 380px;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(49, 45, 43, 0.05);
  border: 1px solid rgba(49, 45, 43, 0.05);
}

/* Similar */
.vd-similar { margin-top: 48px; }
.vd-similar-title { font-size: 24px; font-weight: 500; color: #312D2B; margin-bottom: 24px; }
.vd-similar-viewport {
  overflow-x: auto;
  padding: 4px 0 16px;
  margin: -4px 0 -16px;
  cursor: grab;
}
.vd-similar-viewport.vd-dragging { cursor: grabbing; user-select: none; }
.vd-similar-container { display: flex; gap: 16px; }
.vd-similar-card {
  flex: 0 0 calc(25% - 12px);
  min-width: 0;
  border-radius: 16px;
  background: #FFF;
  box-shadow: 0 1px 4px rgba(49, 45, 43, 0.08);
  overflow: hidden;
  color: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
  scroll-snap-align: start;
}
.vd-similar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(49, 45, 43, 0.1);
}
.vd-similar-card-img { position: relative; padding: 8px; }
.vd-similar-card-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 12px;
}
.vd-similar-card-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: #312D2B;
}
.vd-similar-card-bubbles {
  position: absolute;
  bottom: 16px;
  left: 16px;
  display: flex;
  gap: 6px;
  pointer-events: none;
}
.vd-similar-card-bubble {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: #FFF;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
}
.vd-similar-card-bubble svg { color: rgba(255, 255, 255, 0.7); }
.vd-similar-card-content { padding: 8px 12px 12px; }
.vd-similar-card-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: #312D2B;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vd-similar-card-address {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 13px;
  line-height: 18px;
  color: rgba(49, 45, 43, 0.5);
  margin-bottom: 2px;
}
.vd-similar-card-address svg { flex-shrink: 0; margin-top: 2px; color: rgba(49, 45, 43, 0.3); }
.vd-similar-card-metro {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(49, 45, 43, 0.6);
  margin-bottom: 10px;
}
.vd-similar-card-price { font-size: 16px; font-weight: 500; line-height: 22px; color: #FE5D26; }

.vd-similar-pagination {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  align-items: center;
}
.vd-similar-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(49, 45, 43, 0.05);
  border: none;
  cursor: pointer;
  color: #312D2B;
  transition: all 0.2s;
}
.vd-similar-arrow:hover { background: rgba(49, 45, 43, 0.1); }
.vd-similar-arrow:disabled { opacity: 0.3; cursor: default; pointer-events: none; }
.vd-similar-dots {
  display: flex;
  width: fit-content;
  gap: 8px;
  padding: 16px 24px;
  border-radius: 999px;
  background: rgba(49, 45, 43, 0.05);
  align-items: center;
  height: 40px;
}
.vd-similar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(49, 45, 43, 0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s;
}
.vd-similar-dot:hover { background: rgba(49, 45, 43, 0.4); }
.vd-similar-dot--active { background: #000; }

/* Disclaimer */
.vd-disclaimer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid rgba(49, 45, 43, 0.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.vd-disclaimer-icon {
  flex: 0 0 auto;
  margin-top: 1px;
  color: rgba(49, 45, 43, 0.35);
}
.vd-disclaimer-text {
  font-size: 13px;
  line-height: 20px;
  color: rgba(49, 45, 43, 0.45);
}

/* Responsive */
@media (max-width: 991px) {
  .vd-layout { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .vd-sidebar { position: static; }
  .vd-gallery-main { aspect-ratio: auto; height: 360px; }
}

@media (max-width: 768px) {
  .vd-title { font-size: 24px; line-height: 32px; }
  .vd-gallery-main { aspect-ratio: 3 / 2; height: auto; }
  .vd-gallery-thumbs-viewport { margin-left: -15px; margin-right: -15px; padding-left: 15px; }
  .vd-gallery-thumb { height: 72px; }
  .vd-sidebar-card { padding: 24px; }
  .vd-sidebar-price { font-size: 28px; }
  .vd-form-row { grid-template-columns: 1fr; }
  .vd-title-row { flex-direction: column; }
  .vd-actions { display: none; }
  .vd-sidebar { display: none; }
  .vd-mobile-info {
    display: block;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(49, 45, 43, 0.05);
  }
  .vd-feature-item--hidden { display: none; }
  .vd-features-toggle {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(49, 45, 43, 0.5);
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
  }
  .vd-date-dropdown {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    min-width: unset;
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 32px;
    box-shadow: 0 -8px 32px rgba(49, 45, 43, 0.2);
  }
  .vd-cross-sell { margin-top: 32px; padding-top: 24px; }
  .vd-cross-sell-viewport { overflow-x: auto; scroll-snap-type: x mandatory; }
  .vd-cross-sell-grid { display: flex; gap: 0; }
  .vd-cross-sell-item { flex: 0 0 100%; min-width: 0; margin-right: 12px; scroll-snap-align: start; }
  .vd-cross-sell-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
  }
  .vd-cross-sell-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(49, 45, 43, 0.3);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.25s ease;
  }
  .vd-cross-sell-dot--active { background: rgba(49, 45, 43, 0.6); }
  .vd-similar-viewport { scroll-snap-type: x mandatory; }
  .vd-similar-container { gap: 0; }
  .vd-similar-card { flex: 0 0 100%; margin-right: 12px; }
  .vd-similar-arrow { display: none; }
  .vd-similar-dots { padding: 0; background: transparent; gap: 6px; height: auto; }
  .vd-similar-dot { background: rgba(49, 45, 43, 0.3); }
  .vd-similar-dot--active { background: rgba(49, 45, 43, 0.6); }
  .vd-disclaimer { margin-top: 32px; padding-top: 24px; }
}

@media (max-width: 480px) {
  .vd-gallery-main { height: 220px; }
  .vd-gallery-thumb { height: 56px; }
}
