/* ╔═══════════════════════════════════════════════════════════════════
   ║  PRADUMNA_FX — EDITING ASSETS RESOURCE DETAIL PAGE
   ║  Master Reference: PRADUMNA_FX_WINDOWS_AFTER_EFFECTS_PREMIERE_PRO_FINAL.html
   ║  Ultra-Premium Liquid Water Glass / 120Hz-Ready / Fully Scoped
   ║  STRICT SCOPE: .editing-assets-detail-page ONLY
   ╚═══════════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   1. DESIGN TOKENS & ATMOSPHERIC ENVIRONMENT
   ═══════════════════════════════════════════════════════ */
:root {
  --ea-bg-base: #06070a;
  --ea-text-main: #ffffff;
  --ea-text-sub: #b8c3d9;
  --ea-text-muted: #828ea8;
  --ea-accent-blue: #70a2ff;
  --ea-accent-cyan: #5ce1e6;
  --ea-accent-emerald: #10b981;
  --ea-accent-violet: #a78bfa;
}

body.editing-assets-detail-body {
  background-color: var(--ea-bg-base);
  background-image:
    radial-gradient(circle at 50% -8%, rgba(112, 162, 255, 0.12) 0%, transparent 48%),
    radial-gradient(circle at 12% 28%, rgba(167, 139, 250, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 88% 62%, rgba(92, 225, 230, 0.07) 0%, transparent 42%),
    radial-gradient(circle at 50% 105%, rgba(112, 162, 255, 0.10) 0%, transparent 50%);
  background-attachment: fixed;
  color: var(--ea-text-main);
  min-height: 100vh;
}

.editing-assets-detail-page {
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px 100px;
  position: relative;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════
   2. REUSABLE LIQUID GLASS MATERIAL & PANELS
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-glass-panel {
  position: relative;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.38) 0%,
    rgba(255, 255, 255, 0.22) 34%,
    rgba(236, 243, 255, 0.30) 67%,
    rgba(255, 255, 255, 0.38) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 26px;
  box-shadow:
    0 36px 90px rgba(18, 26, 44, 0.18),
    0 10px 28px rgba(18, 26, 44, 0.09),
    0 0 0 1px rgba(180, 202, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.98),
    inset 0 -1px 0 rgba(150, 166, 199, 0.10);
  backdrop-filter: blur(24px) saturate(150%) contrast(1.02);
  -webkit-backdrop-filter: blur(24px) saturate(150%) contrast(1.02);
  overflow: hidden;
  box-sizing: border-box;
  isolation: isolate;
  transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

/* Restrained inner panel for nested content */
.editing-assets-detail-page .ea-glass-panel--subtle {
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.09) 40%,
    rgba(236, 243, 255, 0.14) 75%,
    rgba(255, 255, 255, 0.18) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    0 20px 48px rgba(10, 16, 30, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

/* Master Top Hairline Highlight */
.editing-assets-detail-page .ea-glass-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.70) 22%,
    rgba(190, 213, 255, 0.40) 50%,
    rgba(255, 255, 255, 0.70) 78%,
    transparent 100%
  );
  opacity: 0.85;
  pointer-events: none;
  z-index: 3;
}

/* Subtle water bloom behind major hero panels */
.editing-assets-detail-page .ea-glass-bloom::after {
  content: "";
  position: absolute;
  inset: 15% 10% -10%;
  z-index: -2;
  border-radius: 50%;
  background:
    radial-gradient(circle at 20% 20%, rgba(190, 220, 255, 0.22), transparent 35%),
    radial-gradient(circle at 80% 20%, rgba(222, 230, 255, 0.16), transparent 32%),
    radial-gradient(circle at 60% 100%, rgba(164, 194, 255, 0.14), transparent 45%);
  filter: blur(44px);
  opacity: 0.85;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   3. BREADCRUMBS
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 24px 0 18px;
  font-size: 0.92rem;
  color: var(--ea-text-muted);
}

.editing-assets-detail-page .ea-breadcrumb a {
  color: var(--ea-text-sub);
  text-decoration: none;
  transition: color 0.2s ease;
}

.editing-assets-detail-page .ea-breadcrumb a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(112, 162, 255, 0.5);
}

.editing-assets-detail-page .ea-breadcrumb-sep {
  opacity: 0.45;
  font-size: 0.85rem;
  user-select: none;
}

.editing-assets-detail-page .ea-breadcrumb-current {
  color: #ffffff;
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   4. HERO SHOWCASE LAYOUT (TWO-COLUMN DESKTOP)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(360px, 0.95fr);
  gap: 36px;
  align-items: start;
  margin-bottom: 48px;
}

