/* ============================================================
   AVALIE — CSS — Luxury Dark Editorial Design
   ============================================================ */

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

:root {
  --bg:        #0d0d0f;
  --bg2:       #141418;
  --bg3:       #1c1c22;
  --card:      #18181e;
  --border:    rgba(255,255,255,.08);
  --gold:      #c9a84c;
  --gold-lt:   #e8c97a;
  --rose:      #e8526a;
  --rose-lt:   #ff7a8e;
  --text:      #e8e6e0;
  --text-muted:#888;
  --text-sub:  #bbb;
  --radius:    12px;
  --radius-sm: 8px;
  --shadow:    0 8px 40px rgba(0,0,0,.6);
  --font-head: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --transition: .22s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Utility ─────────────────────────────────────────────── */
.hidden { display: none !important; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--sm { max-width: 680px; margin: 0 auto; padding: 0 24px; }
.center-btn { text-align: center; margin-top: 32px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-lt));
  color: #1a1200;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: .3px;
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,.3); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  border-radius: 50px;
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(201,168,76,.12); }

.btn-lg { padding: 15px 36px; font-size: 16px; }
.btn-full { width: 100%; }

/* ── Logo ────────────────────────────────────────────────── */
.logo-a { font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1.5em; font-weight: 900; }
.logo-text { font-family: var(--font-head); font-weight: 700; letter-spacing: .05em; }

/* ── Age Gate ────────────────────────────────────────────── */
.age-gate {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
}
.age-gate__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, #1a0a1a 0%, #060608 100%);
}
.age-gate__box {
  position: relative; z-index: 1;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 440px;
  width: 92%;
  box-shadow: var(--shadow);
}
.age-gate__logo { font-size: 28px; margin-bottom: 16px; }
.age-gate__icon { font-size: 48px; margin-bottom: 16px; }
.age-gate__box h2 { font-family: var(--font-head); font-size: 26px; margin-bottom: 12px; }
.age-gate__box p { color: var(--text-sub); margin-bottom: 20px; }
.age-gate__form label { display: block; font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }
.age-gate__form input {
  width: 100%; padding: 14px; border-radius: var(--radius-sm);
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); font-size: 20px; text-align: center;
  margin-bottom: 16px; letter-spacing: 4px;
}
.age-gate__form input:focus { outline: none; border-color: var(--gold); }
.age-gate__form .btn-primary { width: 100%; }
.age-error { color: var(--rose); font-size: 14px; margin-top: 8px; }
.age-gate__note { font-size: 12px; color: var(--text-muted); margin-top: 20px; line-height: 1.5; }

/* ── Header ──────────────────────────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,15,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.header .container { display: flex; align-items: center; gap: 32px; }
.site-logo { text-decoration: none; color: var(--text); font-size: 22px; flex-shrink: 0; }
.nav { display: flex; gap: 4px; flex: 1; }
.nav-link {
  color: var(--text-muted); text-decoration: none;
  padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500; transition: var(--transition);
}
.nav-link:hover { color: var(--text); background: rgba(255,255,255,.06); }
.nav-link.active { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

@media (max-width: 700px) {
  .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
         background: var(--bg2); border-bottom: 1px solid var(--border); padding: 12px 24px 20px; gap: 4px; }
  .nav.open { display: flex; }
  .hamburger { display: flex; }
}

/* ── Sections ────────────────────────────────────────────── */
.section { display: none; }
.section.active { display: block; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 70vh;
  display: flex; align-items: center;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(232,82,106,.06) 0%, transparent 50%),
    var(--bg);
  padding: 80px 24px;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(201,168,76,.06);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -50px; left: -50px;
  width: 300px; height: 300px;
  border: 1px solid rgba(232,82,106,.05);
  border-radius: 50%; pointer-events: none;
}
.hero__content { max-width: 680px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.hero__title { font-family: var(--font-head); font-size: clamp(40px,7vw,80px); line-height: 1.1; margin-bottom: 24px; }
.hero__title em { color: var(--gold); font-style: italic; }
.hero__sub { color: var(--text-sub); font-size: 18px; margin-bottom: 36px; max-width: 480px; margin-left: auto; margin-right: auto; }
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── Section Blocks ──────────────────────────────────────── */
.section-block { padding: 64px 24px; }
.section-block--dark { background: var(--bg2); }
.section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; max-width: 1200px; margin-left: auto; margin-right: auto; }
.section-header h2 { font-family: var(--font-head); font-size: 28px; }
.section-badge { background: rgba(201,168,76,.15); color: var(--gold); border: 1px solid rgba(201,168,76,.3); border-radius: 50px; padding: 4px 12px; font-size: 13px; font-weight: 500; }

