/*
 * EaseOfBiz Features — shared utility styles
 * Loaded only on pages that enqueue eob-features-css.
 * Keep this file minimal — component styles live in their own modules.
 */

/* ── Alpine.js cloak — hides un-initialised components ── */
[x-cloak] {
    display: none !important;
}

/* ── Focus ring — consistent across all interactive elements ── */
.eob-focus-ring:focus-visible {
    outline: 2px solid #6366f1;
    outline-offset: 2px;
}

/* ── Loading spinner ── */
.eob-spinner {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    animation: eob-spin 0.6s linear infinite;
}

@keyframes eob-spin {
    to { transform: rotate(360deg); }
}

/* ── Utility: visually hidden but accessible ── */
.eob-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── Handle claim panel ── */
.eob-handle-panel {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    max-width: 480px;
}

.eob-handle-panel__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.eob-handle-panel__claimed {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 1.1rem;
}

.eob-handle-panel__claimed .eob-handle-panel__note {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    color: #6b7280;
}

.eob-handle-panel__intro {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    color: #374151;
}

.eob-handle-panel__suggestions-label {
    font-size: 0.85rem;
    color: #6b7280;
    margin: 0 0 0.5rem;
}

.eob-handle-panel__suggestion-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.eob-handle-panel__suggestion-btn {
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
}

.eob-handle-panel__suggestion-btn:hover {
    border-color: #6366f1;
    background: #eef2ff;
}

.eob-handle-panel__input-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.eob-handle-panel__at {
    font-size: 1.1rem;
    font-weight: 600;
    color: #374151;
}

.eob-handle-panel__input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.15s;
}

.eob-handle-panel__input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99,102,241,0.15);
}

.eob-handle-panel__claim-btn {
    background: #6366f1;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.5rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s;
    display: flex;
    align-items: center;
    min-width: 80px;
    justify-content: center;
}

.eob-handle-panel__claim-btn:hover:not(:disabled) {
    background: #4f46e5;
}

.eob-handle-panel__claim-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.eob-handle-panel__error {
    color: #dc2626;
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
}

.eob-handle-panel__success {
    color: #16a34a;
    font-size: 0.875rem;
    margin: 0.25rem 0 0;
}

/* ── Profile page ── */
.eob-profile-page {
    max-width: 680px;
    margin: 0 auto;
    padding: 110px 1rem 2rem;
    font-family: 'Inter', sans-serif;
}

.eob-profile-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.eob-profile-avatar__img {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    display: block;
    border: 3px solid #e5e7eb;
}

.eob-profile-avatar__placeholder {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: #6366f1;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.eob-profile-identity__name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 0.25rem;
    color: #111827;
}

.eob-profile-identity__handle {
    font-size: 1rem;
    color: #6b7280;
    margin: 0 0 0.75rem;
}

.eob-profile-identity__badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: capitalize;
    background: #f3f4f6;
    color: #374151;
}

.eob-profile-identity__badge--creator     { background: #eef2ff; color: #4f46e5; }
.eob-profile-identity__badge--influencer  { background: #fdf4ff; color: #9333ea; }
.eob-profile-identity__badge--service_provider { background: #f0fdf4; color: #16a34a; }

.eob-profile-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0;
}

.eob-profile-meta__item {
    font-size: 0.9rem;
    color: #6b7280;
}

.eob-profile-bio {
    font-size: 0.95rem;
    color: #374151;
    line-height: 1.6;
    margin: 1rem 0;
    text-align: left;
}

.eob-profile-socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.25rem 0;
}

.eob-profile-socials__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.9rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    transition: border-color 0.15s, background 0.15s;
}

.eob-profile-socials__link:hover {
    border-color: #6366f1;
    background: #eef2ff;
    color: #4f46e5;
}

.eob-profile-canonical {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: #9ca3af;
}

.eob-profile-canonical a {
    color: #9ca3af;
    text-decoration: none;
}

/* -- Status badges (verified, premium) -- */
.eob-profile-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.eob-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.4;
    white-space: nowrap;
}

