/* css/dailyEdit.css — Daily Edit magazine styles.
   Extracted from dailyEdit.js _injectStyles() (loaded via <link> in index.html). */
      /* ── Base ── */
      .de-magazine {
        width: 100%;
        background: #000;
        min-height: calc(100vh - var(--bnav-h, 76px));
        padding-bottom: 60px;
      }

      /* ── Pull-to-refresh indicator ── */
      .de-ptr {
        position: sticky; top: 0; z-index: 10;
        text-align: center; padding: 8px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 600; letter-spacing: .04em;
        color: rgba(255,255,255,.5); opacity: 0; pointer-events: none;
        transition: transform .2s ease, opacity .2s ease;
      }

      /* ── Ticker ── */
      .de-ticker {
        overflow: hidden;
        padding: 9px 0; white-space: nowrap;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .de-ticker-inner {
        display: inline-block;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 9px; font-weight: 500;
        letter-spacing: .18em; text-transform: uppercase;
        color: rgba(255,255,255,.28);
        animation: de-ticker-scroll 90s linear infinite;
        will-change: transform;
      }
      @keyframes de-ticker-scroll {
        from { transform: translateX(0); }
        to   { transform: translateX(-50%); }
      }

      /* ── Masthead ── */
      .de-masthead {
        padding: 22px 20px 20px;
        border-bottom: 1px solid rgba(255,255,255,.07);
      }
      .de-masthead-eyebrow {
        display: flex; align-items: center; gap: 5px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 600;
        letter-spacing: .12em; text-transform: uppercase;
        color: #e8834a; margin-bottom: 12px;
      }
      .de-masthead-logo {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 44px; font-weight: 700;
        letter-spacing: -.02em; line-height: .92;
        color: #fff; margin-bottom: 8px;
      }
      .de-masthead-tagline {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 15px;
        color: rgba(255,255,255,.32); margin-bottom: 16px;
      }
      .de-masthead-meta-row {
        display: flex; align-items: center; gap: 8px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 400;
        color: rgba(255,255,255,.28);
      }
      .de-masthead-dot { color: rgba(255,255,255,.18); }
      .de-masthead-countdown { color: #e8834a; font-weight: 600; }

      /* ── Theme band ── */
      .de-theme-band {
        background: #111;
        padding: 16px 20px 18px;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .de-theme-band-inner { display: flex; flex-direction: column; gap: 5px; }
      .de-theme-band-label {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
        color: rgba(255,255,255,.38);
      }
      .de-theme-band-tagline {
        font-family: 'Cormorant Garamond',serif;
        font-size: 24px; font-weight: 700; line-height: 1.1;
        color: rgba(255,255,255,.92);
      }
      .de-theme-band-mood {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 13px;
        color: rgba(255,255,255,.38); margin-top: 2px;
      }

      /* ── Image fallback ── */
      .de-img-fallback {
        width: 100%; height: 100%;
        background: #1c1c1e;
        display: flex; flex-direction: column;
        align-items: center; justify-content: flex-end;
        padding: 20px 16px; gap: 6px;
      }
      .de-img-fallback-vibe {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
        color: rgba(255,255,255,.4);
      }
      .de-img-fallback-title {
        font-family: 'Cormorant Garamond',serif;
        font-size: 18px; font-weight: 600; line-height: 1.2;
        color: rgba(255,255,255,.6); text-align: center;
      }

      /* ── Hero — cinematic full-viewport cover ── */
      .de-hero-wrap { width: 100%; }
      .de-hero-canvas {
        position: relative;
        width: 100%;
        height: calc(100dvh - var(--bnav-h, 76px) - 54px);
        min-height: 520px;
        background: #111;
        overflow: hidden;
      }
      .de-hero-canvas--secondary {
        height: 58dvh;
        min-height: 360px;
      }
      .de-hero-canvas-img {
        position: absolute; inset: 0;
        width: 100%; height: 100%;
        object-fit: cover; object-position: center 20%;
        display: block;
        transform-origin: center top;
        will-change: transform;
      }
      .de-hero-canvas-ph {
        position: absolute; inset: 0;
        background: #1c1c1e;
      }
      .de-hero-canvas-gradient {
        position: absolute; inset: 0; pointer-events: none;
        background: linear-gradient(to bottom,
          rgba(0,0,0,.38) 0%,
          transparent 20%,
          transparent 42%,
          rgba(0,0,0,.28) 62%,
          rgba(0,0,0,.96) 100%);
      }
      .de-hero-canvas-top {
        position: absolute; top: 18px; left: 18px; z-index: 4;
      }
      .de-hero-issue-badge {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
        color: #000; background: #fff;
        border-radius: 6px; padding: 5px 12px;
      }
      .de-hero-personal-context {
        display: block; margin-top: 6px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 400;
        color: rgba(255,255,255,.45);
      }
      .de-hero-canvas-bottom {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 0 20px 28px; z-index: 4;
      }
      .de-hero-canvas-vibe {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 600; letter-spacing: .14em;
        text-transform: uppercase; margin-bottom: 10px;
        color: rgba(255,255,255,.65); display: block;
      }
      .de-hero-canvas-title {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 52px; font-weight: 700;
        line-height: .95; letter-spacing: -.02em;
        color: #fff;
        margin: 0 0 14px;
      }
      .de-hero-canvas-sub {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 17px; line-height: 1.45;
        color: rgba(255,255,255,.58);
        margin: 0 0 16px;
      }
      .de-hero-canvas-tryon {
        display: inline-flex; align-items: center; gap: 8px;
        padding: 13px 22px; border-radius: 14px;
        font-family: -apple-system,'Inter',sans-serif; font-size: 15px; font-weight: 600;
        background: #e8834a; color: #fff; border: none; cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease;
      }
      .de-hero-canvas-tryon:active { opacity: .78; }
      .de-hero-scroll-cue {
        display: flex; justify-content: center;
        animation: de-hero-bob 2.2s ease-in-out infinite;
        margin-top: 4px;
      }
      @keyframes de-hero-bob {
        0%, 100% { transform: translateY(0); opacity: .38; }
        50%       { transform: translateY(5px); opacity: .65; }
      }

      /* ── Story reading panel ── */
      .de-hero-story-panel {
        background: #000;
        padding: 0 0 8px;
      }
      .de-hero-story-inner {
        padding: 32px 20px 30px;
        border-bottom: 1px solid rgba(255,255,255,.07);
      }
      .de-hero-story-eyebrow {
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 12px;
      }
      .de-hero-story-label {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
        color: #e8834a;
      }
      .de-hero-story-brand {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 400;
        color: rgba(255,255,255,.3);
      }
      .de-hero-story-body {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 19px; line-height: 1.65;
        color: rgba(255,255,255,.68);
        margin: 0 0 22px;
      }
      .de-hero-tags-row { display:flex; flex-wrap:wrap; gap:6px; margin-bottom: 20px; }
      .de-hero-tag {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 500;
        color: rgba(255,255,255,.5);
        background: rgba(255,255,255,.07);
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 8px; padding: 5px 12px;
      }
      .de-hero-story-meta {
        display: flex; align-items: center; gap: 6px;
        font-family: -apple-system,'Inter',sans-serif; font-size: 11px;
        color: rgba(255,255,255,.25); margin-bottom: 26px;
      }
      .de-hero-story-actions {
        display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
      }
      .de-hero-action-primary {
        display: inline-flex; align-items: center; gap: 7px;
        padding: 13px 22px; border-radius: 14px;
        font-family: -apple-system,'Inter',sans-serif; font-size: 15px; font-weight: 600;
        background: #e8834a; color: #fff; border: none; cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease; flex-shrink: 0;
      }
      .de-hero-action-primary:active { opacity: .78; }
      .de-hero-action-shop {
        display: inline-flex; align-items: center; gap: 5px;
        padding: 13px 18px; border-radius: 14px;
        font-family: -apple-system,'Inter',sans-serif; font-size: 14px; font-weight: 600;
        color: #fff; background: rgba(255,255,255,.12);
        border: none; text-decoration: none; cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease; flex-shrink: 0;
      }
      .de-hero-action-shop:active { opacity: .72; }
      .de-hero-action-icon {
        width: 48px; height: 48px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 14px; border: none;
        background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
        cursor: pointer; -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease; flex-shrink: 0;
      }
      .de-hero-action-icon:active { opacity: .65; }
      .de-hero-action-icon--save.de-saved {
        background: rgba(232,131,74,.2); color: #e8834a;
      }

      /* ── Skeleton loaders ── */
      .de-skeleton-wrap { padding-bottom: 40px; }
      .de-skeleton {
        background: linear-gradient(90deg, #1c1c1e 25%, #2c2c2e 50%, #1c1c1e 75%);
        background-size: 200% 100%;
        animation: de-shimmer 1.6s infinite;
        border-radius: 12px;
      }
      @keyframes de-shimmer { to { background-position: -200% 0; } }
      .de-skeleton--ticker  { height: 30px; border-radius: 0; margin-bottom: 1px; }
      .de-skeleton--masthead{ height: 120px; border-radius: 0; margin-bottom: 1px; }
      .de-skeleton--hero    { height: 440px; border-radius: 0; }
      .de-skeleton--card    { height: 260px; }

      /* ── Section header — Apple editorial ── */
      .de-section-hdr {
        padding: 34px 20px 14px;
        display: flex; align-items: baseline;
        justify-content: space-between;
      }
      .de-section-label {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 22px; font-weight: 700;
        letter-spacing: -.02em;
        color: rgba(255,255,255,.92);
      }
      .de-section-sub {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 13px; font-weight: 400;
        color: rgba(255,255,255,.32);
      }

      /* ── Editorial stack (full-width single-column) ── */
      .de-stack {
        display: flex; flex-direction: column;
        gap: 2px; padding: 0 0 4px;
      }
      .de-seen-divider {
        display: flex; align-items: center; gap: 12px;
        padding: 24px 20px 10px; margin: 0 16px;
      }
      .de-seen-divider::before, .de-seen-divider::after {
        content: ''; flex: 1; height: 1px;
        background: rgba(255,255,255,.08);
      }
      .de-seen-divider span {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 600; letter-spacing: .1em;
        text-transform: uppercase; white-space: nowrap;
        color: rgba(255,255,255,.2);
      }
      .de-ec {
        position: relative; overflow: hidden;
        background: #1c1c1e;
        width: 100%;
        height: 72dvh; height: 72vh; min-height: 440px;
        transition: opacity .18s ease;
        will-change: transform;
      }
      .de-ec:active { opacity: .9; }
      .de-ec--short {
        height: 48dvh; height: 48vh; min-height: 320px;
      }
      .de-ec--feature {
        border-top: 1px solid rgba(232,131,74,.45);
        border-bottom: 1px solid rgba(232,131,74,.45);
      }
      .de-ec--feature .de-ec-section-label {
        color: #e8834a; letter-spacing: .22em;
      }
      .de-ec--feature .de-ec-title {
        font-size: 44px; line-height: 1.02;
      }
      .de-stack { gap: 0; }
      .de-stack .de-ec + .de-ec { margin-top: 2px; }
      .de-ec-meta-row {
        display: flex; align-items: baseline; gap: 10px;
        margin-bottom: 2px;
      }
      .de-ec-brand {
        font-family: -apple-system,'Inter',sans-serif; font-size: 11px; font-weight: 500;
        letter-spacing: .04em; color: rgba(255,255,255,.6);
      }
      .de-stack-intro {
        display: flex; flex-direction: column; gap: 4px;
        padding: 34px 24px 18px; background: #000;
      }
      .de-stack-intro-rule {
        width: 28px; height: 2px; background: #e8834a; margin-bottom: 6px;
      }
      .de-stack-intro-label {
        font-family: 'Cormorant Garamond',serif; font-size: 26px; font-weight: 700;
        color: rgba(255,255,255,.92); line-height: 1.05;
      }
      .de-stack-intro-sub {
        font-family: -apple-system,'Inter',sans-serif; font-size: 13px;
        color: rgba(255,255,255,.5); font-style: italic;
      }
      .de-detail-pager {
        display: flex; align-items: center; justify-content: center; gap: 8px;
        margin-top: 18px; padding-bottom: 6px;
        font-family: -apple-system,'Inter',sans-serif; font-size: 11px;
        letter-spacing: .12em; text-transform: uppercase;
        color: rgba(255,255,255,.35);
      }
      .de-detail-pager-mid { color: rgba(255,255,255,.2); }
      .de-countdown--live { color: #e8834a; font-weight: 600; }
      .de-ec img, .de-ec video {
        position: absolute; inset: 0;
        width: 100%; height: 100%; object-fit: cover;
        display: block; will-change: transform;
      }
      .de-img-fallback {
        position: absolute; inset: 0;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center; gap: 8px;
        background: #1c1c1e;
      }
      .de-img-fallback-vibe {
        font-family: -apple-system,'Inter',sans-serif; font-size: 9px; font-weight: 600;
        letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.38);
      }
      .de-img-fallback-title {
        font-family: 'Cormorant Garamond',serif; font-size: 20px; font-weight: 700;
        color: rgba(255,255,255,.55); text-align: center; padding: 0 20px;
      }
      .de-ec-gradient {
        position: absolute; inset: 0; pointer-events: none;
        background: linear-gradient(to bottom,
          transparent 0%,
          transparent 28%,
          rgba(0,0,0,.18) 52%,
          rgba(0,0,0,.92) 100%);
      }
      .de-ec-content {
        position: absolute; bottom: 0; left: 0; right: 0;
        padding: 24px 24px 32px; z-index: 2;
      }
      .de-ec-section-label {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
        color: rgba(255,255,255,.3); margin-bottom: 6px; display: block;
      }
      /* "Why you're seeing this" */
      .de-ec-why {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 600; letter-spacing: .01em;
        color: rgba(232,131,74,.85); margin-bottom: 10px;
        display: inline-flex; align-items: center; gap: 5px;
      }
      .de-ec-why::before { content: '✦'; opacity: .8; font-size: 9px; }
      /* "Not me" dismiss */
      .de-ec-notme {
        position: absolute; top: 14px; right: 14px; z-index: 4;
        width: 30px; height: 30px; border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        background: rgba(0,0,0,.42); backdrop-filter: blur(8px);
        border: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.7);
        cursor: pointer; transition: background .18s ease, transform .18s ease;
        -webkit-tap-highlight-color: transparent;
      }
      .de-ec-notme:active { transform: scale(.88); background: rgba(0,0,0,.6); }
      .de-ec--dismissed { opacity: 0; transform: scale(.96); transition: opacity .3s ease, transform .3s ease; }
      .de-ec-vibe {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
        margin-bottom: 10px; display: block;
      }
      .de-ec-title {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 34px; font-weight: 700; line-height: 1.05; letter-spacing: -.01em;
        color: rgba(255,255,255,.96);
        margin-bottom: 12px;
      }
      .de-ec-subtitle {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-style: italic; font-size: 19px; line-height: 1.3;
        color: rgba(255,255,255,.82); margin: -4px 0 12px;
      }
      .de-ec-story {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 16px; line-height: 1.6;
        color: rgba(255,255,255,.55);
        margin: 0 0 14px;
      }
      .de-ec-credit {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 9px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
        color: rgba(255,255,255,.32); margin: 0 0 14px;
      }
      .de-ec-actions {
        display: flex; align-items: center; gap: 10px; margin-top: 4px;
      }
      .de-ec-tryon {
        display: inline-flex; align-items: center; gap: 6px;
        display: inline-flex; align-items: center; justify-content: center;
        color: #e8834a; background: none; border: none;
        padding: 6px; cursor: pointer; line-height: 0;
        transition: transform .12s ease, opacity .18s ease;
        -webkit-tap-highlight-color: transparent;
      }
      .de-ec-tryon svg { width: 26px; height: 26px; }
      .de-ec-tryon:active { transform: scale(.88); opacity: .7; }
      .de-ec-shop {
        display: inline-flex; align-items: center;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 13px; font-weight: 600; letter-spacing: .01em;
        color: rgba(255,255,255,.92); text-decoration: none;
        background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18);
        border-radius: 999px; padding: 10px 16px;
        -webkit-tap-highlight-color: transparent;
      }
      .de-ec-shop:active { background: rgba(255,255,255,.18); }
      .de-ec-tap-hint {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 600; letter-spacing: .04em;
        color: rgba(255,255,255,.3); margin-left: auto;
      }

      /* ── Compact card — sections/products without a generated editorial image.
         Text-forward with a small product thumbnail on the side. ── */
      .de-ec--compact {
        position: relative; display: flex; gap: 14px; align-items: flex-start;
        background: #141414; border: 1px solid rgba(255,255,255,.07);
        border-radius: 18px; padding: 16px; margin: 0 16px 14px; cursor: pointer;
        height: auto; min-height: 0; overflow: visible;
      }
      .de-ec--compact .de-ec-compact-body { flex: 1; min-width: 0; }
      .de-ec--compact .de-ec-section-label {
        position: static; font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
      }
      .de-ec-compact-title {
        font-family: 'Cormorant Garamond', Georgia, serif;
        font-size: 20px; font-weight: 400; line-height: 1.22; color: #F5F2EC; margin: 5px 0 0;
      }
      .de-ec-compact-story {
        font-size: 12.5px; color: rgba(255,255,255,.5); line-height: 1.55; margin-top: 7px;
        display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
      }
      .de-ec--compact .de-ec-actions {
        position: static; display: flex; align-items: center; gap: 8px; margin-top: 12px; padding: 0;
      }
      .de-ec--compact .de-ec-shop { padding: 7px 13px; font-size: 12px; }
      .de-ec-compact-thumb { flex-shrink: 0; width: 78px; }
      .de-ec-compact-thumb img {
        position: static; inset: auto;
        width: 78px; height: 100px; object-fit: cover; border-radius: 10px;
        border: 1px solid rgba(255,255,255,.08); background: #242424; display: block;
      }

      /* ── Detail sheet ── */
      .de-detail-sheet {
        /* position/size set via inline style to beat all overrides */
        pointer-events: auto;
      }
      .de-detail-backdrop {
        position: absolute; inset: 0;
        background: rgba(0,0,0,.72);
        opacity: 0; transition: opacity .32s ease;
        -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
      }
      .de-detail-sheet--open .de-detail-backdrop { opacity: 1; }
      .de-detail-panel {
        position: absolute; bottom: 0; left: 0; right: 0;
        max-height: 95dvh; max-height: 95vh;
        background: #111;
        border-radius: 24px 24px 0 0;
        overflow-y: auto; -webkit-overflow-scrolling: touch;
        transform: translateY(100%);
        transition: transform .38s cubic-bezier(.32,1,.23,1);
        will-change: transform;
      }
      .de-detail-sheet--open .de-detail-panel { transform: translateY(0); }
      .de-detail-handle-bar {
        width: 36px; height: 4px;
        background: rgba(255,255,255,.18); border-radius: 2px;
        margin: 12px auto 0;
      }
      .de-detail-img-wrap {
        position: relative; width: 100%;
        height: 56dvh; height: 56vh; min-height: 280px;
        overflow: hidden; background: #1a1a1a;
      }
      .de-detail-img {
        width: 100%; height: 100%; object-fit: cover;
        display: block;
      }
      .de-detail-img-ph {
        width: 100%; height: 100%;
        background: linear-gradient(160deg,#1c1c1e 0%,#2a2a2c 100%);
      }
      .de-detail-close {
        position: absolute; top: 14px; right: 14px;
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        border-radius: 50%; border: none;
        background: rgba(0,0,0,.55); color: #fff;
        cursor: pointer; -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease;
      }
      .de-detail-close:active { opacity: .65; }
      .de-detail-body {
        padding: 20px 20px 40px;
        padding-bottom: calc(40px + env(safe-area-inset-bottom));
      }
      .de-detail-badge {
        display: inline-block;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
        color: #e8834a;
        background: rgba(232,131,74,.1);
        border: 1px solid rgba(232,131,74,.25);
        border-radius: 8px; padding: 4px 10px;
        margin-bottom: 14px;
      }
      .de-detail-eyebrow {
        display: flex; align-items: baseline; gap: 10px;
        margin-bottom: 6px;
      }
      .de-detail-vibe {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      }
      .de-detail-brand {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 12px; font-weight: 500;
        color: rgba(255,255,255,.4);
      }
      .de-detail-title {
        font-family: 'Cormorant Garamond',serif;
        font-size: 26px; font-weight: 500; line-height: 1.25;
        color: #fff; margin: 0 0 16px;
      }
      .de-detail-story p {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 15px; line-height: 1.65;
        color: rgba(255,255,255,.62);
        margin: 0 0 14px;
      }
      .de-detail-story p:last-child { margin-bottom: 0; }
      .de-detail-tags {
        display: flex; flex-wrap: wrap; gap: 6px;
        margin: 18px 0 0;
      }
      .de-detail-tag {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 500;
        color: rgba(255,255,255,.38);
        background: rgba(255,255,255,.06);
        border-radius: 8px; padding: 5px 10px;
      }
      .de-detail-actions {
        display: flex; align-items: center; gap: 10px;
        margin-top: 28px; flex-wrap: wrap;
      }
      .de-detail-tryon {
        display: inline-flex; align-items: center; gap: 8px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 15px; font-weight: 600;
        color: #fff; background: #e8834a;
        border: none; border-radius: 14px; padding: 14px 24px;
        cursor: pointer; -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease; flex: 1; justify-content: center;
      }
      .de-detail-tryon:active { opacity: .75; }
      .de-detail-shop {
        display: inline-flex; align-items: center;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 13px; font-weight: 600;
        color: rgba(255,255,255,.8); background: rgba(255,255,255,.1);
        border: none; border-radius: 14px; padding: 14px 18px;
        text-decoration: none; cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease;
      }
      .de-detail-shop:active { opacity: .7; }
      /* ── Shoppable product card ──────────────────────────────────────── */
      .de-shop-block { margin: 2px 0 4px; }
      .de-shop-card {
        display: flex; align-items: center; gap: 12px;
        padding: 10px; border-radius: 16px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.09);
        cursor: pointer; -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease, transform .14s ease;
      }
      .de-shop-card:active { opacity: .85; transform: scale(.99); }
      .de-shop-thumb {
        width: 54px; height: 70px; flex-shrink: 0;
        object-fit: cover; border-radius: 10px;
        background: rgba(255,255,255,.08);
      }
      .de-shop-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
      .de-shop-brand {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
        color: rgba(255,255,255,.5);
      }
      .de-shop-name {
        font-family: -apple-system,'Inter',sans-serif; font-size: 14px; font-weight: 500;
        color: #fff; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
      }
      .de-shop-price {
        font-family: -apple-system,'Inter',sans-serif; font-size: 13px; font-weight: 600;
        color: rgba(255,255,255,.85);
      }
      .de-shop-cta {
        flex-shrink: 0; align-self: center;
        font-family: -apple-system,'Inter',sans-serif; font-size: 13px; font-weight: 600;
        color: #0a0a0a; background: #e8834a;
        padding: 11px 15px; border-radius: 12px; white-space: nowrap;
      }
      .de-shop-disclosure {
        font-family: -apple-system,'Inter',sans-serif; font-size: 10px;
        color: rgba(255,255,255,.4); margin: 6px 2px 0; letter-spacing: .02em;
      }
      .de-detail-save, .de-detail-share {
        width: 48px; height: 48px; flex-shrink: 0;
        display: flex; align-items: center; justify-content: center;
        border-radius: 14px; border: none;
        background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
        cursor: pointer; -webkit-tap-highlight-color: transparent;
        transition: opacity .14s ease;
      }
      .de-detail-save:active, .de-detail-share:active { opacity: .65; }
      .de-detail-save.de-saved { background: rgba(232,131,74,.2); color: #e8834a; }

      /* ── Pull-quote — full-bleed atmospheric ── */
      /* ── Pull-quote — Apple editorial interstitial ── */
      .de-pullquote {
        margin: 20px 16px;
        padding: 40px 24px 36px;
        background: #1c1c1e;
        border-radius: 24px;
        text-align: left;
      }
      .de-pq-inner { position: relative; }
      .de-pq-open-mark {
        font-family: 'Cormorant Garamond',serif;
        font-size: 64px; line-height: .7;
        color: rgba(255,255,255,.12);
        display: block; margin-bottom: 8px;
      }
      .de-pq-text {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 22px; line-height: 1.5;
        color: rgba(255,255,255,.82);
        letter-spacing: -.01em;
      }
      .de-pq-author {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 500; letter-spacing: .06em;
        color: rgba(255,255,255,.3);
        margin-top: 18px; display: block;
      }

      /* ── Legacy stubs ── */
      .de-grid { display: flex; flex-direction: column; gap: 10px; }
      .de-feature { display: contents; }

      /* ── Footer ── */
      /* ── Personal cover — the "made for you, today" opener ── */
      .de-pcover {
        padding: 30px 24px 22px;
        border-bottom: 1px solid rgba(255,255,255,.06);
      }
      .de-pcover-eyebrow {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
        color: rgba(232,131,74,.85); margin-bottom: 12px;
      }
      .de-pcover-title {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 40px; font-weight: 700; line-height: 1.04; letter-spacing: -.015em;
        color: rgba(255,255,255,.97); margin: 0 0 12px;
      }
      .de-pcover-accent { font-style: italic; color: #e8834a; }
      .de-pcover-context {
        font-family: 'Cormorant Garamond',serif; font-style: italic;
        font-size: 17px; line-height: 1.5; color: rgba(255,255,255,.55); margin: 0;
      }
      .de-pcover-streak {
        display: inline-block; margin-top: 16px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 12px; font-weight: 700; letter-spacing: .02em;
        color: rgba(255,255,255,.85);
        background: rgba(232,131,74,.14); border: 1px solid rgba(232,131,74,.3);
        padding: 6px 12px; border-radius: 999px;
      }
      /* ── Concierge brief — daily, life-aware modules ── */
      .de-concierge-section { padding: 28px 16px 8px; }
      .de-concierge-section-hdr {
        display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
        padding: 0 8px; margin-bottom: 16px;
      }
      .de-concierge-section-label {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 26px; font-weight: 700; color: rgba(255,255,255,.95);
      }
      .de-concierge-section-sub {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 12px; font-weight: 500; color: rgba(255,255,255,.4);
      }
      .de-concierge {
        border-radius: 18px; margin-bottom: 10px;
        background: rgba(255,255,255,.04);
        border: 1px solid rgba(255,255,255,.08);
        overflow: hidden;
      }
      .de-concierge-inner { padding: 18px 18px 18px; }
      .de-concierge-eyebrow {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
        color: rgba(232,131,74,.85); margin-bottom: 10px;
      }
      .de-concierge-head { margin-bottom: 6px; }
      .de-concierge-title {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 21px; font-weight: 700; color: rgba(255,255,255,.96); line-height: 1.15;
      }
      .de-concierge-body {
        font-family: 'Cormorant Garamond',serif; font-style: italic;
        font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.6); margin: 4px 0 0;
      }
      .de-concierge-cta {
        display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 13px; font-weight: 700; letter-spacing: .01em;
        color: #1a1410; background: #fff; border: none;
        border-radius: 999px; padding: 11px 18px; cursor: pointer;
        transition: transform .12s ease, background .18s ease;
        -webkit-tap-highlight-color: transparent;
      }
      .de-concierge-cta:active { transform: scale(.95); background: rgba(255,255,255,.85); }
      .de-concierge-cta--ghost {
        color: rgba(255,255,255,.92); background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.18);
      }
      .de-concierge-cta--ghost:active { background: rgba(255,255,255,.16); }
      .de-concierge--gap-shop { background: linear-gradient(135deg, rgba(100,149,237,.08), rgba(255,255,255,.03)); }
      .de-gap-items { display: flex; flex-direction: column; gap: 10px; margin-top: 12px; }
      .de-gap-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 10px 12px; }
      .de-gap-item-name { font-size: 13px; color: var(--white); font-weight: 500; }
      .de-gap-item-meta { font-size: 11px; color: var(--accent); margin-top: 2px; }
      .de-gap-item-why { font-size: 11px; color: var(--mid); margin-top: 2px; font-style: italic; }
      .de-gap-more { font-size: 11px; color: var(--mid); margin: 8px 0 0; }
      .de-concierge--weather { background: linear-gradient(135deg, rgba(74,158,127,.1), rgba(255,255,255,.03)); }
      .de-concierge--identity { background: linear-gradient(135deg, rgba(232,131,74,.1), rgba(255,255,255,.03)); }
      .de-identity-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
      .de-identity-chip {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 12px; font-weight: 600; letter-spacing: .01em; text-transform: capitalize;
        color: rgba(255,255,255,.88); background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 5px 12px;
      }
      .de-concierge--returns { background: linear-gradient(135deg, rgba(212,168,67,.1), rgba(255,255,255,.03)); }
      .de-concierge--returns-urgent {
        background: linear-gradient(135deg, rgba(196,82,82,.14), rgba(255,255,255,.03));
        border-color: rgba(196,82,82,.32);
      }
      .de-concierge--returns-urgent .de-concierge-eyebrow { color: rgba(220,120,120,.95); }
      .de-concierge-creator { display: flex; gap: 14px; align-items: center; }
      .de-concierge-creator-img {
        width: 62px; height: 62px; border-radius: 14px; object-fit: cover; flex: 0 0 auto;
        background: rgba(255,255,255,.06);
      }
      .de-concierge-creator-text { min-width: 0; }

      /* ── "Style me for ___" occasion chips ── */
      .de-occbar { padding: 18px 0 20px; border-bottom: 1px solid rgba(255,255,255,.06); }
      .de-occbar-label {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
        color: rgba(255,255,255,.35); padding: 0 24px; margin-bottom: 12px;
      }
      .de-occbar-chips {
        display: flex; gap: 8px; overflow-x: auto; padding: 0 24px;
        scrollbar-width: none; -webkit-overflow-scrolling: touch;
      }
      .de-occbar-chips::-webkit-scrollbar { display: none; }
      .de-occ-chip {
        flex: 0 0 auto;
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 13px; font-weight: 600; letter-spacing: .01em;
        color: rgba(255,255,255,.7); white-space: nowrap;
        background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px; padding: 9px 16px; cursor: pointer;
        transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease;
        -webkit-tap-highlight-color: transparent;
      }
      .de-occ-chip:active { transform: scale(.94); }
      .de-occ-chip--on {
        color: #1a1410; background: #e8834a; border-color: #e8834a; font-weight: 700;
      }
      /* ── End card — finite edition's satisfying close ── */
      .de-endcard {
        margin: 36px 16px 8px; padding: 48px 28px; text-align: center;
        border-radius: 22px;
        background: radial-gradient(120% 120% at 50% 0%, rgba(232,131,74,.12), rgba(0,0,0,0) 60%),
                    rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.08);
      }
      .de-endcard-mark { font-size: 22px; color: #e8834a; margin-bottom: 14px; }
      .de-endcard-title {
        font-family: 'Cormorant Garamond','Georgia',serif;
        font-size: 30px; font-weight: 700; color: rgba(255,255,255,.95); margin-bottom: 10px;
      }
      .de-endcard-sub {
        font-family: 'Cormorant Garamond',serif; font-style: italic;
        font-size: 16px; line-height: 1.5; color: rgba(255,255,255,.5);
        margin: 0 0 20px; max-width: 280px; margin-inline: auto;
      }
      .de-endcard-countdown {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 12px; font-weight: 600; letter-spacing: .03em;
        color: rgba(255,255,255,.4); margin-bottom: 24px;
      }
      .de-endcard-countdown span { color: rgba(232,131,74,.9); }
      .de-endcard-top {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 13px; font-weight: 700; letter-spacing: .02em;
        color: rgba(255,255,255,.9); background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.16); border-radius: 999px;
        padding: 11px 22px; cursor: pointer; transition: background .18s ease, transform .15s ease;
        -webkit-tap-highlight-color: transparent;
      }
      .de-endcard-top:active { transform: scale(.95); background: rgba(255,255,255,.14); }
      .de-footer {
        padding: 40px 20px 56px; text-align: center;
        border-top: 1px solid rgba(255,255,255,.07); margin-top: 32px;
      }
      .de-footer-logo {
        font-family: 'Cormorant Garamond',serif;
        font-size: 28px; font-weight: 700;
        color: rgba(255,255,255,.28); margin-bottom: 6px;
      }
      .de-footer-tagline {
        font-family: 'Cormorant Garamond',serif;
        font-style: italic; font-size: 14px;
        color: rgba(255,255,255,.18); margin-bottom: 8px;
      }
      .de-footer-issue {
        font-family: -apple-system,'Inter',sans-serif;
        font-size: 11px; font-weight: 400;
        color: rgba(255,255,255,.15);
      }

      /* ── Scroll-reveal animations — Apple-style scale + lift + fade ── */
      .de-reveal {
        opacity: 0;
        transform: translateY(28px) scale(.97);
        transition: opacity .55s cubic-bezier(.25,.46,.45,.94),
                    transform .55s cubic-bezier(.25,.46,.45,.94);
      }
      .de-revealed {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      /* ── Chrome auto-hide (scroll-driven) ── */
      #top-actions {
        transition: transform .38s cubic-bezier(.4,0,.2,1),
                    opacity .38s cubic-bezier(.4,0,.2,1);
      }
      #top-actions.de-chrome-up {
        transform: translateY(calc(-100% - var(--sat,44px) - 16px)) !important;
        opacity: 0;
        pointer-events: none;
      }
      .bnav {
        transition: transform .38s cubic-bezier(.4,0,.2,1) !important;
      }
      .bnav.de-chrome-down {
        transform: translateY(100%) !important;
      }

      /* ── Hero canvas bottom — parallax-driven by JS ── */
      .de-hero-canvas-bottom {
        will-change: transform, opacity;
        transition: none;
      }

      /* ── Heart-burst particles ── */
      .de-heart-particle {
        position: fixed; pointer-events: none; z-index: 9999;
        font-size: 13px; color: #e8834a;
        animation: de-heart-burst .65s ease forwards; transform-origin: center;
      }
      @keyframes de-heart-burst {
        0%   { transform: translate(0,0) rotate(0deg) scale(1); opacity: 1; }
        100% { transform: translate(var(--dx), var(--dy)) rotate(var(--rot)) scale(.2); opacity: 0; }
      }

      /* ══════════════════════════════════════════════════════════════════
         LIGHT THEME
         The magazine base, reading panels, text cards and the detail sheet
         flip to a warm cream palette with dark ink. Full-bleed IMAGE cards
         (.de-hero-canvas, .de-ec covers) intentionally stay dark: their white
         text sits over a generated photo + bottom gradient, exactly like the
         Explore hero — so we leave those overlays alone.
         ══════════════════════════════════════════════════════════════════ */
      [data-theme="light"] .de-magazine,
      [data-theme="light"] .de-hero-story-panel,
      [data-theme="light"] .de-stack-intro { background: #F7F5F0; }

      /* Ticker + masthead */
      [data-theme="light"] .de-ptr { color: rgba(0,0,0,.45); }
      [data-theme="light"] .de-ticker { border-bottom-color: rgba(0,0,0,.07); }
      [data-theme="light"] .de-ticker-inner { color: rgba(0,0,0,.32); }
      [data-theme="light"] .de-masthead { border-bottom-color: rgba(0,0,0,.08); }
      [data-theme="light"] .de-masthead-logo { color: #1A1814; }
      [data-theme="light"] .de-masthead-tagline { color: rgba(0,0,0,.5); }
      [data-theme="light"] .de-masthead-meta-row { color: rgba(0,0,0,.42); }
      [data-theme="light"] .de-masthead-dot { color: rgba(0,0,0,.24); }

      /* Theme band */
      [data-theme="light"] .de-theme-band { background: #EFECE4; border-bottom-color: rgba(0,0,0,.06); }
      [data-theme="light"] .de-theme-band-label { color: rgba(0,0,0,.5); }
      [data-theme="light"] .de-theme-band-tagline { color: rgba(0,0,0,.9); }
      [data-theme="light"] .de-theme-band-mood { color: rgba(0,0,0,.5); }

      /* Personal cover */
      [data-theme="light"] .de-pcover { border-bottom-color: rgba(0,0,0,.07); }
      [data-theme="light"] .de-pcover-title { color: rgba(0,0,0,.95); }
      [data-theme="light"] .de-pcover-context { color: rgba(0,0,0,.55); }
      [data-theme="light"] .de-pcover-streak { color: rgba(0,0,0,.82); }
      [data-theme="light"] .de-pcover-accent { color: #C25A1F; }
      [data-theme="light"] .de-pcover-eyebrow,
      [data-theme="light"] .de-concierge-eyebrow,
      [data-theme="light"] .de-hero-story-label,
      [data-theme="light"] .de-ec-why { color: #C25A1F; }
      [data-theme="light"] .de-pcover-twin { background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); }
      [data-theme="light"] .de-pcover-twin span { color: rgba(0,0,0,.72); }

      /* Hero reading panel (text below the cinematic cover) */
      [data-theme="light"] .de-hero-story-inner { border-bottom-color: rgba(0,0,0,.07); }
      [data-theme="light"] .de-hero-story-brand { color: rgba(0,0,0,.32); }
      [data-theme="light"] .de-hero-story-body { color: rgba(0,0,0,.7); }
      [data-theme="light"] .de-hero-tag { color: rgba(0,0,0,.55); background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.1); }
      [data-theme="light"] .de-hero-story-meta { color: rgba(0,0,0,.35); }
      [data-theme="light"] .de-hero-action-shop { color: rgba(0,0,0,.82); background: rgba(0,0,0,.06); }
      [data-theme="light"] .de-hero-action-icon { color: rgba(0,0,0,.6); background: rgba(0,0,0,.06); }

      /* Section headers + stack intro + dividers */
      [data-theme="light"] .de-section-label { color: rgba(0,0,0,.9); }
      [data-theme="light"] .de-section-sub { color: rgba(0,0,0,.4); }
      [data-theme="light"] .de-stack-intro-label { color: rgba(0,0,0,.9); }
      [data-theme="light"] .de-stack-intro-sub { color: rgba(0,0,0,.55); }
      [data-theme="light"] .de-seen-divider::before,
      [data-theme="light"] .de-seen-divider::after { background: rgba(0,0,0,.1); }
      [data-theme="light"] .de-seen-divider span { color: rgba(0,0,0,.3); }
      [data-theme="light"] .de-detail-pager { color: rgba(0,0,0,.4); }
      [data-theme="light"] .de-detail-pager-mid { color: rgba(0,0,0,.24); }

      /* Compact text cards (no editorial image) */
      [data-theme="light"] .de-ec--compact { background: #FFFFFF; border-color: rgba(0,0,0,.08); }
      [data-theme="light"] .de-ec--compact .de-ec-section-label { color: rgba(0,0,0,.45); }
      [data-theme="light"] .de-ec-compact-title { color: #1A1814; }
      [data-theme="light"] .de-ec-compact-story { color: rgba(0,0,0,.55); }
      [data-theme="light"] .de-ec-compact-thumb img { border-color: rgba(0,0,0,.08); background: #E5E2DB; }
      [data-theme="light"] .de-ec--compact .de-ec-shop { color: rgba(0,0,0,.8); background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.14); }

      /* Pull-quote interstitial */
      [data-theme="light"] .de-pullquote { background: #EFECE4; }
      [data-theme="light"] .de-pq-open-mark { color: rgba(0,0,0,.12); }
      [data-theme="light"] .de-pq-text { color: rgba(0,0,0,.82); }
      [data-theme="light"] .de-pq-author { color: rgba(0,0,0,.35); }

      /* Concierge modules */
      [data-theme="light"] .de-concierge-section-label { color: rgba(0,0,0,.9); }
      [data-theme="light"] .de-concierge-section-sub { color: rgba(0,0,0,.45); }
      [data-theme="light"] .de-concierge { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.08); }
      [data-theme="light"] .de-concierge-title { color: rgba(0,0,0,.95); }
      [data-theme="light"] .de-concierge-body { color: rgba(0,0,0,.6); }
      [data-theme="light"] .de-concierge-cta--ghost { color: rgba(0,0,0,.82); background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.15); }
      [data-theme="light"] .de-identity-chip { color: rgba(0,0,0,.82); background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.14); }
      [data-theme="light"] .de-gap-item { background: rgba(0,0,0,.03); border-color: rgba(0,0,0,.08); }
      [data-theme="light"] .de-concierge-creator-img { background: rgba(0,0,0,.05); }

      /* Occasion chips */
      [data-theme="light"] .de-occbar { border-bottom-color: rgba(0,0,0,.06); }
      [data-theme="light"] .de-occbar-label { color: rgba(0,0,0,.4); }
      [data-theme="light"] .de-occ-chip { color: rgba(0,0,0,.7); background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.12); }

      /* End card + footer */
      [data-theme="light"] .de-endcard {
        background: radial-gradient(120% 120% at 50% 0%, rgba(232,131,74,.14), rgba(0,0,0,0) 60%), rgba(0,0,0,.02);
        border-color: rgba(0,0,0,.08);
      }
      [data-theme="light"] .de-endcard-title { color: rgba(0,0,0,.95); }
      [data-theme="light"] .de-endcard-sub { color: rgba(0,0,0,.5); }
      [data-theme="light"] .de-endcard-countdown { color: rgba(0,0,0,.4); }
      [data-theme="light"] .de-endcard-top { color: rgba(0,0,0,.9); background: rgba(0,0,0,.05); border-color: rgba(0,0,0,.15); }
      [data-theme="light"] .de-footer { border-top-color: rgba(0,0,0,.07); }
      [data-theme="light"] .de-footer-logo { color: rgba(0,0,0,.3); }
      [data-theme="light"] .de-footer-tagline { color: rgba(0,0,0,.35); }
      [data-theme="light"] .de-footer-issue { color: rgba(0,0,0,.22); }

      /* Detail bottom-sheet */
      [data-theme="light"] .de-detail-panel { background: #F7F5F0; }
      [data-theme="light"] .de-detail-handle-bar { background: rgba(0,0,0,.2); }
      [data-theme="light"] .de-detail-img-wrap { background: #E5E2DB; }
      [data-theme="light"] .de-detail-brand { color: rgba(0,0,0,.42); }
      [data-theme="light"] .de-detail-title { color: #1A1814; }
      [data-theme="light"] .de-detail-story p { color: rgba(0,0,0,.65); }
      [data-theme="light"] .de-detail-tag { color: rgba(0,0,0,.5); background: rgba(0,0,0,.05); }
      [data-theme="light"] .de-detail-shop { color: rgba(0,0,0,.8); background: rgba(0,0,0,.06); }
      [data-theme="light"] .de-detail-save,
      [data-theme="light"] .de-detail-share { color: rgba(0,0,0,.6); background: rgba(0,0,0,.06); }
      [data-theme="light"] .de-shop-card { background: rgba(0,0,0,.04); border-color: rgba(0,0,0,.08); }
      [data-theme="light"] .de-shop-thumb { background: rgba(0,0,0,.06); }
      [data-theme="light"] .de-shop-brand { color: rgba(0,0,0,.5); }
      [data-theme="light"] .de-shop-name { color: #1A1814; }
      [data-theme="light"] .de-shop-price { color: rgba(0,0,0,.75); }
      [data-theme="light"] .de-shop-disclosure { color: rgba(0,0,0,.4); }

/* Style Twin signature on the edition cover. */
.de-pcover-twin{display:inline-flex;align-items:center;gap:9px;margin-top:14px;
  padding:6px 14px 6px 6px;border-radius:100px;background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);}
.de-pcover-twin img{width:30px;height:30px;border-radius:50%;object-fit:contain;
  background:#F5F2EC;flex-shrink:0;}
.de-pcover-twin span{font-size:11.5px;letter-spacing:.07em;text-transform:uppercase;
  font-weight:700;color:rgba(255,255,255,.72);}
