:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #151713;
  --muted: #6b778c;
  --line: #e1e6ee;
  --accent: #151713;
  --accent-strong: #111311;
  --accent-bright: #c9f31d;
  --accent-soft: #f3fad7;
  --danger: #9a2d2d;
}
* { box-sizing: border-box; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 14px/1.5 Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; }
.topbar { min-height: 68px; display: flex; align-items: center; justify-content: space-between; padding: 0 5vw; background: rgba(255, 255, 255, .94); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; backdrop-filter: blur(14px); }
.brand { color: var(--ink); font-size: 17px; font-weight: 750; letter-spacing: -.02em; }
nav { display: flex; align-items: center; gap: 24px; } nav a { color: var(--muted); font-weight: 600; }
nav form { margin: 0; } nav form button { padding: 0; border: 0; background: transparent; color: var(--muted); font: inherit; font-weight: 600; cursor: pointer; }
main { width: min(1600px, 94vw); margin: 0 auto; padding: 28px 0 64px; }
.page-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
h1 { margin: 2px 0 4px; font-size: 32px; letter-spacing: -.035em; } h2 { margin: 0; font-size: 17px; }
p { margin: 0; color: var(--muted); }.eyebrow { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.source-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-bottom: 24px; }
.source-card, .panel, .product-card { background: var(--surface); border: 1px solid var(--line); border-radius: 20px; }
.source-card { padding: 20px; }.source-card__head, .panel__head { display: flex; align-items: start; justify-content: space-between; gap: 16px; }
.source-card__tools { display: flex; align-items: center; gap: 8px; }
.source-menu { position: relative; }
.source-menu summary { width: 32px; height: 28px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); font-size: 14px; font-weight: 900; letter-spacing: 1px; cursor: pointer; list-style: none; }
.source-menu summary::-webkit-details-marker { display: none; }
.source-menu[open] summary { color: var(--ink); background: #f1f4f8; }
.source-menu__card { position: absolute; top: 36px; right: 0; z-index: 8; width: 178px; display: grid; overflow: hidden; padding: 6px; border: 1px solid var(--line); border-radius: 13px; background: var(--surface); box-shadow: 0 18px 45px rgba(15, 23, 42, .14); }
.source-menu__card a { padding: 9px 10px; border-radius: 8px; font-size: 12px; font-weight: 750; }
.source-menu__card a:hover { background: #f1f4f8; }
.credential-state { display: inline-flex; margin-top: 10px; padding: 5px 8px; border-radius: 999px; background: #fff1cc; color: #7a4b00; font-size: 11px; font-weight: 750; }
.credential-state--ok { color: #14704f; background: #e9f7f0; }
.scan-state { display: inline-flex; margin: 10px 0 0 6px; color: var(--muted); font-size: 11px; font-weight: 700; }
.scan-state--paused { color: var(--danger); }
.onboarding-summary { display: grid; gap: 7px; margin-top: 20px; padding: 14px; border: 1px dashed #cbd4df; border-radius: 12px; background: #f8fafc; }
.onboarding-summary > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.onboarding-summary > a { overflow: hidden; font-weight: 750; text-overflow: ellipsis; white-space: nowrap; }
.onboarding-summary > p { font-size: 12px; }
.metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 20px 0; }
.metrics div { padding: 12px; background: var(--bg); border-radius: 10px; }.metrics dt { color: var(--muted); font-size: 12px; }.metrics dd { margin: 3px 0 0; font-size: 22px; font-weight: 750; }
.badge { display: inline-flex; padding: 4px 8px; border-radius: 999px; font-size: 12px; font-weight: 700; }.badge--ok { color: #14704f; background: #e9f7f0; }.badge--muted { color: var(--muted); background: #f1f4f8; }.badge--danger { color: var(--danger); background: #f8e8e8; }.badge--warning { color: #7a4b00; background: #fff1cc; }
.small { margin-top: 12px; font-size: 12px; }.error { margin-top: 8px; color: var(--danger); font-size: 12px; }
.actions { display: flex; gap: 16px; margin-top: 18px; font-weight: 700; }
.pricing-summary { display: grid; gap: 8px; margin-top: 16px; padding: 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--bg); }
.pricing-summary div { display: flex; align-items: center; justify-content: space-between; gap: 12px; }.pricing-summary span { color: var(--muted); font-size: 11px; }.pricing-summary strong { font-size: 12px; text-align: right; }
.panel { overflow: hidden; }.panel__head { padding: 18px 20px; border-bottom: 1px solid var(--line); }.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; } th, td { padding: 13px 16px; border-bottom: 1px solid var(--line); text-align: left; white-space: nowrap; } th { color: var(--muted); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; } tbody tr:last-child td { border-bottom: 0; }
.filters { display: flex; gap: 8px; flex-wrap: wrap; }.filters select, .filters input, .filters button { height: 40px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); padding: 0 12px; color: var(--ink); }.filters input { min-width: 260px; }.filters button, .button { background: var(--accent-strong); color: white; border-color: var(--accent-strong); font-weight: 800; cursor: pointer; }
.product-hero { display: flex; align-items: flex-end; justify-content: space-between; gap: 28px; overflow: hidden; margin-bottom: 20px; padding: 28px; border: 1px solid var(--line); border-radius: 26px; background: linear-gradient(135deg, var(--surface) 0%, var(--surface) 62%, rgba(201, 243, 29, .13) 135%); box-shadow: 0 18px 60px rgba(15, 23, 42, .06); }
.product-hero__copy > p:last-child { max-width: 620px; margin-top: 4px; }
.product-hero__stats { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.product-hero__stats span { display: inline-flex; align-items: center; gap: 5px; padding: 7px 12px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, .82); color: var(--muted); font-size: 11px; font-weight: 700; white-space: nowrap; }
.product-hero__stats strong { color: var(--ink); }
.filter-panel { padding: 16px; margin-bottom: 16px; background: var(--surface); border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 12px 40px rgba(15, 23, 42, .04); }
.filters--products { display: grid; grid-template-columns: minmax(260px, 1.6fr) repeat(7, minmax(130px, 1fr)) auto; align-items: end; gap: 12px; }
.filter-field { display: grid; gap: 6px; min-width: 0; }.filter-field > span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.filter-field select, .filter-field input { width: 100%; min-width: 0; height: 44px; border-radius: 12px; background: #f1f4f8; border-color: transparent; outline: none; transition: box-shadow .16s ease, background .16s ease; }.filter-field select:focus, .filter-field input:focus { background: var(--surface); box-shadow: 0 0 0 3px rgba(201, 243, 29, .5); }
.filter-actions { display: flex; align-items: center; gap: 10px; }.filter-actions button { height: 44px; padding: 0 18px; border-radius: 12px; }.filter-actions a { min-height: 44px; display: inline-flex; align-items: center; color: var(--muted); font-weight: 700; white-space: nowrap; }
.results-bar { min-height: 32px; display: flex; align-items: center; justify-content: space-between; gap: 16px; margin: 0 2px 12px; }.results-bar strong { color: var(--ink); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.product-card { overflow: hidden; border-radius: 20px; transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.product-card:hover { transform: translateY(-2px); border-color: rgba(22, 32, 42, .24); box-shadow: 0 16px 40px rgba(15, 23, 42, .08); }
.product-card:focus-within { outline: 3px solid rgba(201, 243, 29, .58); outline-offset: 2px; }
.product-card__link { display: flex; flex-direction: column; height: 100%; color: inherit; }
.product-image { position: relative; aspect-ratio: 16 / 9; display: grid; place-items: center; overflow: hidden; background: #f2f3f5; color: var(--muted); }
.product-image img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; padding: 8px; object-fit: contain; background: #f2f3f5; mix-blend-mode: multiply; }
.product-image__empty { display: grid; place-items: center; gap: 8px; color: #98a2ad; font-size: 11px; font-weight: 700; }
.product-image__empty > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 999px; background: white; color: #c2c9d0; }
.product-image__empty svg { width: 21px; height: 21px; fill: currentColor; }
.product-status { position: absolute; top: 10px; right: 10px; z-index: 2; display: inline-flex; align-items: center; gap: 6px; padding: 6px 9px; border-radius: 999px; background: rgba(255, 255, 255, .92); box-shadow: 0 3px 10px rgba(15, 23, 42, .08); font-size: 10px; font-weight: 800; backdrop-filter: blur(8px); }
.product-status i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.product-status--live { color: #14704f; }.product-status--missing { color: var(--danger); }.product-status--ready { color: var(--ink); }
.product-body { display: flex; flex: 1; flex-direction: column; padding: 15px; }
.product-category { overflow: hidden; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.product-card h2 { min-height: 48px; display: -webkit-box; overflow: hidden; margin-top: 5px; font-size: 16px; font-weight: 800; letter-spacing: -.02em; line-height: 1.45; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-source { overflow: hidden; margin-top: 5px; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.product-insights { display: flex; flex-wrap: wrap; gap: 9px 16px; margin-top: 16px; color: var(--muted); }
.product-insights > span { min-width: 0; display: inline-flex; align-items: center; gap: 6px; overflow: hidden; font-size: 11px; font-weight: 600; text-overflow: ellipsis; white-space: nowrap; }
.product-insights svg { width: 14px; height: 14px; flex: 0 0 auto; fill: currentColor; }
.product-insights .is-positive { color: #14704f; }.product-insights .is-negative { color: var(--danger); }
.product-card__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.product-card__footer > div > span { color: var(--muted); font-size: 10px; }
.product-card__footer > strong { padding-bottom: 2px; color: var(--ink); font-size: 12px; white-space: nowrap; }
.price { margin: 1px 0 0; color: var(--ink); font-size: 17px; font-weight: 800; letter-spacing: -.02em; }
.calculated-cost { display: block; margin-top: 2px; color: #14704f !important; font-size: 10px !important; font-weight: 700; }
.calculated-cost.is-blocked { color: var(--danger) !important; }
.pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; }.pagination a { min-width: 40px; height: 40px; display: inline-grid; place-items: center; padding: 0 12px; background: var(--surface); border: 1px solid var(--line); border-radius: 12px; font-weight: 800; }.pagination a:hover, .pagination a.is-current { color: var(--accent-bright); background: var(--accent-strong); border-color: var(--accent-strong); }
.detail-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 24px; }.back-link { display: inline-block; margin-bottom: 22px; color: var(--muted); font-weight: 700; }.detail-subtitle { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); }.button { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; padding: 0 16px; border: 1px solid var(--accent-strong); border-radius: 999px; }.button--secondary { color: var(--ink); background: var(--surface); }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(300px, .8fr); gap: 18px; margin-bottom: 18px; }.product-visual { overflow: hidden; }.product-visual__main { min-height: 520px; display: grid; place-items: center; padding: 24px; background: #f1f4f8; color: var(--muted); }.product-visual__main img { width: 100%; height: 500px; object-fit: contain; mix-blend-mode: multiply; }.product-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(88px, 1fr)); gap: 8px; padding: 12px; border-top: 1px solid var(--line); }.product-gallery a { height: 86px; display: grid; place-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 12px; background: white; }.product-gallery img { width: 100%; height: 100%; object-fit: contain; }
.detail-summary { align-self: start; padding: 24px; }.detail-price { display: grid; gap: 5px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }.detail-price span { color: var(--muted); font-size: 12px; }.detail-price strong { font-size: 28px; letter-spacing: -.03em; }.detail-facts { display: grid; gap: 0; margin: 12px 0 0; }.detail-facts div { display: grid; grid-template-columns: minmax(110px, .8fr) minmax(0, 1.2fr); gap: 14px; padding: 11px 0; border-bottom: 1px solid var(--line); }.detail-facts dt { color: var(--muted); }.detail-facts dd { margin: 0; text-align: right; font-weight: 650; overflow-wrap: anywhere; }.readonly-note { margin-top: 18px; padding: 12px; color: var(--muted); background: var(--bg); border-radius: 9px; font-size: 12px; }
.detail-price small { color: var(--muted); }.detail-price small b { color: var(--accent); }
.notice { margin-bottom: 18px; padding: 12px 16px; border-radius: 10px; font-weight: 650; }.notice--ok { color: var(--accent); background: var(--accent-soft); }
.status-stack { display: grid; justify-items: end; gap: 7px; text-align: right; }.status-stack small { color: var(--muted); }
.settings-layout { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr); gap: 18px; }.settings-form { overflow: hidden; }.settings-fields { display: grid; gap: 18px; padding: 22px; }.settings-fields label { display: grid; gap: 7px; }.settings-fields label > span { font-weight: 750; }.settings-fields select, .settings-fields input { width: 100%; min-height: 44px; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: var(--surface); color: var(--ink); font: inherit; }.settings-fields small { color: var(--muted); }.settings-actions { display: flex; align-items: center; gap: 18px; padding: 0 22px 22px; }.settings-actions button { min-height: 42px; padding: 0 18px; border: 0; border-radius: 9px; background: var(--accent); color: white; font: inherit; font-weight: 750; cursor: pointer; }.settings-actions a { font-weight: 700; }.calculation-note { align-self: start; padding: 22px; }.calculation-note h2 { margin-top: 4px; }.calculation-note ol { padding-left: 20px; color: var(--ink); }.calculation-note > p:last-child { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.source-website { min-height: 44px; display: flex; align-items: center; padding: 0 12px; border: 1px solid var(--line); border-radius: 10px; background: #f7f8fa; font-weight: 700; overflow-wrap: anywhere; }
.scan-action-row { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 22px 22px; border-top: 1px solid var(--line); padding-top: 18px; }
.scan-action-row form { margin: 0; }
.scan-action-row button { cursor: pointer; font: inherit; font-weight: 750; }
.settings-actions .button--secondary { border: 1px solid var(--accent); background: var(--surface); color: var(--accent); }
.detail-section .settings-fields { grid-template-columns: repeat(2, minmax(0, 1fr)); }.detail-section .field-wide { grid-column: 1 / -1; }.confirmation-check { display: flex; align-items: flex-start; gap: 9px; margin: 0 22px 18px; color: var(--muted); font-size: 12px; }.confirmation-check input { margin-top: 2px; }
.pricing-preview { margin: 18px 0; }.preview-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding: 20px; }.preview-metrics div { display: grid; gap: 4px; padding: 14px; border-radius: 10px; background: var(--bg); }.preview-metrics span { color: var(--muted); font-size: 11px; }.preview-metrics strong { font-size: 24px; }.blocker-list { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }.pricing-preview > .blocker-list { padding: 0 20px; }.calculation-example { margin: 20px; padding: 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg); }.calculation-example h3 { margin: 4px 0 8px; }.calculation-example ol { margin-bottom: 0; padding-left: 20px; }.confirmation-actions { display: flex; flex-wrap: wrap; gap: 10px; padding: 0 20px 20px; }.confirmation-actions form { margin: 0; }.confirmation-actions button { min-height: 42px; padding: 0 16px; border: 1px solid var(--accent); border-radius: 9px; background: var(--accent); color: white; font: inherit; font-weight: 750; cursor: pointer; }.pricing-preview > .readonly-note { margin: 0 20px 20px; }
.upload-choice-grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.65fr); gap: 18px; margin-bottom: 22px; align-items: start; }.upload-panel { overflow: hidden; }.catalog-upload-form { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; padding: 22px; }.catalog-upload-form--compact { grid-template-columns: 1fr; }.catalog-upload-form--compact .settings-field--wide { grid-column: auto; }.settings-field { display: grid; gap: 6px; }.settings-field--wide { grid-column: span 2; }.settings-field span, .catalog-reprice-form span { color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }.settings-field input, .settings-field select, .catalog-reprice-form input, .catalog-reprice-form select { width: 100%; min-height: 42px; padding: 0 10px; border: 1px solid var(--line); border-radius: 9px; background: var(--surface); color: var(--ink); font: inherit; }.catalog-upload-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 14px; }.catalog-upload-actions button, .catalog-reprice-form button { min-height: 42px; padding: 0 16px; border: 0; border-radius: 9px; background: var(--accent); color: white; font: inherit; font-weight: 750; cursor: pointer; }.catalog-upload-actions button:disabled { opacity: .6; cursor: wait; }.catalog-upload-actions p { color: var(--danger); }.upload-help { padding: 0 22px 22px; font-size: 12px; }.catalog-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }.catalog-card { padding: 20px; }.catalog-card h2 { margin-top: 3px; }.catalog-settings { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }.catalog-settings summary { color: var(--accent); font-weight: 700; cursor: pointer; }.catalog-reprice-form { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 14px; }.catalog-reprice-form label { display: grid; gap: 5px; }.catalog-reprice-form button { grid-column: 1 / -1; }.pdf-metrics { grid-template-columns: repeat(4, 1fr); margin-bottom: 18px; padding: 18px; }.pdf-preview-table { margin-bottom: 18px; }.pdf-preview-table td { max-width: 280px; overflow: hidden; text-overflow: ellipsis; }.pdf-confirm-form { margin-top: 18px; }.settings-fields--columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.detail-sections { display: grid; gap: 18px; }.detail-section { overflow: hidden; }.detail-content { padding: 20px; }.detail-facts--wide { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 28px; margin-top: 0; }.description-block { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }.description-block h3 { margin: 0 0 8px; font-size: 14px; }.description-block p { white-space: pre-line; }.value-cell { max-width: 260px; overflow: hidden; text-overflow: ellipsis; }
.empty, .empty-state { padding: 36px; text-align: center; color: var(--muted); }.empty-state { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; grid-column: 1 / -1; }
.review-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }.review-card { display: flex; flex-direction: column; }.review-card__body { display: grid; gap: 14px; padding: 20px; }.review-value { display: flex; align-items: center; justify-content: space-between; gap: 18px; }.review-value span { color: var(--muted); }.review-value strong { font-size: 22px; }.review-meta, .review-proposal { display: flex; flex-wrap: wrap; gap: 8px 16px; }.review-meta span { color: var(--muted); font-size: 12px; }.review-proposal span { padding: 6px 9px; border-radius: 8px; background: var(--accent-soft); color: var(--ink); font-size: 11px; }.review-evidence { padding: 12px; border-radius: 9px; background: #f7f8fa; overflow-wrap: anywhere; }.review-ai-note { margin: -4px 0 0; padding: 11px 12px; border: 1px solid #d9e3ff; border-radius: 9px; background: #f4f7ff; color: #30446f; font-size: 12px; }.review-actions { display: flex; align-items: center; gap: 9px; margin-top: auto; padding: 0 20px 20px; }.review-actions form { margin: 0; }.review-actions button { min-height: 38px; padding: 0 14px; border: 1px solid var(--accent); border-radius: 9px; background: var(--accent); color: white; font: inherit; font-weight: 750; cursor: pointer; }.review-actions .button--reject { border-color: #ead0d0; background: white; color: var(--danger); }.review-actions a { margin-left: auto; font-weight: 750; }
.learning-panel { margin-top: 22px; }
@media (max-width: 1180px) { .filters--products { grid-template-columns: repeat(3, minmax(160px, 1fr)); }.filter-field--search { grid-column: span 2; }.product-grid, .catalog-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.detail-layout { grid-template-columns: minmax(0, 1.35fr) minmax(280px, .8fr); }.upload-choice-grid { grid-template-columns: 1fr; }.catalog-upload-form { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 820px) { .product-grid, .review-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }.product-hero { align-items: flex-start; flex-direction: column; padding: 22px; }.product-hero__stats { justify-content: flex-start; }.settings-layout { grid-template-columns: 1fr; } }
@media (max-width: 760px) { .topbar { padding: 16px 4vw; align-items: flex-start; gap: 14px; }.topbar, nav { flex-direction: column; } nav { width: 100%; flex-direction: row; gap: 14px; overflow-x: auto; }.page-heading, .detail-heading { align-items: stretch; flex-direction: column; }.status-stack { justify-items: start; text-align: left; }.filters input { min-width: 0; flex: 1; }.filters--products, .catalog-upload-form, .preview-metrics, .settings-fields--columns, .detail-section .settings-fields { grid-template-columns: 1fr; }.detail-section .field-wide { grid-column: auto; }.settings-field--wide { grid-column: auto; }.filter-field--search { grid-column: auto; }.filter-actions { justify-content: space-between; }.detail-layout, .catalog-grid, .review-grid { grid-template-columns: 1fr; }.product-visual__main { min-height: 320px; }.product-visual__main img { height: 300px; }.detail-facts--wide { grid-template-columns: 1fr; } main { width: 92vw; padding-top: 24px; } }
@media (max-width: 520px) { .product-grid { gap: 10px; }.product-body { padding: 12px; }.product-card h2 { min-height: 42px; font-size: 14px; line-height: 1.45; }.product-source { font-size: 11px; }.product-insights { display: grid; gap: 7px; margin-top: 12px; }.product-card__footer { align-items: flex-start; flex-direction: column; gap: 5px; padding-top: 11px; }.product-card__footer > strong { display: none; }.price { font-size: 15px; }.product-status { top: 7px; right: 7px; padding: 5px 7px; }.product-hero { border-radius: 22px; }.product-hero__stats { width: 100%; }.product-hero__stats span { flex: 1; justify-content: center; } }

.login-page { min-height: 100vh; background: radial-gradient(circle at top right, rgba(201, 243, 29, .2), transparent 34%), var(--bg); }
.login-shell { min-height: 100vh; display: grid; place-items: center; width: min(460px, 92vw); padding: 32px 0; }
.login-card { width: 100%; padding: 34px; border: 1px solid var(--line); border-radius: 26px; background: var(--surface); box-shadow: 0 24px 70px rgba(15, 23, 42, .1); }
.login-card h1 { margin-top: 6px; }
.login-card > p:not(.eyebrow):not(.login-note) { margin-top: 8px; line-height: 1.6; }
.login-form { display: grid; gap: 16px; margin-top: 26px; }
.login-form label { display: grid; gap: 7px; }
.login-form label span { color: var(--muted); font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.login-form input { width: 100%; min-height: 48px; padding: 0 13px; border: 1px solid var(--line); border-radius: 12px; background: #f7f8fa; color: var(--ink); font: inherit; outline: none; }
.login-form input:focus { border-color: var(--accent-strong); background: white; box-shadow: 0 0 0 3px rgba(201, 243, 29, .45); }
.login-form button { min-height: 48px; border: 0; border-radius: 12px; background: var(--accent-strong); color: white; font: inherit; font-weight: 800; cursor: pointer; }
.login-error { margin-top: 18px; padding: 11px 13px; border-radius: 10px; background: #f8e8e8; color: var(--danger); font-size: 13px; font-weight: 700; }
.login-note { margin-top: 20px; color: var(--muted); font-size: 11px; text-align: center; }