.eob-badge--verified {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe;
}

.eob-badge--premium {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a;
}
/* ==========================================================================
   EaseOfBiz Profile v4 CSS
   Replaces eob-features.css lines 335+
   Design: Dark futuristic micro-site — Syne + Instrument Sans
   ========================================================================== */

/* --------------------------------------------------------------------------
   BASE RESET — STANDALONE PROFILE
   -------------------------------------------------------------------------- */

body.eob-standalone-profile {
  margin: 0;
  padding: 0;
  background: #06060f;
  color: #f0ece3;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Kill all Blocksy chrome */
body.eob-standalone-profile .ct-header,
body.eob-standalone-profile .ct-footer,
body.eob-standalone-profile .site-header,
body.eob-standalone-profile .site-footer,
body.eob-standalone-profile #wpadminbar,
body.eob-standalone-profile .ct-container-full > .entry-header {
  display: none !important;
}

/* --------------------------------------------------------------------------
   THEME TOKENS
   -------------------------------------------------------------------------- */

.eob-pf-container.t-midnight {
  --t-bg: #06060f;
  --t-accent: #f59e0b;
  --t-glow: rgba(245, 158, 11, 0.2);
}

.eob-pf-container.t-ocean {
  --t-bg: #020f1a;
  --t-accent: #06b6d4;
  --t-glow: rgba(6, 182, 212, 0.2);
}

.eob-pf-container.t-ember {
  --t-bg: #0f0805;
  --t-accent: #ef4444;
  --t-glow: rgba(239, 68, 68, 0.2);
}

.eob-pf-container.t-frost {
  --t-bg: #04080f;
  --t-accent: #e0e7ff;
  --t-glow: rgba(224, 231, 255, 0.15);
}

.eob-pf-container.t-sage {
  --t-bg: #030f0a;
  --t-accent: #10b981;
  --t-glow: rgba(16, 185, 129, 0.2);
}

/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */

.eob-pf-container {
  width: 100%;
  background: var(--t-bg, #06060f);
  color: #f0ece3;
  min-height: 100vh;
  position: relative;
}

/* --------------------------------------------------------------------------
   STICKY BAR
   -------------------------------------------------------------------------- */

.eob-pf-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 56px;
  background: rgba(6, 6, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  z-index: 500;
  transform: translateY(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.eob-pf-sticky--visible {
  transform: translateY(0);
}

.eob-pf-sticky__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 100%;
}

.eob-pf-sticky__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.eob-pf-sticky__name {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  flex: 1;
  padding: 0 12px;
}

.eob-pf-sticky__cta {
  background: #f59e0b;
  color: #06060f;
  font-size: 12px;
  height: 32px;
  padding: 0 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background 0.2s;
}

.eob-pf-sticky__cta:hover {
  background: #fbbf24;
}

/* --------------------------------------------------------------------------
   HERO SECTION
   -------------------------------------------------------------------------- */

.eob-pf-hero {
  height: 65vh;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}

.eob-hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.swiper-slide-active .eob-hero-slide-bg {
  transform: scale(1);
}

.eob-pf-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(6, 6, 15, 0) 20%,
    rgba(6, 6, 15, 0.5) 60%,
    rgba(6, 6, 15, 0.98) 100%
  );
  z-index: 1;
}

.eob-pf-hero .swiper-slide {
  filter: brightness(0.15) saturate(0.2);
  transition: filter 0.9s ease;
}

.eob-pf-hero .swiper-slide-active {
  filter: brightness(1);
  transition: filter 0.9s ease;
}

.eob-pf-hero__text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 24px 130px;
  z-index: 2;
}

.eob-pf-hero__name {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}

.eob-pf-hero__handle {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 12px;
}

.eob-pf-hero__pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.eob-pf-hero__pill {
  background: rgba(245, 158, 11, 0.2);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #f5a623;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* Swiper pagination */
.eob-pf-hero .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  width: 6px;
  height: 6px;
}

