/* @section: ILAN DETAY (ilan.php) — modern emlak temizliği */

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

:root {
  --ilan-bg:        #f5f6f8;
  --ilan-card:      #fff;
  --ilan-ink:       #111827;
  --ilan-muted:     #6b7280;
  --ilan-line:      #e5e7eb;
  --ilan-red:       var(--red, #d60000);
  --ilan-dark:      #111a24;
  --ilan-shadow:    0 8px 24px rgba(15, 23, 42, .06);
  --ilan-radius:    16px;
}

.ilan-page  { background: var(--ilan-bg); }
.ilan-main  { padding: 0; }

.ilan-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* ============ ÜST BREADCRUMB ============ */
.ilan-titlebar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 4px 0 18px;
  flex-wrap: wrap;
}
.ilan-back {
  font-weight: 700;
  color: var(--ilan-ink);
  font-size: 14px;
  text-decoration: none;
  transition: color .15s;
}
.ilan-back:hover { color: var(--ilan-red); }
.ilan-breadcrumb {
  color: var(--ilan-muted);
  font-size: 13px;
  font-weight: 500;
  flex: 1;
  min-width: 0;
}
.ilan-owner-actions { display: inline-flex; gap: 8px; margin-left: auto; }
.ilan-owner-actions form { margin: 0; }
.ilan-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  padding: 8px 16px;
  background: var(--ilan-dark);
  color: #fff;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .15s;
}
.ilan-edit-btn:hover { background: var(--ilan-red); transform: translateY(-1px); }
.ilan-edit-btn-del { background: #fbeaea; color: var(--ilan-red); }
.ilan-edit-btn-del:hover { background: var(--ilan-red); color: #fff; }

/* ============ ANA GRID ============ */
.ilan-grid {
  display: grid;
  grid-template-columns: 62fr 38fr;
  gap: 24px;
  align-items: start;
}

/* ============ SOL KOLON ============ */
.ilan-left-col { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

/* ============ GALERİ ============ */
.ilan-gallery {
  background: var(--ilan-card);
  border: 1px solid var(--ilan-line);
  border-radius: var(--ilan-radius);
  box-shadow: var(--ilan-shadow);
  overflow: hidden;
}
.ilan-cover {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #0a0f15;
  overflow: hidden;
}
.ilan-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ilan-tag {
  position: absolute;
  top: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.ilan-tag-tip   { left: 14px; background: var(--ilan-red); }
.ilan-tag-vurgu { right: 14px; background: var(--ilan-dark); }

.ilan-cover-nav {
  position: absolute;
  top: 50%;
  width: 52px;
  height: 84px;
  border: 0;
  border-radius: 12px;
  background: rgba(17, 26, 36, .42);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  line-height: 1;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity .15s, background .15s, transform .15s;
}
.ilan-cover:hover .ilan-cover-nav,
.ilan-cover-nav:focus-visible {
  opacity: 1;
}
.ilan-cover-nav:hover {
  background: rgba(201, 0, 0, .9);
  transform: translateY(calc(-50% - 1px));
}
.ilan-cover-nav--prev { left: 14px; }
.ilan-cover-nav--next { right: 14px; }

.ilan-zoom-btn {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: rgba(17, 26, 36, .86);
  color: #fff;
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  transition: background .15s, transform .15s;
}
.ilan-zoom-btn:hover {
  background: var(--ilan-red);
  transform: translateY(-1px);
}
.ilan-zoom-btn svg { display: block; }

.ilan-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(7, 12, 18, .94);
  padding: 72px 86px;
}
.ilan-lightbox.is-open { display: flex; }
.ilan-lightbox__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.ilan-lightbox__close,
.ilan-lightbox__arrow {
  position: absolute;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, transform .15s;
}
.ilan-lightbox__close:hover,
.ilan-lightbox__arrow:hover {
  background: var(--ilan-red);
  transform: translateY(-1px);
}
.ilan-lightbox__close {
  top: 22px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}
.ilan-lightbox__arrow {
  top: 50%;
  width: 58px;
  height: 78px;
  border-radius: 12px;
  font-size: 0;
  line-height: 0;
  transform: translateY(-50%);
}
.ilan-lightbox__arrow::before {
  content: "";
  width: 18px;
  height: 18px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  display: block;
}
.ilan-lightbox__arrow:hover { transform: translateY(calc(-50% - 1px)); }
.ilan-lightbox__arrow--prev { left: 24px; }
.ilan-lightbox__arrow--next { right: 24px; }
.ilan-lightbox__arrow--prev::before { transform: rotate(-135deg); }
.ilan-lightbox__arrow--next::before { transform: rotate(45deg); }

.ilan-thumbs-shell {
  position: relative;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  gap: 8px;
  align-items: center;
  padding: 12px;
  background: var(--ilan-card);
}
.ilan-thumbs {
  display: flex;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.ilan-thumbs::-webkit-scrollbar { display: none; }
.ilan-thumbs-nav {
  width: 36px;
  height: 54px;
  border: 1px solid var(--ilan-line);
  border-radius: 8px;
  background: #fff;
  color: var(--ilan-ink);
  cursor: pointer;
  font-size: 28px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .06);
  transition: border-color .15s, color .15s, transform .15s;
}
.ilan-thumbs-nav:hover {
  border-color: var(--ilan-red);
  color: var(--ilan-red);
  transform: translateY(-1px);
}
.ilan-thumb-btn {
  flex: 0 0 92px;
  border: 2px solid transparent;
  background: #f0f2f5;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  scroll-snap-align: start;
  transition: border-color .15s, transform .15s;
}
.ilan-thumb-btn:hover { transform: translateY(-1px); border-color: var(--ilan-line); }
.ilan-thumb-btn.is-active { border-color: var(--ilan-red); }
.ilan-thumb-btn img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ SAĞ KOLON ============ */
.ilan-side { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

/* ---- Danışman kartı (ilan detay — ekibimiz kartından farklı) ---- */
.ilan-side .agent-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: transparent;
  border-radius: var(--ilan-radius);
  box-shadow: 0 10px 26px rgba(15, 23, 42, .14);
  overflow: visible;
  color: #fff;
}
.agent-card__main {
  flex: 1;
  min-width: 0;
  background: var(--ilan-dark);
  border-radius: var(--ilan-radius) 0 0 var(--ilan-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.agent-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 26px 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), transparent);
}
.agent-card__identity {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
}
.agent-card__meta { min-width: 0; }
.agent-card__meta h3 {
  margin: 0;
  font-size: var(--agent-name-size, 24px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}
.agent-card__meta p {
  margin: 6px 0 0;
  font-size: clamp(12px, 1vw, 15px);
  color: rgba(255,255,255,.6);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

/* Sağdaki foto paneli — üstte büyük logo, altta çerçeveli portre */
.agent-card__hero-photo {
  width: 42%;
  max-width: 220px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 0 var(--ilan-radius) var(--ilan-radius) 0;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: start;
  justify-items: center;
  gap: 10px;
  padding: 14px 12px;
}
.agent-card__brand-icon {
  width: 135px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
}
.agent-card__hero-img {
  width: 100%;
  height: auto;
  max-height: 100%;
  align-self: end;
  object-fit: contain;
  display: block;
  border: 3px solid #fff;
  border-radius: 12px;
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, .08),
    0 8px 18px rgba(15, 23, 42, .18);
  background: #f5f6f8;
}

.agent-card__action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--ilan-dark);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border-top: 1px solid rgba(255,255,255,.06);
  transition: background .15s;
}
.agent-card__icon { display: inline-flex; align-items: center; justify-content: center; }
.agent-card__icon svg { display: block; }
.agent-card__action--phone {
  background: var(--ilan-red);
  border-top-color: transparent;
  font-size: 15px;
}
.agent-card__action--phone:hover { background: #a40000; }
.agent-card__action--whatsapp { color: #25d366; }
.agent-card__action--whatsapp:hover { background: #1a242f; }
.agent-card__action--mail { color: #f57c00; }
.agent-card__action--mail:hover { background: #1a242f; }
.agent-card__action--listings { color: #fff; }
.agent-card__action--listings:hover { background: #1a242f; }

@media (max-width: 768px) {
  .agent-card__hero-photo {
    width: 40%;
    max-width: 170px;
  }
  .agent-card__brand-icon { width: 112px; }
}
@media (max-width: 520px) {
  .agent-card__top { padding: 20px 18px; }
  .agent-card__meta h3 { font-size: min(var(--agent-name-size, 22px), 22px); }
  .agent-card__meta p { font-size: 12px; }
  .agent-card__hero-photo {
    width: 38%;
    max-width: 138px;
    gap: 8px;
    padding: 12px 8px;
  }
  .agent-card__brand-icon { width: 88px; margin-top: 4px; }
  .agent-card__hero-img { border-radius: 10px; }
}

/* ---- Fiyat kartı ---- */
.ilan-info {
  display: block;
  background: var(--ilan-card);
  border: 1px solid var(--ilan-line);
  border-radius: var(--ilan-radius);
  box-shadow: var(--ilan-shadow);
  padding: 22px 24px;
  margin-top: 0;
}
.ilan-info-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ilan-ink);
  margin: 0 0 10px;
  line-height: 1.35;
}
.ilan-info-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--ilan-red);
  line-height: 1.1;
  letter-spacing: 0;
}
.ilan-info-sub {
  margin-top: 10px;
  font-size: 13px;
  color: var(--ilan-muted);
  font-weight: 500;
}
.ilan-info-location {
  display: block;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ilan-line);
  color: var(--ilan-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

/* ---- Genel özellikler ---- */
.ilan-specs {
  display: block;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-top: 0;
  background: var(--ilan-card);
  border: 1px solid var(--ilan-line);
  border-radius: var(--ilan-radius);
  box-shadow: var(--ilan-shadow);
  padding: 22px 24px 24px;
}
.ilan-specs h3 {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  color: var(--ilan-ink);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: left;
}
.ilan-specs dl { margin: 0; display: flex; flex-direction: column; }
.ilan-specs-row {
  display: grid;
  grid-template-columns: 44% minmax(0, 56%);
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ilan-line);
  align-items: baseline;
}
.ilan-specs-row:last-child { border-bottom: 0; padding-bottom: 0; }
.ilan-specs-row:first-child { padding-top: 0; }
.ilan-specs dt {
  font-size: 13px;
  color: var(--ilan-muted);
  font-weight: 500;
  line-height: 1.35;
}
.ilan-specs dd {
  margin: 0;
  font-size: 14px;
  color: var(--ilan-ink);
  font-weight: 700;
  line-height: 1.45;
  min-width: 0;
  overflow-wrap: normal;
  word-break: normal;
  text-align: left;
}

/* ============ AÇIKLAMA ============ */
.ilan-desc {
  background: var(--ilan-card);
  border: 1px solid var(--ilan-line);
  border-radius: var(--ilan-radius);
  box-shadow: var(--ilan-shadow);
  padding: 24px 28px;
}
.ilan-desc h2 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ilan-ink);
}
.ilan-desc-body {
  font-size: 14px;
  line-height: 1.75;
  color: #374151;
  word-wrap: break-word;
}

/* ============ PAYLAŞ ============ */
.ilan-share {
  background: var(--ilan-card);
  border: 1px solid var(--ilan-line);
  border-radius: var(--ilan-radius);
  box-shadow: var(--ilan-shadow);
  padding: 22px 24px;
  overflow: hidden;
}
.ilan-share-head {
  margin-bottom: 16px;
}
.ilan-share h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: var(--ilan-ink);
}
.ilan-share-head p {
  margin: 6px 0 0;
  color: var(--ilan-muted);
  font-size: 13px;
  line-height: 1.45;
}
.ilan-share-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}
.ilan-share-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: 74px;
  padding: 14px;
  border-radius: 12px;
  border: 1px solid var(--ilan-line);
  background: #f9fafb;
  color: var(--ilan-ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s, color .15s, background .15s;
  font-family: inherit;
  text-align: left;
}
.ilan-share-btn--native {
  width: 100%;
  border-color: rgba(201, 0, 0, .20);
}
.ilan-share-btn svg { display: block; }
.ilan-share-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
}
.ilan-share-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.ilan-share-text strong {
  color: var(--ilan-ink);
  font-size: 14px;
  line-height: 1.2;
}
.ilan-share-text small {
  color: var(--ilan-muted);
  font-size: 11px;
  line-height: 1.35;
  font-weight: 600;
}
.ilan-share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15,23,42,.10);
  background: #fff;
}
.ilan-share-btn--native .ilan-share-icon {
  color: var(--ilan-red);
  background: #fff0f0;
}
.ilan-share-btn--native:hover { border-color: var(--ilan-red); }
.ilan-share-btn.is-copied {
  background: #e7f6ec;
  color: #1f9d54;
  border-color: #1f9d54;
}
.ilan-share-btn.is-copied .ilan-share-icon {
  color: #1f9d54;
  background: #fff;
}
.ilan-share-url {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px dashed #cfd6dd;
  border-radius: 10px;
  background: #fbfcfd;
}
.ilan-share-url-label {
  color: var(--ilan-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.ilan-share-url-text {
  min-width: 0;
  color: var(--ilan-ink);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ilan-share-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 104px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid rgba(201, 0, 0, .18);
  border-radius: 9px;
  background: #fff;
  color: var(--ilan-red);
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  transition: background .15s, border-color .15s, color .15s, transform .15s;
  white-space: nowrap;
}
.ilan-share-copy svg { display: block; flex: 0 0 auto; }
.ilan-share-copy:hover {
  background: #fff0f0;
  border-color: var(--ilan-red);
  transform: translateY(-1px);
}
.ilan-share-copy.is-copied {
  color: #1f9d54;
  border-color: #1f9d54;
  background: #e7f6ec;
}

/* ============ BENZER İLANLAR ============ */
.ilan-similar { margin-top: 32px; }
.ilan-similar > h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--ilan-ink);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--ilan-red);
  display: inline-block;
}
.ilan-similar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ilan-similar-card {
  background: var(--ilan-card);
  border: 1px solid var(--ilan-line);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ilan-ink);
  display: flex;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  box-shadow: 0 2px 6px rgba(15, 23, 42, .04);
}
.ilan-similar-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .10);
  border-color: var(--ilan-red);
}
.ilan-similar-cover {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #f0f2f5;
  overflow: hidden;
}
.ilan-similar-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ilan-similar-tag {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--ilan-red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.ilan-similar-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.ilan-similar-price { font-size: 18px; font-weight: 800; color: var(--ilan-red); }
.ilan-similar-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--ilan-ink);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.ilan-similar-meta { font-size: 12px; color: var(--ilan-muted); margin-top: auto; padding-top: 4px; }