.editing-assets-detail-page .ea-hero-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Badges row */
.editing-assets-detail-page .ea-badge-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.editing-assets-detail-page .ea-badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.60);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.editing-assets-detail-page .ea-badge-glass--free {
  color: #ffffff;
  background: rgba(16, 185, 129, 0.18);
  border-color: rgba(52, 211, 153, 0.65);
}

.editing-assets-detail-page .ea-badge-free-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ea-accent-emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.25);
}

.editing-assets-detail-page .ea-badge-glass--category {
  color: #eaf1ff;
  background: rgba(112, 162, 255, 0.18);
  border-color: rgba(165, 198, 255, 0.65);
}

/* Title & Description */
.editing-assets-detail-page .ea-hero-title {
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
  font-weight: 850;
  line-height: 1.14;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 20px rgba(112, 162, 255, 0.22);
}

.editing-assets-detail-page .ea-hero-desc {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.62;
  color: var(--ea-text-sub);
  margin: 0;
  max-width: 780px;
}

/* Trust / Creator bar */
.editing-assets-detail-page .ea-trust-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.88rem;
  color: var(--ea-text-sub);
}

.editing-assets-detail-page .ea-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
}

.editing-assets-detail-page .ea-trust-icon {
  color: var(--ea-accent-cyan);
  font-size: 1rem;
}

/* Embedded Artwork Container */
.editing-assets-detail-page .ea-preview-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  overflow: hidden;
  background: #090a0f;
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow:
    0 24px 60px rgba(10, 16, 32, 0.35),
    0 0 0 1px rgba(180, 202, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.editing-assets-detail-page .ea-preview-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editing-assets-detail-page .ea-preview-frame:hover .ea-preview-img {
  transform: scale(1.025);
}

/* Glass reflection shine sweep on hover */
.editing-assets-detail-page .ea-preview-reflection {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 20%,
    rgba(255, 255, 255, 0.15) 38%,
    rgba(255, 255, 255, 0.40) 50%,
    rgba(255, 255, 255, 0.15) 62%,
    transparent 80%
  );
  transform: translateX(-100%);
  transition: transform 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
  mix-blend-mode: screen;
  z-index: 2;
}

.editing-assets-detail-page .ea-preview-frame:hover .ea-preview-reflection {
  transform: translateX(100%);
}

.editing-assets-detail-page .ea-preview-overlay-badge {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
}

/* ═══════════════════════════════════════════════════════
   5. FLOATING LIQUID GLASS DOWNLOAD PANEL
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-download-panel {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: sticky;
  top: 96px;
}

.editing-assets-detail-page .ea-panel-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.editing-assets-detail-page .ea-panel-title {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.editing-assets-detail-page .ea-panel-subtitle {
  font-size: 0.9rem;
  color: var(--ea-text-sub);
  margin: 0;
}

/* Primary Glass Pill CTA Button */
.editing-assets-detail-page .ea-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 60px;
  padding: 5px 6px 5px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.92);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(235, 242, 255, 0.72) 48%,
    rgba(255, 255, 255, 0.85) 100%
  );
  color: #12141a;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -1px 0 rgba(119, 137, 173, 0.15),
    0 14px 30px rgba(18, 26, 44, 0.22),
    0 0 0 1px rgba(177, 197, 239, 0.25),
    0 0 28px rgba(162, 184, 255, 0.32);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  cursor: pointer;
  overflow: hidden;
  box-sizing: border-box;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1),
              box-shadow 0.28s ease,
              background 0.28s ease;
}

.editing-assets-detail-page .ea-cta-label {
  display: inline-block;
  color: #12141a;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.85);
  font-weight: 750;
}

.editing-assets-detail-page .ea-cta-arrow {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 34% 24%, rgba(255, 255, 255, 0.22), transparent 22%),
              linear-gradient(145deg, #3d3e44, #202126 56%, #131417);
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.30),
    inset 0 -1px 0 rgba(0, 0, 0, 0.40),
    0 6px 14px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editing-assets-detail-page .ea-cta-btn:hover {
  transform: translateY(-2px) scale(1.012);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(240, 246, 255, 0.84) 48%,
    rgba(255, 255, 255, 0.92) 100%
  );
  box-shadow:
    inset 0 1px 0 #ffffff,
    inset 0 -1px 0 rgba(119, 137, 173, 0.12),
    0 18px 40px rgba(18, 26, 44, 0.28),
    0 0 0 1px rgba(180, 205, 255, 0.40),
    0 0 38px rgba(162, 184, 255, 0.45);
}

.editing-assets-detail-page .ea-cta-btn:hover .ea-cta-arrow {
  transform: translateX(3px) scale(1.05);
}

.editing-assets-detail-page .ea-cta-btn:active {
  transform: translateY(0) scale(0.985);
}

.editing-assets-detail-page .ea-cta-btn:focus-visible {
  outline: 2px solid var(--ea-accent-blue);
  outline-offset: 3px;
}