.eob-pf-hero .swiper-pagination-bullet-active {
  background: #f59e0b;
  width: 20px;
  border-radius: 3px;
  transition: width 0.3s ease;
}

/* --------------------------------------------------------------------------
   IDENTITY SECTION
   -------------------------------------------------------------------------- */

.eob-pf-identity {
  margin-top: -80px;
  padding: 0 20px 0;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.eob-pf-avatar-wrap {
  position: relative;
  flex-shrink: 0;
}

.eob-pf-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #06060f;
  box-shadow: 0 0 0 2px #f59e0b, 0 0 30px rgba(245, 158, 11, 0.4);
  position: relative;
  z-index: 1;
  display: block;
}

.eob-pf-identity__meta {
  flex: 1;
  padding-bottom: 16px;
  min-width: 0;
}

.eob-pf-identity__name {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f0ece3;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.eob-pf-identity__handle {
  font-size: 0.8rem;
  color: #9494af;
  margin: 0 0 10px;
}

.eob-pf-identity__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.eob-pf-share-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f0ece3;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 20px;
  cursor: pointer;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  transition: all 0.2s ease;
}

.eob-pf-share-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.eob-pf-collab-inline-btn {
  background: #f59e0b;
  color: #06060f;
  font-size: 0.8rem;
  padding: 8px 18px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}

.eob-pf-collab-inline-btn:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.eob-pf-pills {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.eob-pf-pill {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #c0bcd4;
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 20px;
}

.eob-pf-tagline {
  font-size: 0.85rem;
  color: #9494af;
  margin: 0 0 8px;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   STATS BAR
   -------------------------------------------------------------------------- */

.eob-pf-stats-bar {
  display: flex;
  gap: 0;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eob-pf-stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.eob-pf-stat-item:last-child {
  border-right: none;
}

.eob-pf-stat-item:hover {
  opacity: 0.8;
}

.eob-pf-stat-count {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--t-accent, #f59e0b);
  line-height: 1;
  letter-spacing: -0.02em;
}

.eob-pf-stat-label {
  font-size: 0.7rem;
  color: #9494af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.eob-pf-stat-badge {
  font-size: 0.6rem;
  color: rgba(245, 158, 11, 0.7);
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* --------------------------------------------------------------------------
   SOCIALS ROW
   -------------------------------------------------------------------------- */

.eob-pf-soc-row {
  display: flex;
  gap: 10px;
  padding: 16px 20px;
  flex-wrap: wrap;
}

.eob-soc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #9494af;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  transition: all 0.2s ease;
}

.eob-soc-btn:hover {
  background: rgba(255, 255, 255, 0.09);
  color: #f0ece3;
  border-color: rgba(255, 255, 255, 0.15);
}

.eob-soc-btn.ig:hover {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.3);
}

.eob-soc-btn.yt:hover {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.3);
}

.eob-soc-btn.fb:hover {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.3);
}

.eob-soc-btn.li:hover {
  color: #0a66c2;
  border-color: rgba(10, 102, 194, 0.3);
}

.eob-soc-btn.tw:hover {
  color: #1da1f2;
  border-color: rgba(29, 161, 242, 0.3);
}

/* --------------------------------------------------------------------------
   SECTION BASE
   -------------------------------------------------------------------------- */