/* ============ NOT FOUND ============ */
.ilan-notfound {
  text-align: center;
  padding: 60px 20px;
  background: var(--ilan-card);
  border-radius: var(--ilan-radius);
  border: 1px solid var(--ilan-line);
}
.ilan-notfound h1 { color: var(--ilan-ink); margin-bottom: 8px; }
.ilan-notfound p  { color: var(--ilan-muted); margin-bottom: 20px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .ilan-grid { grid-template-columns: 1fr; }
  .ilan-similar-grid { grid-template-columns: repeat(2, 1fr); }
  .ilan-specs h3 { text-align: center; }
  .ilan-specs dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 34px;
  }
  .ilan-specs-row {
    grid-template-columns: minmax(142px, .9fr) minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .ilan-container { padding: 14px; }
  .ilan-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ilan-left-col,
  .ilan-side {
    display: contents;
  }
  .ilan-gallery { order: 1; }
  .ilan-info { order: 2; }
  .ilan-specs { order: 3; }
  .ilan-desc { order: 4; }
  .ilan-side .agent-card { order: 5; }
  .ilan-share { order: 6; }
  .ilan-info        { padding: 18px 20px; }
  .ilan-specs       { padding: 18px 20px; }
  .ilan-desc        { padding: 18px 20px; }
  .ilan-info-price  { font-size: 26px; }
  .ilan-agent-head  { padding: 16px; }
  .ilan-agent-btn   { padding: 13px 16px; }
}