/* ── Carousel ────────────────────────────────────────────── */
.carousel-wrapper { position: relative; max-width: 1200px; margin: 0 auto; }
.carousel { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; gap: 16px; transition: transform .4s cubic-bezier(.25,.46,.45,.94); }
.carousel-card {
  flex: 0 0 220px; cursor: pointer;
  background: var(--card); border-radius: var(--radius-sm);
  overflow: hidden; border: 1px solid var(--border);
  transition: var(--transition);
}
.carousel-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.4); }
.carousel-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  pointer-events: none; user-select: none;
  -webkit-user-drag: none;
}
.carousel-card__info { padding: 10px 12px; }
.carousel-card__nick { font-weight: 600; font-size: 14px; display: block; }
.carousel-card__state { font-size: 12px; color: var(--text-muted); }
.carousel-card__avg { color: var(--gold); font-size: 13px; font-weight: 600; margin-top: 4px; display: block; }

.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(13,13,15,.85); border: 1px solid var(--border);
  color: var(--text); width: 44px; height: 44px; border-radius: 50%;
  font-size: 24px; cursor: pointer; z-index: 2; display: flex; align-items: center; justify-content: center;
  transition: var(--transition); backdrop-filter: blur(4px);
}
.carousel-btn--prev { left: -20px; }
.carousel-btn--next { right: -20px; }
.carousel-btn:hover { background: var(--gold); color: #1a1200; border-color: var(--gold); }

/* ── Photo Grid ──────────────────────────────────────────── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 24px;
}
.photo-card {
  cursor: pointer; border-radius: var(--radius-sm);
  overflow: hidden; background: var(--card);
  border: 1px solid var(--border); position: relative;
  transition: var(--transition);
}
.photo-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.5); }
.photo-card img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  pointer-events: none; user-select: none; -webkit-user-drag: none;
  display: block;
}
.photo-card__overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.85), transparent);
  padding: 28px 12px 10px;
  opacity: 0; transition: var(--transition);
}
.photo-card:hover .photo-card__overlay { opacity: 1; }
.photo-card__nick { font-size: 13px; font-weight: 600; display: block; }
.photo-card__state { font-size: 12px; color: var(--text-sub); }
.photo-card__avg { color: var(--gold); font-size: 12px; font-weight: 700; }

.gallery-header { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin: 40px 0 16px; }
.gallery-filters { display: flex; gap: 16px; flex-wrap: wrap; }
.filter-group { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.filter-group select {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  padding: 8px 12px; border-radius: var(--radius-sm); font-size: 14px; cursor: pointer;
}

/* ── Pagination ──────────────────────────────────────────── */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.page-btn {
  background: var(--bg3); border: 1px solid var(--border); color: var(--text);
  width: 40px; height: 40px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; transition: var(--transition);
}
.page-btn.active { background: var(--gold); color: #1a1200; border-color: var(--gold); font-weight: 700; }
.page-btn:hover:not(.active) { border-color: var(--gold); color: var(--gold); }

/* ── Top 10 ──────────────────────────────────────────────── */
.top10-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr));
  gap: 16px; max-width: 1200px; margin: 0 auto;
}
.top10-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.top10-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 20px;
  cursor: pointer; transition: var(--transition);
}
.top10-item:hover { border-color: var(--gold); box-shadow: 0 4px 20px rgba(201,168,76,.15); }
.top10-rank {
  font-family: var(--font-head); font-size: 32px; font-weight: 900;
  color: var(--gold); min-width: 48px; text-align: center;
}
.top10-rank.rank-1 { color: #ffd700; }
.top10-rank.rank-2 { color: #c0c0c0; }
.top10-rank.rank-3 { color: #cd7f32; }
.top10-img { width: 80px; height: 80px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; pointer-events: none; user-select: none; }
.top10-info { flex: 1; }
.top10-nick { font-weight: 700; font-size: 16px; display: block; }
.top10-state { font-size: 13px; color: var(--text-muted); }
.top10-avg { font-family: var(--font-head); font-size: 28px; font-weight: 700; color: var(--gold); margin-left: auto; }
.top10-avg small { font-size: 14px; color: var(--text-muted); }

/* ── Page titles ─────────────────────────────────────────── */
.page-title { font-family: var(--font-head); font-size: 36px; margin: 40px 0 8px; }
.page-sub { color: var(--text-muted); margin-bottom: 24px; }

/* ── Upload Form ─────────────────────────────────────────── */
.upload-rules {
  background: rgba(232,82,106,.07);
  border: 1px solid rgba(232,82,106,.25);
  border-radius: var(--radius); padding: 24px 28px;
  margin: 24px 0 32px;
}
.upload-rules h3 { font-size: 16px; margin-bottom: 12px; }
.upload-rules ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.upload-rules li { font-size: 14px; color: var(--text-sub); }

.upload-form { margin-top: 8px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; color: var(--text-sub); }
.req { color: var(--rose); }
.field-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; display: block; }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%; padding: 13px 16px;
  background: var(--bg3); border: 1px solid var(--border);
  color: var(--text); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 15px;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 120px; }

.dropzone {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 40px 24px; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--bg3);
}
.dropzone:hover, .dropzone.drag-over { border-color: var(--gold); background: rgba(201,168,76,.06); }
.dropzone__icon { font-size: 40px; margin-bottom: 12px; }
.dropzone p { font-size: 15px; color: var(--text-sub); }
.dropzone .link { color: var(--gold); text-decoration: underline; cursor: pointer; }
.dropzone__hint { font-size: 13px; color: var(--text-muted); margin-top: 6px; }

