/**
 * Zaranni Image SEO Engine V2 — Styles
 *
 * @package Zaranni_Image_SEO_V2
 */

/* ── Lifestyle Gallery Metabox ──────────────────────────── */
.zise-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.zise-gallery-item {
  position: relative;
  width: 80px;
  height: 80px;
  border: 2px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
  cursor: move;
}

.zise-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.zise-gallery-item .zise-remove-img {
  position: absolute;
  top: 2px;
  right: 2px;
  background: rgba(220, 50, 50, 0.85);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.zise-gallery-item .zise-remove-img:hover {
  background: #c00;
}

/* ── Audit Badges ───────────────────────────────────────── */
.zise-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.zise-badge--error {
  background: #dc3232;
}

.zise-badge--warning {
  background: #dba617;
  color: #333;
}

.zise-badge--info {
  background: #0073aa;
}

/* ── Audit Table ────────────────────────────────────────── */
.zise-audit-table td,
.zise-audit-table th {
  vertical-align: middle;
}

/* ── Bulk Tools Cards ───────────────────────────────────── */
.zise-bulk-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.zise-bulk-card {
  background: #fff;
  border: 1px solid #ccd0d4;
  border-radius: 6px;
  padding: 20px 24px;
  width: 380px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.zise-bulk-card h2 {
  margin-top: 0;
  font-size: 16px;
}

.zise-bulk-result {
  margin-top: 12px;
}

/* ── Front-end: Lifestyle Grid ──────────────────────────── */
.zise-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.zise-lifestyle-figure {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f7f7f7;
}

.zise-lifestyle-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.zise-lifestyle-figure figcaption {
  padding: 8px 12px;
  font-size: 13px;
  color: #555;
  line-height: 1.4;
}

.zise-surrounding-text {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin: 16px 0;
}

/* ── Internal Links ─────────────────────────────────────── */
.zise-internal-links {
  margin: 16px 0;
}

.zise-internal-links h4 {
  margin-bottom: 8px;
  font-size: 14px;
}

.zise-internal-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zise-internal-links li a {
  display: inline-block;
  padding: 4px 12px;
  background: #f0f0f0;
  border-radius: 4px;
  text-decoration: none;
  font-size: 13px;
  color: #0073aa;
  transition: background 0.2s;
}

.zise-internal-links li a:hover {
  background: #0073aa;
  color: #fff;
}

/* ── Shortcode Wrappers ─────────────────────────────────── */
.zise-shortcode {
  margin: 24px 0;
}

.zise-shortcode h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

/* ── Category & City Blocks ─────────────────────────────── */
.zise-category-lifestyle,
.zise-blog-lifestyle {
  margin: 32px 0;
  padding: 20px;
  background: #fafafa;
  border-radius: 8px;
}

/* ── AI Generate Section ─────────────────────────────────── */
.zise-generate-section {
  margin-top: 8px;
  padding: 10px;
  background: #f0f6fc;
  border: 1px solid #c3d7e8;
  border-radius: 4px;
}

.zise-generate-section strong {
  display: block;
  margin-bottom: 4px;
}

.zise-gen-status {
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.5;
}

.zise-gen-spinner {
  color: #666;
}

#zise-prompt-preview {
  word-break: break-word;
  color: #555;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .zise-lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .zise-bulk-cards {
    flex-direction: column;
  }

  .zise-bulk-card {
    width: 100%;
  }

  .zise-gallery-item {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .zise-lifestyle-grid {
    grid-template-columns: 1fr;
  }
}
