.exif-info-bar {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  margin-top: 14px;
  border-radius: var(--radius-md);
  background: var(--gold-soft);
  border: 1px solid rgba(169, 122, 38, 0.3);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1.5;
}
.exif-info-bar svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

.exif-view-btn {
  flex-shrink: 0;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-secondary);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.exif-view-btn:hover { border-color: var(--accent); color: var(--accent); }
.convert-file-row.is-active .exif-view-btn { border-color: var(--accent); background: var(--accent-soft); color: var(--accent-dark); }

.exif-badge {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 9px;
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  font-weight: 700;
  background: var(--pine-soft);
  color: var(--pine);
}
.exif-badge.gps { background: var(--accent-soft); color: var(--accent-dark); }
.exif-badge.none { background: var(--bg-alt); color: var(--text-muted); }

.exif-detail-wrap { margin-top: 22px; }
.exif-detail-label { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; text-align: center; font-weight: 600; }

.exif-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 22px;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.exif-detail-photo { display: flex; flex-direction: column; gap: 10px; }
.exif-detail-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px solid var(--border);
}
.exif-detail-filename {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text-secondary);
  word-break: break-all;
  line-height: 1.4;
}

.exif-detail-body { display: flex; flex-direction: column; gap: 16px; min-width: 0; }

.exif-gps-alert {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  border: 1px solid rgba(181, 71, 43, 0.28);
}
.exif-gps-alert svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.exif-gps-alert strong { display: block; font-size: 14px; color: var(--accent-dark); margin-bottom: 4px; }
.exif-gps-alert p { margin: 0 0 6px; font-size: 13px; color: var(--text-secondary); }
.exif-gps-alert a { font-size: 13px; font-weight: 700; color: var(--accent); text-decoration: underline; }

.exif-empty-msg {
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-alt);
  border: 1px dashed var(--border-strong);
  font-size: 13.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin: 0;
}

.exif-groups { display: flex; flex-direction: column; gap: 14px; }
.exif-group h4 {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin: 0 0 8px;
}
.exif-group h4 svg { width: 16px; height: 16px; color: var(--gold); }
.exif-tag-table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.exif-tag-table tr:not(:last-child) th,
.exif-tag-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.exif-tag-table th {
  text-align: left;
  padding: 7px 12px 7px 0;
  color: var(--text-muted);
  font-weight: 600;
  white-space: nowrap;
  width: 110px;
}
.exif-tag-table td { padding: 7px 0; color: var(--text); font-weight: 600; }

.exif-detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 6px;
  border-top: 1px solid var(--border);
}
.exif-detail-size { font-size: 12.5px; color: var(--text-muted); font-weight: 600; }

@media (max-width: 640px) {
  .exif-detail { grid-template-columns: 1fr; }
  .exif-detail-photo { flex-direction: row; align-items: center; }
  .exif-detail-photo img { width: 72px; height: 72px; flex-shrink: 0; }
}
