.preview-flag {
  background: #1c1917;
  color: #f6f0e4;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  text-align: center;
}

.preview-head {
  padding: 28px 0 8px;
}

.preview-head p {
  color: var(--muted);
  max-width: 62ch;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 48px;
}

.channel-grid a {
  display: block;
  text-decoration: none;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 20px;
  min-height: 180px;
}

.channel-grid strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.phone {
  width: min(390px, 100%);
  margin: 0 auto 32px;
  background: #111;
  border-radius: 32px;
  padding: 12px;
  box-shadow: var(--shadow);
}

.phone-screen {
  background: #efeae2;
  border-radius: 22px;
  overflow: hidden;
  min-height: 640px;
}

.wa-bar,
.ig-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  color: #fff;
}

.wa-bar { background: #075e54; }
.ig-bar { background: #111; }

.wa-bar img,
.ig-bar img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.wa-thread {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bubble {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: 10px 12px;
  font-size: 0.92rem;
  max-width: 92%;
  white-space: pre-wrap;
}

.bubble.out {
  align-self: flex-end;
  background: #d9fdd3;
  border-radius: 8px 8px 2px 8px;
}

.share-card {
  background: var(--paper);
  width: 100%;
  overflow: hidden;
}

.share-card .visual {
  height: 160px;
  display: grid;
  place-items: center;
  color: var(--paper);
  font-family: var(--display);
  font-size: 3rem;
  overflow: hidden;
}
.share-card .visual.photo {
  font-size: 0;
  background: var(--cream);
}
.share-card .visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.share-card .visual.yam { background: #6b3f24; }
.share-card .visual.cocoyam { background: #4c311f; }
.share-card .visual.plantain { background: #3f7a4c; }
.share-card .visual.fresh { background: #2f6b3a; }
.share-card .visual.eggs { background: #c8962a; color: var(--ink); }
.share-card .visual.honey { background: #163824; }
.share-card .visual.bundle { background: #1f4d32; }

/* Facebook page mockup */
.fb-shell {
  display: grid;
  grid-template-columns: minmax(260px, 320px) minmax(0, 680px);
  gap: 24px;
  align-items: start;
  padding-bottom: 64px;
}

.fb-page-card {
  background: #fff;
  border: 1px solid #dddfe2;
  border-radius: 10px;
  overflow: hidden;
  position: sticky;
  top: 16px;
}

.fb-cover {
  height: 140px;
  background: #173b2a;
}

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

.fb-page-identity {
  display: flex;
  gap: 12px;
  padding: 16px;
  align-items: center;
}

.fb-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-top: -36px;
  background: #fff;
}

.fb-page-identity h2 {
  margin: 0;
  font-size: 1.35rem;
}

.fb-page-identity p {
  margin: 2px 0 0;
  color: #65676b;
  font-size: 0.88rem;
}

.fb-meta-list {
  margin: 0;
  padding: 0 16px 16px;
  display: grid;
  gap: 10px;
}

.fb-meta-list div {
  display: grid;
  gap: 2px;
}

.fb-meta-list dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #8a8d91;
}

.fb-meta-list dd {
  margin: 0;
  font-size: 0.92rem;
}

.fb-feed {
  display: grid;
  gap: 14px;
}

.fb-post {
  background: #fff;
  border: 1px solid #dddfe2;
  border-radius: 10px;
  overflow: hidden;
}

.fb-post-head {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px 8px;
}

.fb-post-head img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.fb-post-head strong {
  display: block;
  font-size: 0.95rem;
}

.fb-post-head span {
  color: #65676b;
  font-size: 0.78rem;
}

.fb-caption {
  margin: 0;
  padding: 0 14px 12px;
  white-space: pre-wrap;
  font-size: 0.95rem;
  line-height: 1.45;
}

.fb-media {
  background: #f0f2f5;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.fb-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
}

.fb-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
  color: #65676b;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 0;
}

@media (max-width: 900px) {
  .fb-shell {
    grid-template-columns: 1fr;
  }
  .fb-page-card {
    position: static;
  }
}

.share-card .body {
  padding: 14px;
}

.share-card .meta,
.share-card .blurb {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}
.share-card .save {
  color: var(--leaf);
  font-size: 0.85rem;
}

.share-card .price {
  font-family: var(--display);
  font-size: 1.6rem;
  margin: 8px 0;
}

.cta-line {
  display: block;
  margin-top: 8px;
  background: var(--forest);
  color: var(--paper);
  text-align: center;
  padding: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ig-feed {
  background: #fafafa;
}

.ig-post {
  background: #fff;
  border-bottom: 1px solid #ddd;
}

.ig-post .visual {
  height: 280px;
}

.ig-caption {
  padding: 12px;
  font-size: 0.9rem;
}

.caption-list {
  display: grid;
  gap: 16px;
  max-width: 640px;
}

.caption-list article {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 16px;
}

.caption-list h3 {
  margin-top: 0;
}

.cards-sheet {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  padding-bottom: 48px;
}

.layout-split {
  display: grid;
  grid-template-columns: minmax(280px, 400px) 1fr;
  gap: 28px;
  align-items: start;
  padding-bottom: 48px;
}

@media (max-width: 800px) {
  .layout-split { grid-template-columns: 1fr; }
}