.eob-pf-section {
  padding: 28px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eob-pf-section-title {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #9494af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
}

/* --------------------------------------------------------------------------
   BIO
   -------------------------------------------------------------------------- */

.eob-pf-bio {
  font-size: 0.95rem;
  line-height: 1.75;
  color: #c8c4d8;
  max-width: 640px;
}

.eob-pf-bio a {
  color: var(--t-accent, #f59e0b);
  text-decoration: none;
}

.eob-pf-bio a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   GALLERY MASONRY
   -------------------------------------------------------------------------- */

.eob-pf-gallery-masonry {
  columns: 3;
  column-gap: 6px;
}

.eob-g-item-masonry {
  break-inside: avoid;
  margin-bottom: 6px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.eob-g-item-masonry::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: border-color 0.2s ease;
  pointer-events: none;
}

.eob-g-item-masonry:hover::after {
  border-color: var(--t-accent, #f59e0b);
}

.eob-g-lightbox-trigger {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.eob-g-item-masonry:hover .eob-g-lightbox-trigger {
  transform: scale(1.02);
}

/* --------------------------------------------------------------------------
   PRESS COVERAGE
   -------------------------------------------------------------------------- */

.eob-pf-press {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.eob-pf-press__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 16px;
  border-radius: 10px;
  text-decoration: none;
  color: #c8c4d8;
  font-size: 0.82rem;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.eob-pf-press__item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: #f0ece3;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   FILMOGRAPHY
   -------------------------------------------------------------------------- */

.eob-pf-filmography {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.eob-pf-film-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  transition: all 0.25s ease;
  cursor: default;
}

.eob-pf-film-card:hover {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.25);
  transform: translateY(-2px);
}

.eob-pf-film-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
  display: block;
}

.eob-pf-film-title {
  font-size: 0.82rem;
  color: #f0ece3;
  font-weight: 500;
  line-height: 1.4;
  font-family: 'Instrument Sans', system-ui, sans-serif;
}

/* --------------------------------------------------------------------------
   ATTRIBUTES
   -------------------------------------------------------------------------- */

.eob-pf-attributes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.eob-pf-attr-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 16px;
  min-width: 100px;
}

.eob-pf-attr-label {
  font-size: 0.65rem;
  color: #9494af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 4px;
}

.eob-pf-attr-value {
  font-size: 0.9rem;
  color: #f0ece3;
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   COLLAB CTA
   -------------------------------------------------------------------------- */

.eob-pf-collab-cta {
  padding: 40px 20px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.eob-pf-collab-heading {
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #f0ece3;
  margin: 0 0 8px;
}

.eob-pf-collab-sub {
  font-size: 0.9rem;
  color: #9494af;
  margin: 0 0 24px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.eob-pf-collab-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.eob-pf-collab-btn--primary {
  background: #f59e0b;
  color: #06060f;
  font-size: 0.9rem;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-family: 'Syne', system-ui, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.35);
}

.eob-pf-collab-btn--primary:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 158, 11, 0.5);
}

.eob-pf-collab-btn--secondary {
  background: transparent;
  color: #f0ece3;
  font-size: 0.9rem;
  padding: 13px 32px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.25s ease;
}

.eob-pf-collab-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

/* --------------------------------------------------------------------------
   PILL NAV (FIXED BOTTOM)
   -------------------------------------------------------------------------- */

.eob-pill-wrapper {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  gap: 4px;
  background: rgba(13, 13, 26, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 6px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
  overflow-x: auto;
}

.eob-pill-wrapper::-webkit-scrollbar {
  display: none;
}

.eob-pill-wrapper {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.eob-pill-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  padding: 7px 16px;
  border-radius: 24px;
  cursor: pointer;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.eob-pill-btn.active {
  background: #f0ece3;
  color: #06060f;
  font-weight: 600;
}

.eob-pill-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
}

/* --------------------------------------------------------------------------
   LIGHTBOX
   -------------------------------------------------------------------------- */

.eob-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.95);
  display: grid;
  place-items: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.eob-lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  font-size: 1.2rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eob-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

#eobLightboxImg {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

/* --------------------------------------------------------------------------
   EDIT ROW
   -------------------------------------------------------------------------- */

.eob-pf-edit-row {
  padding: 20px;
  text-align: center;
}

.eob-pf-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  color: #a78bfa;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  transition: all 0.2s ease;
}

.eob-pf-edit-btn:hover {
  background: rgba(124, 58, 237, 0.25);
  border-color: rgba(124, 58, 237, 0.5);
}

/* --------------------------------------------------------------------------
   RESPONSIVE — max-width: 640px
   -------------------------------------------------------------------------- */

@media (max-width: 640px) {
  .eob-pf-hero {
    height: 55vh;
    min-height: 300px;
  }

  .eob-pf-hero__text {
    padding-bottom: 110px;
  }

  .eob-pf-hero__name {
    font-size: 1.8rem;
  }

  .eob-pf-identity {
    margin-top: -60px;
  }

  .eob-pf-avatar {
    width: 110px;
    height: 110px;
  }

  .eob-pf-stats-bar {
    padding: 20px 12px;
  }

  .eob-pf-stat-count {
    font-size: 1.3rem;
  }

  .eob-pf-gallery-masonry {
    columns: 2;
  }

  .eob-pill-wrapper {
    bottom: 16px;
  }

  .eob-pf-section {
    padding: 20px 16px;
  }
}
/* =============================================================================
   EOB Profile Enhancements
   Append to existing profile CSS.
   Design: Deep Obsidian (#06060f) + Aurora gradients + Glassmorphism Bento
   ============================================================================= */

/* =============================================================================
   1. AURORA BACKGROUND
   ============================================================================= */

.eob-aurora {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.eob-aurora__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
}

.eob-aurora__blob--saffron {
  width: 70vw;
  height: 70vw;
  background: radial-gradient(ellipse, rgba(245, 158, 11, 0.18) 0%, transparent 70%);
  top: -10%;
  left: -20%;
  animation: auroraFloat1 20s ease-in-out infinite alternate;
}

.eob-aurora__blob--emerald {
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(16, 185, 129, 0.14) 0%, transparent 70%);
  bottom: 5%;
  right: -15%;
  animation: auroraFloat2 25s ease-in-out infinite alternate;
}