/* Security Guarantee row */
.editing-assets-detail-page .ea-security-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.84rem;
  color: var(--ea-text-muted);
}

.editing-assets-detail-page .ea-security-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.editing-assets-detail-page .ea-security-item--safe {
  color: #34d399;
}

/* Technical Specification List */
.editing-assets-detail-page .ea-spec-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  padding-top: 18px;
}

.editing-assets-detail-page .ea-spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.92rem;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.editing-assets-detail-page .ea-spec-row:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.40);
}

.editing-assets-detail-page .ea-spec-label {
  color: var(--ea-text-muted);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.editing-assets-detail-page .ea-spec-val {
  color: #ffffff;
  font-weight: 600;
  text-align: right;
  max-width: 60%;
}

/* AdSense in sidebar */
.editing-assets-detail-page .ea-panel-ad {
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ═══════════════════════════════════════════════════════
   6. MAIN EDITORIAL CONTENT PANELS
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-sections-stack {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.editing-assets-detail-page .ea-section {
  padding: 36px 34px;
}

.editing-assets-detail-page .ea-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 16px;
}

.editing-assets-detail-page .ea-section-title {
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.editing-assets-detail-page .ea-section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ea-accent-blue);
  background: rgba(112, 162, 255, 0.15);
  border: 1px solid rgba(112, 162, 255, 0.40);
  padding: 4px 10px;
  border-radius: 999px;
}

/* Description Prose */
.editing-assets-detail-page .ea-prose {
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--ea-text-sub);
}

.editing-assets-detail-page .ea-prose p {
  margin: 0 0 16px;
}

.editing-assets-detail-page .ea-prose p:last-child {
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════════════════
   7. WHAT'S INCLUDED (GLASS CHIPS & GRID)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 14px;
}

.editing-assets-detail-page .ea-included-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 18px rgba(10, 16, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.editing-assets-detail-page .ea-included-chip:hover {
  transform: translateY(-2px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.26), rgba(236, 243, 255, 0.15));
  border-color: rgba(255, 255, 255, 0.85);
}

.editing-assets-detail-page .ea-chip-icon {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(16, 185, 129, 0.22);
  color: #34d399;
  font-size: 0.85rem;
  font-weight: 800;
  border: 1px solid rgba(52, 211, 153, 0.5);
}

.editing-assets-detail-page .ea-chip-title {
  font-size: 0.95rem;
  font-weight: 650;
  color: #ffffff;
}

