/* ── Subscription mock — dark glass on forest green ──────── */
.mock {
  width: 100%;
  background: rgba(250,247,238,0.07);
  border: 1px solid rgba(250,247,238,0.14);
  border-radius: 18px;
  padding: 28px;
}

.mock-product {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(250,247,238,0.12);
}
.mock-product-img {
  width: 68px;
  height: 68px;
  background: rgba(250,247,238,0.09);
  border: 1px solid rgba(250,247,238,0.12);
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mock-product .mock-title {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: #F2C744;
  margin-bottom: 5px;
}
.mock-product-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(250,247,238,0.95);
  line-height: 1.2;
}
.mock-product-freq {
  font-size: 0.78rem;
  color: rgba(250,247,238,0.55);
  margin-top: 3px;
}

.mock-title {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(250,247,238,0.55);
  margin-bottom: 4px;
}

/* Dark mock rows (homepage, nested in .mock) */
.mock .mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(250,247,238,0.10);
}
.mock .mock-row:last-child { border-bottom: none; }
.mock .mock-row > span:first-child { color: rgba(250,247,238,0.65); }
.mock .mock-row > span:last-child  { color: rgba(250,247,238,0.95); font-weight: 600; }

/* Light mock rows (subscriptions page) */
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  font-size: 13.5px;
  border-bottom: 1px solid rgba(32,38,31,0.10);
}
.mock-row:last-child { border-bottom: none; }
.mock-row > span:first-child { color: #5B6459; display: flex; align-items: center; gap: 8px; }
.mock-row > span:last-child  { color: #20261F; font-weight: 600; }

.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  background: rgba(32,38,31,0.08);
  color: #5B6459;
}
.pill.next   { background: #F2C744; color: #3D2800; }
.pill.active { background: #9FD956; color: #1a2e0d; }

/* ── Checkout block list — light theme ───────────────────── */
.block-list {
  width: 100%;
  background: transparent;
  border-radius: 1rem;
  padding: 0;
}
.block-list .mock-title {
  color: #5B6459;
  padding: 0 0.25rem 0.75rem;
}
.block-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: #FAF7EE;
  border: 1px solid rgba(32,38,31,0.11);
  border-radius: 0.875rem;
  padding: 0.9rem 1rem;
  margin-bottom: 0.5rem;
  cursor: grab;
  transition: background 0.15s, box-shadow 0.15s;
  box-shadow: 0 1px 3px rgba(32,38,31,0.05);
}
.block-row:last-child { margin-bottom: 0; }
.block-row:hover {
  background: #F2EEE0;
  box-shadow: 0 3px 10px rgba(32,38,31,0.09);
}
.block-row .drag {
  color: rgba(32,38,31,0.22);
  letter-spacing: -1px;
  user-select: none;
  font-size: 1rem;
  flex-shrink: 0;
}
.block-row .label {
  flex: 1;
  color: #20261F;
  font-size: 0.875rem;
  font-weight: 500;
}
.block-row.off .label { color: #5B6459; }
.block-row .pill {
  border-radius: 6px;
  padding: 3px 10px;
  background: rgba(32,38,31,0.07);
  color: #5B6459;
}
.block-row .pill.active {
  background: #9FD956;
  color: #1a2e0d;
}

/* ── Mobile overlay menu ── */
.mob-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  background: #1F3B2C;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.mob-overlay.open { opacity: 1; transform: translateY(0); pointer-events: auto; }

.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: #20261F;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.18s ease;
}
.is-open .ham-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.is-open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.is-open .ham-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WordPress admin bar offset */
.admin-bar .sticky.top-0 { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .sticky.top-0 { top: 46px; }
}

.entry-content a {
  color: #1F3B2C;
  text-underline-offset: 2px;
}
.entry-content p + p { margin-top: 1rem; }
.entry-content h2,
.entry-content h3 {
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