.eob-aurora__blob--violet {
  width: 40vw;
  height: 40vw;
  background: radial-gradient(ellipse, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  animation: auroraFloat3 18s ease-in-out infinite alternate;
}

@keyframes auroraFloat1 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(20vw, 15vh) scale(1.3); }
}

@keyframes auroraFloat2 {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-15vw, -20vh) scale(1.2); }
}

@keyframes auroraFloat3 {
  from { transform: translate(0, 0) scale(0.9); }
  to   { transform: translate(10vw, 10vh) scale(1.1); }
}

/* =============================================================================
   2. AVATAR PULSING NEON AURA
   ============================================================================= */

.eob-pf-avatar {
  animation: avatarAuraPulse 4s ease-in-out infinite;
}

@keyframes avatarAuraPulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(245, 158, 11, 0.9),
      0 0 0 6px rgba(245, 158, 11, 0.2),
      0 0 40px rgba(245, 158, 11, 0.3),
      0 0 80px rgba(245, 158, 11, 0.1);
  }
  50% {
    box-shadow:
      0 0 0 3px rgba(16, 185, 129, 0.9),
      0 0 0 6px rgba(16, 185, 129, 0.2),
      0 0 40px rgba(16, 185, 129, 0.3),
      0 0 80px rgba(16, 185, 129, 0.1);
  }
}

/* =============================================================================
   3. HOLOGRAPHIC TRUST BADGES
   ============================================================================= */

.eob-holo-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Base holographic badge */
.eob-holo-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Instrument Sans', system-ui, sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: default;
  overflow: hidden;
  /* Glass base */
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 1;
}

/* Holographic shimmer layer */
.eob-holo-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.7) 0%,
    rgba(16, 185, 129, 0.7) 20%,
    rgba(6, 182, 212, 0.7) 40%,
    rgba(124, 58, 237, 0.7) 60%,
    rgba(239, 68, 68, 0.7) 80%,
    rgba(245, 158, 11, 0.7) 100%
  );
  background-size: 300% 300%;
  animation: holoShimmer 3s linear infinite;
  mix-blend-mode: overlay;
  border-radius: inherit;
  opacity: 0.6;
}

/* Glint sweep */
.eob-holo-badge::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: holoGlint 4s ease-in-out infinite;
  border-radius: inherit;
}

@keyframes holoShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

@keyframes holoGlint {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

/* Hover: lift + glow */
.eob-holo-badge:hover,
.eob-holo-badge[data-active="true"] {
  transform: translateY(-2px) scale(1.05);
  box-shadow:
    0 6px 20px rgba(245, 158, 11, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.4);
}

/* Badge-specific accent colors for border */
.eob-holo-badge--verified {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.2);
}

