/* Page-level composition. Shared tokens and components remain in their files. */
.hero::after {
    content: "";
    position: absolute;
    inset: auto 12% 10% auto;
    width: 14rem;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-bright));
    opacity: .45;
}

.hero { position: relative; }
.hero-grid > * { position: relative; z-index: 1; }

.product-visual {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.product-visual::after {
    content: "";
    position: absolute;
    inset: 18% 22%;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.42);
    border-radius: 2px;
    transform: rotate(-8deg);
}

.product-visual img { width: 100%; height: 100%; object-fit: contain; }

.sidebar-logout { margin-top: .2rem; }
.sidebar-logout button {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .7rem .75rem;
    border-radius: var(--r-sm);
    color: var(--ink-soft);
    font-size: var(--fs-sm);
    text-align: left;
}
.sidebar-logout button:hover { background: var(--danger-tint); color: var(--danger); }
.sidebar-logout button:focus-visible { outline: none; box-shadow: var(--ring); }

.btn.is-loading { opacity: 0.7; pointer-events: none; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; }

.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.quick-actions .btn { min-width: 10rem; }

.empty-state {
    text-align: center;
    padding: 2.5rem 1.25rem;
    color: var(--muted);
}
.empty-state h3 { color: var(--ink); }

.pager { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1.25rem; }
.pager__btn {
    min-width: 2.25rem;
    height: 2.25rem;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--r-sm);
    color: var(--ink-soft);
    text-decoration: none;
}
.pager__btn.is-active { background: var(--gold-tint); color: var(--gold-strong); border-color: var(--gold-bright); }

.progress {
    height: 6px;
    background: var(--surface-3);
    border-radius: var(--r-pill);
    overflow: hidden;
    margin-top: 0.4rem;
}
.progress > span {
    display: block;
    height: 100%;
    background: var(--gold);
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    font-size: var(--fs-xs);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}
.wizard-steps li.is-active { color: var(--gold-strong); font-weight: 650; }

.pickup-pass {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    align-items: start;
    padding: 1.25rem;
    background: #fff;
    color: #16171c;
    border-radius: var(--r-md);
}
.pickup-pass p { color: #42444c; }

.article-body { font-size: 1.05rem; line-height: 1.8; color: var(--ink-soft); }

.article-hero {
    aspect-ratio: 21 / 9;
    border-radius: var(--r-lg);
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(160deg, var(--surface-2), var(--gold-tint));
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 560px) {
    .article-hero { aspect-ratio: 16 / 9; }
}