/* ═══════════════════════════════════════════════════════
   8. KEY FEATURES & BEST USES
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.editing-assets-detail-page .ea-feature-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07));
  border: 1px solid rgba(255, 255, 255, 0.50);
  box-shadow: 0 10px 24px rgba(10, 16, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease;
}

.editing-assets-detail-page .ea-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.85);
  box-shadow: 0 16px 36px rgba(10, 16, 32, 0.18), inset 0 1px 0 #ffffff;
}

.editing-assets-detail-page .ea-feature-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.editing-assets-detail-page .ea-feature-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ea-accent-blue);
  box-shadow: 0 0 10px var(--ea-accent-blue);
  flex-shrink: 0;
}

.editing-assets-detail-page .ea-feature-title {
  font-size: 1.05rem;
  font-weight: 750;
  color: #ffffff;
  margin: 0;
}

.editing-assets-detail-page .ea-feature-desc {
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--ea-text-sub);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   9. HOW TO USE (NUMBERED STEP CARDS)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.editing-assets-detail-page .ea-step-card {
  padding: 24px 22px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(10, 16, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.editing-assets-detail-page .ea-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.85);
}

.editing-assets-detail-page .ea-step-num {
  font-size: 1.85rem;
  font-weight: 900;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: transparent;
  background: linear-gradient(135deg, #ffffff, var(--ea-accent-blue));
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 1;
}

.editing-assets-detail-page .ea-step-title {
  font-size: 1.1rem;
  font-weight: 750;
  color: #ffffff;
  margin: 0;
}

.editing-assets-detail-page .ea-step-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ea-text-sub);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   10. WHY WE RECOMMEND IT (EDITORIAL HIGHLIGHT)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-recommend-panel {
  padding: 30px 32px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(112, 162, 255, 0.16), rgba(255, 255, 255, 0.12));
  border: 1px solid rgba(165, 198, 255, 0.65);
  box-shadow: 0 16px 40px rgba(18, 26, 50, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editing-assets-detail-page .ea-recommend-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ea-accent-blue);
  width: fit-content;
}

.editing-assets-detail-page .ea-recommend-badge-pip {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ea-accent-blue);
  box-shadow: 0 0 8px var(--ea-accent-blue);
}

.editing-assets-detail-page .ea-recommend-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   11. GALLERY (INTERACTIVE GLASS VIEWER)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-gallery-viewer {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.editing-assets-detail-page .ea-gallery-hero-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: #090a10;
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow: 0 20px 50px rgba(10, 16, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.50);
}

.editing-assets-detail-page .ea-gallery-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.35s ease, transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editing-assets-detail-page .ea-gallery-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}

.editing-assets-detail-page .ea-gallery-thumb {
  position: relative;
  width: 130px;
  aspect-ratio: 16 / 9;
  flex: 0 0 130px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: #090a10;
  cursor: pointer;
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.editing-assets-detail-page .ea-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editing-assets-detail-page .ea-gallery-thumb:hover,
.editing-assets-detail-page .ea-gallery-thumb.is-active {
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(112, 162, 255, 0.35);
}

/* ═══════════════════════════════════════════════════════
   12. FAQ (ACCESSIBLE LIQUID GLASS ACCORDION)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.editing-assets-detail-page .ea-faq-item {
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.50);
  box-shadow: 0 6px 20px rgba(10, 16, 32, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.editing-assets-detail-page .ea-faq-item.is-open {
  border-color: rgba(255, 255, 255, 0.85);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(236, 243, 255, 0.12));
}

.editing-assets-detail-page .ea-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  box-sizing: border-box;
}

.editing-assets-detail-page .ea-faq-trigger:focus-visible {
  outline: 2px solid var(--ea-accent-blue);
  outline-offset: -2px;
}

.editing-assets-detail-page .ea-faq-icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.3s ease;
}

.editing-assets-detail-page .ea-faq-item.is-open .ea-faq-icon {
  transform: rotate(45deg);
  background: rgba(112, 162, 255, 0.35);
  border-color: rgba(165, 198, 255, 0.85);
}

.editing-assets-detail-page .ea-faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.editing-assets-detail-page .ea-faq-body {
  padding: 0 24px 22px;
  font-size: 0.98rem;
  line-height: 1.68;
  color: var(--ea-text-sub);
}

/* ═══════════════════════════════════════════════════════
   13. RELATED RESOURCES (COMPACT GLASS CARDS)
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.editing-assets-detail-page .ea-related-card {
  padding: 22px 20px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 24px rgba(10, 16, 32, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.28s ease, box-shadow 0.28s ease;
}

.editing-assets-detail-page .ea-related-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 18px 40px rgba(10, 16, 32, 0.22), inset 0 1px 0 #ffffff;
}

.editing-assets-detail-page .ea-related-title {
  font-size: 1.05rem;
  font-weight: 750;
  color: #ffffff;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.editing-assets-detail-page .ea-related-arrow {
  color: var(--ea-accent-blue);
  font-size: 1.15rem;
  transition: transform 0.25s ease;
}

.editing-assets-detail-page .ea-related-card:hover .ea-related-arrow {
  transform: translateX(3px);
}

.editing-assets-detail-page .ea-related-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ea-text-muted);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════
   14. FINAL DOWNLOAD CTA BANNER
   ═══════════════════════════════════════════════════════ */
.editing-assets-detail-page .ea-final-cta {
  padding: 56px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.editing-assets-detail-page .ea-final-cta-title {
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin: 0;
}

.editing-assets-detail-page .ea-final-cta-sub {
  font-size: 1.05rem;
  color: var(--ea-text-sub);
  max-width: 600px;
  margin: 0;
}

.editing-assets-detail-page .ea-final-cta .ea-cta-btn {
  max-width: 320px;
}

/* ═══════════════════════════════════════════════════════
   15. RESPONSIVE BREAKPOINTS & MOBILE OPTIMIZATIONS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .editing-assets-detail-page .ea-hero {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .editing-assets-detail-page .ea-download-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .editing-assets-detail-page {
    padding: 0 16px 80px;
  }

  .editing-assets-detail-page .ea-glass-panel {
    border-radius: 20px;
    backdrop-filter: blur(14px) saturate(140%);
    -webkit-backdrop-filter: blur(14px) saturate(140%);
  }

  .editing-assets-detail-page .ea-section {
    padding: 26px 20px;
  }

  .editing-assets-detail-page .ea-download-panel {
    padding: 26px 20px;
  }

  .editing-assets-detail-page .ea-final-cta {
    padding: 40px 20px;
  }

  .editing-assets-detail-page .ea-included-grid,
  .editing-assets-detail-page .ea-features-grid,
  .editing-assets-detail-page .ea-steps-grid,
  .editing-assets-detail-page .ea-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .editing-assets-detail-page .ea-hero-title {
    font-size: 1.85rem;
  }

  .editing-assets-detail-page .ea-cta-btn {
    height: 56px;
    font-size: 0.98rem;
    padding-left: 18px;
  }

  .editing-assets-detail-page .ea-cta-arrow {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .editing-assets-detail-page .ea-spec-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .editing-assets-detail-page .ea-spec-val {
    text-align: left;
    max-width: 100%;
  }
}