.eob-holo-badge--ambassador {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 0 12px rgba(245, 158, 11, 0.3);
}

.eob-holo-badge--premium {
  border-color: rgba(124, 58, 237, 0.5);
  box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

/* Badge icon */
.eob-holo-badge__icon {
  font-size: 0.85rem;
  line-height: 1;
  position: relative;
  z-index: 1;
}

.eob-holo-badge__label {
  position: relative;
  z-index: 1;
}

/* Tooltip */
.eob-holo-badge__tip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(13, 13, 26, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #f0ece3;
  font-size: 0.7rem;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(10px);
  z-index: 100;
}

.eob-holo-badge__tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.12);
}

/* =============================================================================
   4. BENTO GRID + GLASSMORPHISM CARDS
   ============================================================================= */

/* Bento container */
.eob-bento-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px 12px 100px; /* bottom pad for pill nav */
  position: relative;
  z-index: 1;
}

/* Base glass card — all sections inside bento become cards */
.eob-bento-grid .eob-pf-section,
.eob-bento-grid .eob-pf-soc-row,
.eob-bento-grid > .eob-bento-wide {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 20px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  /* Remove the old border-top separator */
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
}

/* Inner light sheen on cards */
.eob-bento-grid .eob-pf-section::before,
.eob-bento-grid > .eob-bento-wide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  pointer-events: none;
}

/* Saffron accent tint on reach/stats card */
.eob-bento-grid #eob-sec-reach {
  background: rgba(245, 158, 11, 0.06);
  border-color: rgba(245, 158, 11, 0.12);
  grid-column: 1 / -1;
}

/* Full-width cards */
.eob-bento-grid #eob-sec-reach,
.eob-bento-grid .eob-pf-soc-row,
.eob-bento-grid #eob-sec-press,
.eob-bento-grid #eob-sec-credits,
.eob-bento-grid .eob-pf-collab-cta,
.eob-bento-grid > .eob-bento-wide {
  grid-column: 1 / -1;
}

/* Gallery spans 2 rows (tall card on right) */
.eob-bento-grid #eob-sec-gallery {
  grid-row: span 2;
}

/* Press coverage: emerald tint */
.eob-bento-grid #eob-sec-press {
  background: rgba(16, 185, 129, 0.04);
  border-color: rgba(16, 185, 129, 0.1);
}

/* Collab CTA: deeper glow */
.eob-bento-grid .eob-pf-collab-cta {
  background: radial-gradient(ellipse at center, rgba(245, 158, 11, 0.1) 0%, rgba(255, 255, 255, 0.03) 70%);
  border-color: rgba(245, 158, 11, 0.15);
}

/* Section title — tighter inside cards */
.eob-bento-grid .eob-pf-section-title {
  margin-bottom: 14px;
}

/* Socials row inside bento */
.eob-bento-grid .eob-pf-soc-row {
  padding: 16px 20px;
  gap: 8px;
}

/* =============================================================================
   5. QR SHARE CARD + REEL CARD GENERATOR
   ============================================================================= */

/* QR Code display */
.eob-qr-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  width: fit-content;
  margin: 0 auto;
}