.preview-box { position: relative; margin-top: 12px; display: inline-block; }
.preview-box img { max-width: 100%; max-height: 280px; border-radius: var(--radius-sm); display: block; }
.preview-remove {
  position: absolute; top: -10px; right: -10px;
  background: var(--rose); color: white; border: none;
  width: 28px; height: 28px; border-radius: 50%; cursor: pointer; font-size: 14px;
}
#preview-size { font-size: 12px; color: var(--text-muted); display: block; margin-top: 6px; }

.checkbox-group .checkbox-label { display: flex; gap: 12px; cursor: pointer; align-items: flex-start; }
.checkbox-label input { margin-top: 3px; accent-color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.checkbox-label span { font-size: 14px; color: var(--text-sub); }

/* ── Messages ────────────────────────────────────────────── */
.msg {
  padding: 13px 16px; border-radius: var(--radius-sm);
  font-size: 14px; margin-bottom: 16px;
}
.msg.success { background: rgba(72,199,120,.15); border: 1px solid rgba(72,199,120,.4); color: #48c778; }
.msg.error { background: rgba(232,82,106,.12); border: 1px solid rgba(232,82,106,.35); color: var(--rose-lt); }

/* ── Spinner ─────────────────────────────────────────────── */
.spinner {
  width: 18px; height: 18px; border: 2px solid rgba(26,18,0,.3);
  border-top-color: #1a1200; border-radius: 50%;
  animation: spin .7s linear infinite; display: inline-block; vertical-align: middle;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Modal ───────────────────────────────────────────────── */
.modal { position: fixed; inset: 0; z-index: 500; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,.85); backdrop-filter: blur(4px); }
.modal__box {
  position: relative; z-index: 1;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; overflow: hidden;
  display: flex; max-width: 900px; width: 100%;
  max-height: 90vh; box-shadow: var(--shadow);
}
.modal__close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  background: rgba(0,0,0,.5); border: none; color: white;
  width: 36px; height: 36px; border-radius: 50%; font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.modal__img-wrap { flex: 0 0 55%; position: relative; background: #000; max-height: 90vh; }
.modal__img-wrap img {
  width: 100%; height: 100%; object-fit: contain; max-height: 90vh;
  display: block; pointer-events: none; user-select: none; -webkit-user-drag: none;
}
.modal__watermark-block {
  position: absolute; inset: 0; user-select: none; pointer-events: none;
}
.modal__info { flex: 1; padding: 28px; overflow-y: auto; display: flex; flex-direction: column; gap: 20px; }
.modal__meta { display: flex; flex-direction: column; gap: 4px; }
.modal__nick { font-weight: 700; font-size: 20px; }
.modal__state { color: var(--text-muted); font-size: 14px; }
.modal__date { color: var(--text-muted); font-size: 13px; }
.modal__rating { display: flex; align-items: center; gap: 16px; }
.modal__average { font-family: var(--font-head); font-size: 48px; font-weight: 900; color: var(--gold); line-height: 1; }
.modal__average small { font-family: var(--font-body); font-size: 16px; color: var(--text-muted); }
.modal__votes-info { color: var(--text-muted); font-size: 14px; }
.modal__vote-section { border-top: 1px solid var(--border); padding-top: 20px; }
.vote-label { font-size: 15px; font-weight: 600; margin-bottom: 12px; }
.vote-hint { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }

/* ── Star Rating ─────────────────────────────────────────── */
.star-rating { display: flex; gap: 6px; margin-bottom: 16px; flex-wrap: wrap; }
.score-btn {
  width: 36px; height: 36px; background: var(--bg3);
  border: 1px solid var(--border); border-radius: 6px;
  color: var(--text-muted); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center;
}
.score-btn:hover { border-color: var(--gold); color: var(--gold); }
.score-btn.selected { background: var(--gold); color: #1a1200; border-color: var(--gold); }

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg2); border-top: 1px solid var(--border);
  padding: 48px 0 32px; text-align: center;
}
.footer__logo { font-size: 24px; margin-bottom: 12px; }
.footer__text { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.footer__seal { margin: 24px 0; }

.anti-pedo-seal {
  display: inline-flex; align-items: center; gap: 16px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 16px 24px; text-align: left;
  max-width: 520px;
}
.seal-icon { font-size: 36px; flex-shrink: 0; }
.anti-pedo-seal strong { display: block; font-size: 13px; letter-spacing: .08em; margin-bottom: 4px; color: var(--gold); }
.anti-pedo-seal span { font-size: 12px; color: var(--text-muted); line-height: 1.5; }

.footer__copy { font-size: 12px; color: var(--text-muted); margin-top: 24px; }

/* ── Empty states ────────────────────────────────────────── */
.empty-state {
  text-align: center; padding: 60px 20px;
  color: var(--text-muted); font-size: 15px;
}
.empty-state .empty-icon { font-size: 48px; margin-bottom: 12px; }

/* ── Loading ─────────────────────────────────────────────── */
.loading-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px; margin-top: 24px; }
.skeleton { background: linear-gradient(90deg, var(--bg3) 25%, var(--bg2) 50%, var(--bg3) 75%);
            background-size: 200% 100%; animation: shimmer 1.4s infinite; border-radius: var(--radius-sm); }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 760px) {
  .modal__box { flex-direction: column; max-height: 95vh; }
  .modal__img-wrap { flex: 0 0 auto; max-height: 50vh; }
  .carousel-card { flex: 0 0 160px; }
  .top10-item { flex-wrap: wrap; }
  .hero { min-height: 50vh; }
}

/* ── Context menu block ──────────────────────────────────── */
img { -webkit-user-drag: none; }

/* Contact */
.contact-form { margin-top: 8px; }

/* ── Safari fixes ────────────────────────────────────────────── */
img { -webkit-user-drag: none; max-width: 100%; height: auto; }
.carousel-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.photo-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.top10-img { width: 80px; height: 80px; object-fit: cover; }
.modal__img-wrap img { width: 100%; height: 100%; object-fit: contain; }

/* ── Mobile responsive ───────────────────────────────────────── */
@media (max-width: 1200px) {
  #banner-left, #banner-right { display: none !important; }
}

@media (max-width: 768px) {
  .hero { padding: 40px 16px; min-height: auto; }
  .hero__title { font-size: 36px; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .top10-item { padding: 12px; }
  .top10-avg { font-size: 20px; }
  .modal__box { flex-direction: column; max-height: 95vh; border-radius: 12px; }
  .modal__img-wrap { flex: 0 0 auto; max-height: 45vh; }
  .modal__info { padding: 16px; }
  .modal__average { font-size: 36px; }
  .section-block { padding: 32px 16px; }
  .carousel-card { flex: 0 0 140px; }
  .container { padding: 0 12px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
  .gallery-filters { width: 100%; }
  .gallery-filters select { flex: 1; }
  .upload-rules { padding: 16px; }
  .top10-list { gap: 10px; }
  .anti-pedo-seal { flex-direction: column; text-align: center; padding: 16px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn-lg { padding: 13px 24px; font-size: 15px; }
  .page-title { font-size: 26px; margin-top: 24px; }
  .star-rating { gap: 4px; }
  .score-btn { width: 30px; height: 30px; font-size: 12px; }
  .vip-modal .modal__box, #payment-modal .modal__box, #auth-modal .modal__box { 
    width: 95%; padding: 24px 20px; 
  }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .top10-rank { font-size: 22px; min-width: 36px; }
  .top10-img { width: 60px; height: 60px; }
  .modal__img-wrap { max-height: 40vh; }
}
