

/* Start:/local/templates/vent_template/components/bitrix/catalog.element/element_config/style.css?17800564788043*/
.vnt-page {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  padding: 24px 0 60px;
  --brand: #2962ff;
  --brand-dark: #1e4ad6;
  --line: #e3e6ec;
  --line-strong: #c9cfd9;
  --text: #1c2230;
  --muted: #6c757d;
  --dark-bg: #0e1218;
  --code-green: #b6e8a0;
  --bg-soft: #f6f7f9;
  color: var(--text);
}

/* ===== Top section: gallery + info ===== */
.vnt-product-top {
  display: grid;
  grid-template-columns: minmax(0, 480px) 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 900px) {
  .vnt-product-top { grid-template-columns: 1fr; gap: 24px; }
}

.vnt-gallery-main {
  background: var(--bg-soft);
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vnt-gallery-main img { width: 100%; height: 100%; object-fit: contain; }

.vnt-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.vnt-thumb {
  aspect-ratio: 1 / 1;
  background: var(--bg-soft);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.vnt-thumb img { width: 100%; height: 100%; object-fit: contain; }

.vnt-product-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.vnt-product-subtitle {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
}

/* ===== Accordions ===== */
.vnt-acc {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.vnt-acc summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  outline: none;
}
.vnt-acc summary::-webkit-details-marker { display: none; }
.vnt-acc summary::after {
  content: '';
  width: 14px; height: 14px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3e%3cpath d='M1 1.5L7 6.5L13 1.5' stroke='%231c2230' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.2s;
}
.vnt-acc[open] summary::after { transform: rotate(180deg); }
.vnt-acc-body {
  padding-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
}
.vnt-acc-body p { margin: 0 0 12px; }
.vnt-list { margin: 0; padding-left: 18px; }
.vnt-list li { margin: 6px 0; line-height: 1.5; }

/* ===== Section title ===== */
.vnt-section-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

/* ===== Configurator ===== */
.vnt-configurator { margin-bottom: 48px; }
.vnt-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .vnt-row { grid-template-columns: 1fr; gap: 24px; }
}

.vnt-prop { margin-bottom: 28px; }
.vnt-prop-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.vnt-tiles { display: flex; flex-wrap: wrap; gap: 10px; }
.vnt-tile {
  padding: 12px 20px;
  border: 1px solid var(--line);
  background: white;
  cursor: pointer;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: all 0.15s ease;
  min-width: 80px;
  font-family: inherit;
}
.vnt-tile:hover:not(:disabled) {
  border-color: var(--brand);
  color: var(--brand);
}
.vnt-tile.active {
  background: var(--brand);
  color: white;
  border-color: var(--brand);
  box-shadow: 0 1px 2px rgba(41, 98, 255, 0.18);
}
.vnt-tile.disabled, .vnt-tile:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  background: var(--bg-soft);
  pointer-events: none;
}

.vnt-select {
  width: 100%;
  padding: 13px 44px 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background-color: white;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3e%3cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231c2230' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-weight: 500;
}
.vnt-select:focus { outline: none; border-color: var(--brand); }
.vnt-select:hover { border-color: var(--line-strong); }

.vnt-input {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background-color: white;
  font-weight: 500;
  box-sizing: border-box;
}
.vnt-input:focus { outline: none; border-color: var(--brand); }
.vnt-input:hover { border-color: var(--line-strong); }
.vnt-input-hint {
  margin-top: 6px;
  font-size: 12px;
  color: #6a7280;
}

.vnt-code-box {
  background: var(--dark-bg);
  color: var(--code-green);
  padding: 28px 28px 24px;
  border-radius: 14px;
  position: sticky;
  top: 24px;
}
.vnt-code-label {
  font-size: 14px;
  color: white;
  margin-bottom: 18px;
  font-weight: 600;
}
.vnt-code {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, Consolas, monospace;
  font-size: 22px;
  font-weight: 600;
  word-break: break-all;
  margin-bottom: 28px;
  line-height: 1.35;
  min-height: 30px;
  letter-spacing: -0.01em;
}
.vnt-actions { display: flex; flex-direction: column; gap: 12px; }
.vnt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: white;
  border: 0;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: opacity 0.15s;
}
.vnt-btn::before {
  content: '';
  display: inline-block;
  width: 16px; height: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.vnt-btn-copy::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3crect x='9' y='9' width='13' height='13' rx='2'/%3e%3cpath d='M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1'/%3e%3c/svg%3e");
}
.vnt-btn-add::before {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3e%3cpath d='M9 11l3 3L22 4'/%3e%3cpath d='M21 12v7a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h11'/%3e%3c/svg%3e");
}
.vnt-btn:hover:not(:disabled) { opacity: 0.7; }
.vnt-btn:disabled { opacity: 0.35; cursor: not-allowed; }

/* ===== Downloads ===== */
.vnt-downloads { margin-top: 16px; }
.vnt-download-row {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vnt-download-icon {
  width: 48px; height: 56px;
  background: var(--bg-soft);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.vnt-download-name { font-size: 16px; color: var(--text); margin-bottom: 4px; }
.vnt-download-size { font-size: 13px; color: var(--muted); }
.vnt-download-btn {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.15s;
  white-space: nowrap;
}
.vnt-download-btn:hover { border-color: var(--brand); color: var(--brand); }

.vnt-warn {
  padding: 20px;
  background: #fff9e6;
  border-left: 4px solid #f5a623;
  margin: 20px 0;
  border-radius: 4px;
}

/* End */
/* /local/templates/vent_template/components/bitrix/catalog.element/element_config/style.css?17800564788043 */