.eob-qr-code {
  width: 120px;
  height: 120px;
  background: white;
  border-radius: 8px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eob-qr-code img {
  width: 100%;
  height: 100%;
  display: block;
}

.eob-qr-label {
  font-size: 0.7rem;
  color: #9494af;
  text-align: center;
  font-family: 'Instrument Sans', system-ui;
}

.eob-qr-url {
  font-size: 0.65rem;
  color: rgba(245, 158, 11, 0.8);
  font-family: monospace;
  word-break: break-all;
  text-align: center;
}

/* Share card modal */
.eob-sharecard-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.eob-sharecard-modal {
  width: 100%;
  max-width: 380px;
  background: rgba(13, 13, 26, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
}

.eob-sharecard-header {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.eob-sharecard-header h3 {
  font-family: 'Syne', system-ui;
  font-size: 0.95rem;
  font-weight: 700;
  color: #f0ece3;
  margin: 0;
}

.eob-sharecard-close {
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #f0ece3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.eob-sharecard-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

/* The visual reel card preview */
.eob-reel-card {
  margin: 20px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 340px;
  background: linear-gradient(160deg, #06060f 0%, #0d0d1a 50%, #13131f 100%);
}

.eob-reel-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}

.eob-reel-card__aurora-saffron {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at 30% 40%, rgba(245, 158, 11, 0.3) 0%, transparent 60%);
  animation: auroraFloat1 8s ease-in-out infinite alternate;
}

.eob-reel-card__aurora-emerald {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: radial-gradient(ellipse at 70% 60%, rgba(16, 185, 129, 0.2) 0%, transparent 60%);
  animation: auroraFloat2 10s ease-in-out infinite alternate;
}

.eob-reel-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  gap: 12px;
}

.eob-reel-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(245, 158, 11, 0.8);
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.4);
}

.eob-reel-card__name {
  font-family: 'Syne', system-ui;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.eob-reel-card__handle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.eob-reel-card__badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.eob-reel-card__qr {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 8px;
  padding: 6px;
  margin-top: 4px;
}

.eob-reel-card__qr img {
  width: 100%;
  height: 100%;
}

.eob-reel-card__tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  font-style: italic;
}

.eob-reel-card__brand {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Syne', system-ui;
}

/* Share action buttons */
.eob-sharecard-actions {
  padding: 0 20px 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.eob-sharecard-action-btn {
  flex: 1;
  min-width: 120px;
  padding: 11px 16px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-family: 'Instrument Sans', system-ui;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-align: center;
}

.eob-sharecard-action-btn--primary {
  background: #f59e0b;
  color: #06060f;
}

.eob-sharecard-action-btn--primary:hover {
  background: #fbbf24;
}

.eob-sharecard-action-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #f0ece3;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.eob-sharecard-action-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Share btn with QR icon */
.eob-pf-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.eob-pf-share-btn::before {
  content: '&#9638;';
  font-size: 0.8rem;
  opacity: 0.7;
}

/* =============================================================================
   6. BOTTOM PRODUCT DRAWER
   ============================================================================= */

.eob-product-drawer {
  position: fixed;
  bottom: 72px; /* above pill nav */
  left: 0;
  right: 0;
  z-index: 800;
  transform: translateY(calc(100% - 52px));
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.eob-product-drawer.open {
  transform: translateY(0);
}

.eob-product-drawer__handle {
  background: rgba(13, 13, 26, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px 20px 0 0;
  padding: 10px 20px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.eob-product-drawer__grip {
  width: 36px;
  height: 4px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.eob-product-drawer__label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Instrument Sans', system-ui;
  display: flex;
  align-items: center;
  gap: 6px;
}

.eob-product-drawer__label-count {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 10px;
  font-weight: 700;
}

.eob-product-drawer__body {
  background: rgba(13, 13, 26, 0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px;
  max-height: 50vh;
  overflow-y: auto;
}

.eob-product-drawer__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.eob-product-drawer__scroll::-webkit-scrollbar {
  display: none;
}

.eob-product-card {
  flex-shrink: 0;
  width: 140px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}

.eob-product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 158, 11, 0.3);
}

.eob-product-card__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.04);
}

.eob-product-card__body {
  padding: 10px;
}

.eob-product-card__name {
  font-size: 0.78rem;
  color: #f0ece3;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 4px;
}

.eob-product-card__price {
  font-size: 0.8rem;
  color: #f59e0b;
  font-weight: 700;
  font-family: 'Syne', system-ui;
}

/* =============================================================================
   7. RESPONSIVE OVERRIDES
   ============================================================================= */

@media (max-width: 480px) {
  .eob-bento-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 8px 90px;
  }

  .eob-bento-grid #eob-sec-gallery {
    grid-row: auto;
  }

  .eob-reel-card {
    max-height: 300px;
  }
}