@media (max-width: 600px) {
  .ilan-similar-grid { grid-template-columns: 1fr; }
  .ilan-share-grid { grid-template-columns: 1fr; }
  .ilan-share {
    padding: 18px 16px;
    border-radius: 14px;
  }
  .ilan-share-btn {
    min-height: 68px;
    padding: 12px;
    gap: 10px;
  }
  .ilan-share-icon {
    width: 38px;
    height: 38px;
  }
  .ilan-share-url {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }
  .ilan-share-url-label {
    grid-column: 1 / -1;
  }
  .ilan-share-url-text {
    min-height: 38px;
    display: flex;
    align-items: center;
  }
  .ilan-share-copy {
    min-width: 44px;
    width: 44px;
    padding: 0;
  }
  .ilan-share-copy span { display: none; }
  .ilan-cover-nav {
    width: 38px;
    height: 58px;
    border-radius: 10px;
    font-size: 42px;
    opacity: 1;
  }
  .ilan-cover-nav--prev { left: 8px; }
  .ilan-cover-nav--next { right: 8px; }
  .ilan-lightbox { padding: 64px 18px; }
  .ilan-lightbox__close {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    font-size: 30px;
  }
  .ilan-lightbox__arrow {
    width: 42px;
    height: 58px;
    font-size: 44px;
    border-radius: 10px;
  }
  .ilan-lightbox__arrow--prev { left: 10px; }
  .ilan-lightbox__arrow--next { right: 10px; }
  .ilan-specs h3 { text-align: left; }
  .ilan-specs dl { display: flex; }
  .ilan-specs-row { grid-template-columns: 1fr; gap: 2px; padding: 10px 0; }
  .ilan-specs-row dt { font-size: 12px; }
  .ilan-thumbs-shell { grid-template-columns: 32px minmax(0, 1fr) 32px; gap: 6px; padding: 10px; }
  .ilan-thumbs-nav { width: 32px; height: 48px; font-size: 24px; }
  .ilan-thumb-btn { flex-basis: 76px; }
}
